mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-04-04 04:30:13 -05:00

Up-to-date trunk clang has introduced a built-in operator called _Countof, which is like the 'lenof' macro in this code (returns the number of elements in a statically-declared array object) but with the safety advantage that it provokes a compile error if you accidentally use it on a pointer. In this commit I add a cmake-time check for it, and conditional on that, switch over the definition of lenof. This should add a safety check for accidental uses of lenof(pointer). When I tested it with new clang, this whole code base compiled cleanly with the new setting, so there aren't currently any such accidents. clang cites C2y as the source for _Countof: WG14 document N3369 initially proposed it under a different name, and then there was a big internet survey about naming (in which of course I voted for lenof!), and document N3469 summarises the results, which show that the name _Countof and/or countof won. Links: https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3369.pdf https://www.open-std.org/jtc1/sc22/wg14/www/docs/n3469.htm My reading of N3469 seems to say that there will _either_ be _Countof by itself, _or_ lowercase 'countof' as a new keyword, but they don't say which. They say they _don't_ intend to do the same equivocation we had with _Complex and _Bool, where you have a _Countof keyword and an optional header file defining a lowercase non-underscore macro wrapping it. But there hasn't been a new whole draft published since N3469 yet, so I don't know what will end up in it when there is. However, as of now, _Countof exists in at least one compiler, and that seems like enough reason to implement it here. If it becomes 'countof' in the real standard, then we can always change over later. (And in that case it would probably make sense to rename the macro throughout the code base to align with what will become the new standard usage.)
96 lines
3.2 KiB
C
96 lines
3.2 KiB
C
/*
|
|
* internal.h - internal header stuff for the charset library.
|
|
*/
|
|
|
|
#ifndef charset_internal_h
|
|
#define charset_internal_h
|
|
|
|
/* This invariably comes in handy */
|
|
#ifndef lenof
|
|
#if HAVE_COUNTOF
|
|
#define lenof(x) _Countof(x)
|
|
#else
|
|
#define lenof(x) ( (sizeof((x))) / (sizeof(*(x))))
|
|
#endif
|
|
#endif
|
|
|
|
/* This is an invalid Unicode value used to indicate an error. */
|
|
#define ERROR 0xFFFFL /* Unicode value representing error */
|
|
|
|
typedef struct charset_spec charset_spec;
|
|
typedef struct sbcs_data sbcs_data;
|
|
|
|
struct charset_spec {
|
|
int charset; /* numeric identifier */
|
|
|
|
/*
|
|
* A function to read the character set and output Unicode
|
|
* characters. The `emit' function expects to get Unicode chars
|
|
* passed to it; it should be sent ERROR for any encoding error
|
|
* on the input.
|
|
*/
|
|
void (*read)(charset_spec const *charset, long int input_chr,
|
|
charset_state *state,
|
|
void (*emit)(void *ctx, long int output), void *emitctx);
|
|
/*
|
|
* A function to read Unicode characters and output in this
|
|
* character set. The `emit' function expects to get byte
|
|
* values passed to it; it should be sent ERROR for any
|
|
* non-representable characters on the input.
|
|
*/
|
|
void (*write)(charset_spec const *charset, long int input_chr,
|
|
charset_state *state,
|
|
void (*emit)(void *ctx, long int output), void *emitctx);
|
|
void const *data;
|
|
};
|
|
|
|
/*
|
|
* This is the format of `data' used by the SBCS read and write
|
|
* functions; so it's the format used in all SBCS definitions.
|
|
*/
|
|
struct sbcs_data {
|
|
/*
|
|
* This is a simple mapping table converting each SBCS position
|
|
* to a Unicode code point. Some positions may contain ERROR,
|
|
* indicating that that byte value is not defined in the SBCS
|
|
* in question and its occurrence in input is an error.
|
|
*/
|
|
unsigned long sbcs2ucs[256];
|
|
|
|
/*
|
|
* This lookup table is used to convert Unicode back to the
|
|
* SBCS. It consists of the valid byte values in the SBCS,
|
|
* sorted in order of their Unicode translation. So given a
|
|
* Unicode value U, you can do a binary search on this table
|
|
* using the above table as a lookup: when testing the Xth
|
|
* position in this table, you branch according to whether
|
|
* sbcs2ucs[ucs2sbcs[X]] is less than, greater than, or equal
|
|
* to U.
|
|
*
|
|
* Note that since there may be fewer than 256 valid byte
|
|
* values in a particular SBCS, we must supply the length of
|
|
* this table as well as the contents.
|
|
*/
|
|
unsigned char ucs2sbcs[256];
|
|
int nvalid;
|
|
};
|
|
|
|
/*
|
|
* Prototypes for internal library functions.
|
|
*/
|
|
charset_spec const *charset_find_spec(int charset);
|
|
void read_sbcs(charset_spec const *charset, long int input_chr,
|
|
charset_state *state,
|
|
void (*emit)(void *ctx, long int output), void *emitctx);
|
|
void write_sbcs(charset_spec const *charset, long int input_chr,
|
|
charset_state *state,
|
|
void (*emit)(void *ctx, long int output), void *emitctx);
|
|
|
|
/*
|
|
* Placate compiler warning about unused parameters, of which we
|
|
* expect to have some in this library.
|
|
*/
|
|
#define UNUSEDARG(x) ( (x) = (x) )
|
|
|
|
#endif /* charset_internal_h */
|