28 #ifndef CASA_LECANONICALCONVERSION_H
29 #define CASA_LECANONICALCONVERSION_H
32 #include <casacore/casa/aips.h>
33 #include <casacore/casa/OS/Conversion.h>
42 #define SIZE_LECAN_CHAR 1
43 #define SIZE_LECAN_UCHAR 1
44 #define SIZE_LECAN_SHORT 2
45 #define SIZE_LECAN_USHORT 2
46 #define SIZE_LECAN_INT 4
47 #define SIZE_LECAN_UINT 4
48 #define SIZE_LECAN_INT64 8
49 #define SIZE_LECAN_UINT64 8
50 #define SIZE_LECAN_FLOAT 4
51 #define SIZE_LECAN_DOUBLE 8
66 #define CONVERT_LECAN_CHAR 0
67 #define CONVERT_LECAN_UCHAR 0
69 #if !defined(AIPS_LITTLE_ENDIAN)
70 # define CONVERT_LECAN_SHORT 1
71 # define CONVERT_LECAN_USHORT 1
72 # define CONVERT_LECAN_INT 1
73 # define CONVERT_LECAN_UINT 1
74 # define CONVERT_LECAN_INT64 1
75 # define CONVERT_LECAN_UINT64 1
76 # define CONVERT_LECAN_FLOAT 1
77 # define CONVERT_LECAN_DOUBLE 1
83 # define CONVERT_LECAN_SHORT 0
84 # define CONVERT_LECAN_USHORT 0
85 # define CONVERT_LECAN_INT 0
86 # define CONVERT_LECAN_UINT 0
87 # define CONVERT_LECAN_INT64 0
88 # define CONVERT_LECAN_UINT64 0
89 # define CONVERT_LECAN_FLOAT 0
90 # define CONVERT_LECAN_DOUBLE 0
166 static size_t toLocal (
char& to,
const void* from);
167 static size_t toLocal (
unsigned char& to,
const void* from);
168 static size_t toLocal (
short& to,
const void* from);
169 static size_t toLocal (
unsigned short& to,
const void* from);
170 static size_t toLocal (
int& to,
const void* from);
171 static size_t toLocal (
unsigned int& to,
const void* from);
174 static size_t toLocal (
float& to,
const void* from);
175 static size_t toLocal (
double& to,
const void* from);
181 static size_t fromLocal (
void* to,
const char& from);
182 static size_t fromLocal (
void* to,
const unsigned char& from);
183 static size_t fromLocal (
void* to,
const short& from);
184 static size_t fromLocal (
void* to,
const unsigned short& from);
185 static size_t fromLocal (
void* to,
const int& from);
186 static size_t fromLocal (
void* to,
const unsigned int& from);
189 static size_t fromLocal (
void* to,
const float& from);
190 static size_t fromLocal (
void* to,
const double& from);
196 static size_t toLocal (
char* to,
const void* from,
198 static size_t toLocal (
unsigned char* to,
const void* from,
200 static size_t toLocal (
short* to,
const void* from,
202 static size_t toLocal (
unsigned short* to,
const void* from,
204 static size_t toLocal (
int* to,
const void* from,
206 static size_t toLocal (
unsigned int* to,
const void* from,
212 static size_t toLocal (
float* to,
const void* from,
214 static size_t toLocal (
double* to,
const void* from,
221 static size_t fromLocal (
void* to,
const char* from,
223 static size_t fromLocal (
void* to,
const unsigned char* from,
225 static size_t fromLocal (
void* to,
const short* from,
227 static size_t fromLocal (
void* to,
const unsigned short* from,
229 static size_t fromLocal (
void* to,
const int* from,
231 static size_t fromLocal (
void* to,
const unsigned int* from,
237 static size_t fromLocal (
void* to,
const float* from,
239 static size_t fromLocal (
void* to,
const double* from,
417 static void reverse2 (
void* to,
const void* from);
420 static void reverse4 (
void* to,
const void* from);
423 static void reverse8 (
void* to,
const void* from);
426 static void move2 (
void* to,
const void* from);
429 static void move4 (
void* to,
const void* from);
432 static void move8 (
void* to,
const void* from);
443 unsigned short x, xsw;
445 xsw = ((x & 0xffu) << 8u) | (x >> 8u);
453 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)
454 xsw = __builtin_bswap32(x);
456 xsw = ((x & 0xffu) << 24u) | ((x & 0xff00u) << 8u) |
457 ((x & 0xff0000u) >> 8u) | (x >> 24u);
466 #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)
467 xsw = __builtin_bswap64(x);
469 xsw = ((x & 0xffULL) << 56ULL) |
470 ((x & 0xff00ULL) << 40ULL) |
471 ((x & 0xff0000ULL) << 24ULL) |
472 ((x & 0xff000000ULL) << 8ULL) |
473 ((x & 0xff00000000ULL) >> 8ULL) |
474 ((x & 0xff0000000000ULL) >> 24ULL) |
475 ((x & 0xff000000000000ULL) >> 40ULL) |
494 if (
sizeof(to) < 8) {
495 memmove(to, from, 8);
514 to = *(
unsigned char*)from;
521 if (
sizeof(
short) != 2) {
522 if (((
signed char*)from)[0] < 0) {
528 #if !defined(AIPS_LITTLE_ENDIAN)
531 move2 (((
char*)&to)+
sizeof(
short)-2, from);
539 if (
sizeof(
unsigned short) != 2) {
542 #if !defined(AIPS_LITTLE_ENDIAN)
545 move2 (((
char*)&to)+
sizeof(
unsigned short)-2, from);
553 if (
sizeof(
int) != 4) {
554 if (((
signed char*)from)[0] < 0) {
560 #if !defined(AIPS_LITTLE_ENDIAN)
563 move4 (((
char*)&to)+
sizeof(
int)-4, from);
571 if (
sizeof(
unsigned int) != 4) {
574 #if !defined(AIPS_LITTLE_ENDIAN)
577 move4 (((
char*)&to)+
sizeof(
unsigned int)-4, from);
585 if (
sizeof(
Int64) != 8) {
586 if (((
signed char*)from)[0] < 0) {
592 #if !defined(AIPS_LITTLE_ENDIAN)
603 if (
sizeof(
uInt64) != 8) {
606 #if !defined(AIPS_LITTLE_ENDIAN)
617 #if !defined(AIPS_LITTLE_ENDIAN)
618 reverse4 (((
char*)&to)+
sizeof(
float)-4, from);
628 #if !defined(AIPS_LITTLE_ENDIAN)
629 reverse8 (((
char*)&to)+
sizeof(
double)-8, from);
644 const unsigned char& from)
646 *(
unsigned char*)to = from;
653 #if !defined(AIPS_LITTLE_ENDIAN)
656 move2 (to, ((
char*)&from)+
sizeof(
short)-2);
662 const unsigned short& from)
664 #if !defined(AIPS_LITTLE_ENDIAN)
667 move2 (to, ((
char*)&from)+
sizeof(
unsigned short)-2);
675 #if !defined(AIPS_LITTLE_ENDIAN)
678 move4 (to, ((
char*)&from)+
sizeof(
int)-4);
684 const unsigned int& from)
686 #if !defined(AIPS_LITTLE_ENDIAN)
689 move4 (to, ((
char*)&from)+
sizeof(
unsigned int)-4);
697 #if !defined(AIPS_LITTLE_ENDIAN)
708 #if !defined(AIPS_LITTLE_ENDIAN)
719 #if !defined(AIPS_LITTLE_ENDIAN)
730 #if !defined(AIPS_LITTLE_ENDIAN)
807 const unsigned char* from,
819 const unsigned short* from,
831 const unsigned int* from,
868 (
const unsigned char*)
878 (
const unsigned short*)
888 (
const unsigned int*)
919 (
const unsigned char*)
929 (
const unsigned short*)
939 (
const unsigned int*)
#define SIZE_LECAN_UINT64
#define SIZE_LECAN_DOUBLE
#define SIZE_LECAN_CHAR
Define the little endian canonical sizes of the built-in data types.
#define SIZE_LECAN_USHORT
size_t ValueFunction(void *to, const void *from, size_t nvalues)
Define the signature of a function converting nvalues values from internal to external format or vice...
void * ByteFunction(void *to, const void *from, size_t nbytes)
Define the signature of a function converting from one format to another providing the number of byte...
static void reverse2(void *to, const void *from)
Reverse 2 bytes.
static Conversion::ByteFunction * getByteFromLocal(const unsigned short *)
static void * byteToLocalInt(void *to, const void *from, size_t nrbytes)
static void * byteToLocalDouble(void *to, const void *from, size_t nrbytes)
static Conversion::ByteFunction * getByteToLocal(const unsigned short *)
static void * byteFromLocalUShort(void *to, const void *from, size_t nrbytes)
static size_t toLocalDouble(void *to, const void *from, size_t nr)
static size_t fromLocalUInt(void *to, const void *from, size_t nr)
static size_t toLocalChar(void *to, const void *from, size_t nr)
Convert nr values from canonical format to local format.
static void move2(void *to, const void *from)
Move 2 bytes.
static Conversion::ByteFunction * getByteToLocal(const float *)
static Conversion::ByteFunction * getByteToLocal(const double *)
static void * byteToLocalUInt64(void *to, const void *from, size_t nrbytes)
LECanonicalConversion()
This class should not be constructed (so declare the constructor private).
static Conversion::ByteFunction * getByteToLocal(const short *)
static Conversion::ByteFunction * getByteToLocal(const Int64 *)
static size_t fromLocalChar(void *to, const void *from, size_t nr)
Convert nr values from local format to canonical format.
static void move8(void *to, const void *from)
Move 8 bytes.
static void reverse8(void *to, const void *from)
Reverse 8 bytes.
static void * byteToLocalShort(void *to, const void *from, size_t nrbytes)
static Conversion::ByteFunction * getByteFromLocal(const Int64 *)
static void * byteFromLocalInt64(void *to, const void *from, size_t nrbytes)
static size_t fromLocalShort(void *to, const void *from, size_t nr)
static size_t toLocalInt(void *to, const void *from, size_t nr)
static size_t fromLocalDouble(void *to, const void *from, size_t nr)
static size_t fromLocalUChar(void *to, const void *from, size_t nr)
static size_t toLocalFloat(void *to, const void *from, size_t nr)
static size_t toLocalInt64(void *to, const void *from, size_t nr)
static size_t fromLocalInt64(void *to, const void *from, size_t nr)
static Conversion::ByteFunction * getByteFromLocal(const int *)
static size_t toLocalUShort(void *to, const void *from, size_t nr)
static size_t fromLocalInt(void *to, const void *from, size_t nr)
static void * byteFromLocalUInt64(void *to, const void *from, size_t nrbytes)
static Conversion::ByteFunction * getByteToLocal(const unsigned char *)
static void * byteFromLocalDouble(void *to, const void *from, size_t nrbytes)
static size_t toLocal(char &to, const void *from)
Convert one value from canonical format to local format.
static void * byteFromLocalChar(void *to, const void *from, size_t nrbytes)
Convert values from local format to canonical format.
static void * byteToLocalUInt(void *to, const void *from, size_t nrbytes)
static void * byteToLocalUShort(void *to, const void *from, size_t nrbytes)
static unsigned int canonicalSize(const char *)
Return the canonical length for the various data types.
static void * byteToLocalInt64(void *to, const void *from, size_t nrbytes)
static Conversion::ByteFunction * getByteToLocal(const int *)
static void move4(void *to, const void *from)
Move 4 bytes.
static void * byteToLocalChar(void *to, const void *from, size_t nrbytes)
Convert values from canonical format to local format.
static size_t toLocalShort(void *to, const void *from, size_t nr)
static Conversion::ByteFunction * getByteFromLocal(const char *)
static void * byteToLocalUChar(void *to, const void *from, size_t nrbytes)
static void reverse4(void *to, const void *from)
Reverse 4 bytes.
static Conversion::ValueFunction * getFromLocal(const char *)
static void * byteFromLocalUChar(void *to, const void *from, size_t nrbytes)
static size_t fromLocal(void *to, const char &from)
Convert one value from local format to canonical format.
static void * byteFromLocalFloat(void *to, const void *from, size_t nrbytes)
static Conversion::ByteFunction * getByteToLocal(const char *)
Get the byte conversion function for the given type.
static size_t toLocalUInt64(void *to, const void *from, size_t nr)
static size_t fromLocalUInt64(void *to, const void *from, size_t nr)
static size_t fromLocalUShort(void *to, const void *from, size_t nr)
static size_t toLocalUInt(void *to, const void *from, size_t nr)
static Conversion::ByteFunction * getByteFromLocal(const float *)
static Conversion::ValueFunction * getToLocal(const char *)
Get the value conversion function for the given type.
static void * byteFromLocalUInt(void *to, const void *from, size_t nrbytes)
static Conversion::ByteFunction * getByteFromLocal(const double *)
static Conversion::ByteFunction * getByteFromLocal(const short *)
static Conversion::ByteFunction * getByteFromLocal(const uInt64 *)
static Conversion::ByteFunction * getByteToLocal(const unsigned int *)
static void * byteToLocalFloat(void *to, const void *from, size_t nrbytes)
static Conversion::ByteFunction * getByteFromLocal(const unsigned char *)
static Conversion::ByteFunction * getByteFromLocal(const unsigned int *)
static Conversion::ByteFunction * getByteToLocal(const uInt64 *)
static void * byteFromLocalInt(void *to, const void *from, size_t nrbytes)
static size_t toLocalUChar(void *to, const void *from, size_t nr)
static void * byteFromLocalShort(void *to, const void *from, size_t nrbytes)
static size_t fromLocalFloat(void *to, const void *from, size_t nr)
this file contains all the compiler specific defines
long long Int64
Define the extra non-standard types used by Casacore (like proposed uSize, Size)
unsigned long long uInt64