mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-12-03 08:01:25 +08:00
6934aa2e8b
re: https://github.com/Unidata/netcdf-c/issues/1373 (partial) * Mark some global constants be const to indicate to make them easier to track. * Hide direct access to the ncrc_globalstate behind a function call. * Convert dispatch tables to constants (except the user defined ones) This has some consequences in terms of function arguments needing to be marked as const also. * Remove some no longer needed global fields * Aggregate all the globals in nclog.c * Uniformly replace nc_sizevector{0,1} with NC_coord_{zero,one} * Uniformly replace nc_ptrdffvector1 with NC_stride_one * Remove some obsolete code
58 lines
1.7 KiB
C
58 lines
1.7 KiB
C
/*********************************************************************
|
|
* Copyright 2018, UCAR/Unidata
|
|
* See netcdf/COPYRIGHT file for copying and redistribution conditions.
|
|
*********************************************************************/
|
|
|
|
#ifndef NCOFFSETS_H
|
|
#define NCOFFSETS_H 1
|
|
|
|
/* Define indices for every primitive C type */
|
|
/* NAT => NOT-A-TYPE*/
|
|
#define NC_NATINDEX 0
|
|
#define NC_CHARINDEX 1
|
|
#define NC_UCHARINDEX 2
|
|
#define NC_SHORTINDEX 3
|
|
#define NC_USHORTINDEX 4
|
|
#define NC_INTINDEX 5
|
|
#define NC_UINTINDEX 6
|
|
#define NC_LONGINDEX 7
|
|
#define NC_ULONGINDEX 8
|
|
#define NC_LONGLONGINDEX 9
|
|
#define NC_ULONGLONGINDEX 10
|
|
#define NC_FLOATINDEX 11
|
|
#define NC_DOUBLEINDEX 12
|
|
#define NC_PTRINDEX 13
|
|
#define NC_NCVLENINDEX 14
|
|
|
|
#define NC_NCTYPES 15
|
|
|
|
typedef struct NCalignment {
|
|
char* type_name;
|
|
size_t alignment;
|
|
} NCalignment;
|
|
|
|
typedef NCalignment NCtypealignvec;
|
|
|
|
/* Capture in struct and in a vector*/
|
|
typedef struct NCtypealignset {
|
|
NCalignment charalign; /* char*/
|
|
NCalignment ucharalign; /* unsigned char*/
|
|
NCalignment shortalign; /* short*/
|
|
NCalignment ushortalign; /* unsigned short*/
|
|
NCalignment intalign; /* int*/
|
|
NCalignment uintalign; /* unsigned int*/
|
|
NCalignment longalign; /* long*/
|
|
NCalignment ulongalign; /* unsigned long*/
|
|
NCalignment longlongalign; /* long long*/
|
|
NCalignment ulonglongalign; /* unsigned long long*/
|
|
NCalignment floatalign; /* float*/
|
|
NCalignment doublealign; /* double*/
|
|
NCalignment ptralign; /* void**/
|
|
NCalignment ncvlenalign; /* nc_vlen_t*/
|
|
} NCtypealignset;
|
|
|
|
EXTERNL size_t NC_class_alignment(int ncclass);
|
|
EXTERNL void NC_compute_alignments(void);
|
|
|
|
#endif /*NCOFFSETS_H*/
|