GS1 Barcode Syntax Tests reference
A reference to the AI component "linter" routines referred to by the GS1 Barcode Syntax Dictionary. Copyright (c) 2022-2024 GS1 AISBL.
lint_yyyymmd0.c File Reference

Purpose

The yyyymmd0 linter ensures that the data represents a meaningful date, in YYYYMMDD format, additionally permitting YYYYMM00 format indicating an unspecified day.

Functional Description

◆ gs1_lint_yyyymmd0()

GS1_SYNTAX_DICTIONARY_API gs1_lint_err_t gs1_lint_yyyymmd0 ( const char *const  data,
size_t *const  err_pos,
size_t *const  err_len 
)

Used to ensure that an AI component conforms to the YYYYMMDD or YYYYMM00 formats.

Parameters
[in]dataPointer to the null-terminated data to be linted. Must not be NULL.
[out]err_posTo facilitate error highlighting, the start position of the bad data is written to this pointer, if not NULL.
[out]err_lenThe length of the bad data is written to this pointer, if not NULL.
Returns
GS1_LINTER_OK if okay.
GS1_LINTER_DATE_TOO_SHORT if the data is too short for YYYYMMDD format.
GS1_LINTER_DATE_TOO_LONG if the data is too long for YYYYMMDD format.
GS1_LINTER_NON_DIGIT_CHARACTER if the data contains a non-digit character.
GS1_LINTER_ILLEGAL_MONTH if the data contains an invalid month.
GS1_LINTER_ILLEGAL_DAY if the data contains an invalid day of the month.
56{
57
58/// \cond
59#define XX(d) ( (data[d] - '0') * 10 + (data[d+1] - '0') )
60#define YY ( XX(0) * 100 + XX(2) )
61#define MM XX(4)
62#define DD XX(6)
63/// \endcond
64
65 static const unsigned char daysinmonth[] =
66 { 31, 0, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
67
68 size_t len, pos;
69 unsigned char maxdd;
70
71 assert(data);
72
73 len = strlen(data);
74
75 /*
76 * Data must be eight characters.
77 *
78 */
79 if (len != 8)
82 0,
83 len
84 );
85
86 /*
87 * Data must consist of all digits.
88 *
89 */
90 if ((pos = strspn(data, "0123456789")) != len)
93 pos,
94 1
95 );
96
97 /*
98 * Validate that the month is 01 to 12.
99 *
100 */
101 if (MM < 1 || MM > 12)
104 4,
105 2
106 );
107
108 /*
109 * Validate the day, accounting for leap years
110 *
111 */
112 if (MM == 2) { /* February; account for leap years */
113 maxdd = ((YY % 4 == 0 && YY % 100 != 0) || YY % 400 == 0) ? 29 : 28;
114 } else {
115 maxdd = daysinmonth[MM - 1]; /* Based at 0 */
116 }
117
118 if (DD > maxdd) /* Permit "00" */
121 6,
122 2
123 );
124
126
127}
#define GS1_LINTER_RETURN_ERROR(error, position, length)
Return from a linter indicating that a problem was detected with the given data.
Definition gs1syntaxdictionary-utils.h:77
#define GS1_LINTER_RETURN_OK
Return from a linter indicating that no problem was detected with the given data.
Definition gs1syntaxdictionary-utils.h:62
@ GS1_LINTER_ILLEGAL_DAY
The date contains an illegal day of the month.
Definition gs1syntaxdictionary.h:114
@ GS1_LINTER_DATE_TOO_LONG
The date is too long for YYMMDD format.
Definition gs1syntaxdictionary.h:106
@ GS1_LINTER_ILLEGAL_MONTH
The date contains an illegal month of the year.
Definition gs1syntaxdictionary.h:113
@ GS1_LINTER_DATE_TOO_SHORT
The date is too short for YYMMDD format.
Definition gs1syntaxdictionary.h:105
@ GS1_LINTER_NON_DIGIT_CHARACTER
A non-digit character was found where a digit is expected.
Definition gs1syntaxdictionary.h:78