mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
fab7435fac
- use fixed-length string tables (mostly) instead of (char *) pointer ones (saves ~40K) - re-use C128Table for CODABLOCKF and CODE16K (required removal of Stop character and extra CODE16K-only entry) - use pointer to destination and copy (memcpy/strcpy(), bin_append_posn()) instead of concatenating (strcat()) (mostly) - replace last remaining bin_append()s with bin_append_posn(); bin_append() removed - add length arg to toupper() and expand() (avoids strlen()) - change is_sane() to use table-based flags (avoids an iteration) - rename lookup() to is_sane_lookup() and change to check and return posns and use in pointer to destination loops (avoids strcat()s) - remove special case PHARMA in expand() (dealt with in pharma()) - make #define SILVER/CALCIUM/TECHNETIUM/KRSET etc static strings - replace strchr() -> posn() - CODE128: populate destination once in checksum loop; re-use and export some more routines (c128_set_a/b/c(), c128_put_in_set()) for sharing; prefix defines (SHIFTA -> C128_SHIFTA etc) and existing exported routines - use factor XOR toggle trick in checksum calcs (avoids branch) - raster.c: fill out single 1-pixel row and copy using new draw_bar_line(), copy_bar_line() routines; similarly in buffer_plot compare previous line & copy if same (same technique as used to improve non-half-integer scaling, significant performance increase, (c) codemonkey82); also done for PNG (BMP/GIF/PCX/TIFF not done) - raster/vector/output.c: shorten "output_" prefix -> "out_"; sync vector to other raster changes to try to keep source files similar - 2of5.c: prefix "c25_" JAPANPOST: return error if input data truncated (backward incompatible) DAFT: max chars 50 -> 100 common.c: istwodigit() -> is_twodigit() common.c/emf.c/output.c: use some further stripf()s (MSVC6 float variations) library.c: new check_output_args() helper zint.h: add BARCODE_LAST marker and use in library.c QRCODE: remove a NOLINT (requires clang-tidy-13), one remaining CMake: separate no-optimize from ZINT_DEBUG into new ZINT_NOOPT option
358 lines
13 KiB
C
358 lines
13 KiB
C
/* 2of5.c - Handles Code 2 of 5 barcodes */
|
|
|
|
/*
|
|
libzint - the open source barcode library
|
|
Copyright (C) 2008 - 2021 Robin Stuart <rstuart114@gmail.com>
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
modification, are permitted provided that the following conditions
|
|
are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
notice, this list of conditions and the following disclaimer.
|
|
2. Redistributions in binary form must reproduce the above copyright
|
|
notice, this list of conditions and the following disclaimer in the
|
|
documentation and/or other materials provided with the distribution.
|
|
3. Neither the name of the project nor the names of its contributors
|
|
may be used to endorse or promote products derived from this software
|
|
without specific prior written permission.
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
|
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
SUCH DAMAGE.
|
|
*/
|
|
/* vim: set ts=4 sw=4 et : */
|
|
|
|
#include <stdio.h>
|
|
#include "common.h"
|
|
#include "gs1.h"
|
|
|
|
static const char C25MatrixTable[10][6] = {
|
|
{'1','1','3','3','1','1'}, {'3','1','1','1','3','1'}, {'1','3','1','1','3','1'}, {'3','3','1','1','1','1'},
|
|
{'1','1','3','1','3','1'}, {'3','1','3','1','1','1'}, {'1','3','3','1','1','1'}, {'1','1','1','3','3','1'},
|
|
{'3','1','1','3','1','1'}, {'1','3','1','3','1','1'}
|
|
};
|
|
|
|
static const char C25IndustTable[10][10] = {
|
|
{'1','1','1','1','3','1','3','1','1','1'}, {'3','1','1','1','1','1','1','1','3','1'},
|
|
{'1','1','3','1','1','1','1','1','3','1'}, {'3','1','3','1','1','1','1','1','1','1'},
|
|
{'1','1','1','1','3','1','1','1','3','1'}, {'3','1','1','1','3','1','1','1','1','1'},
|
|
{'1','1','3','1','3','1','1','1','1','1'}, {'1','1','1','1','1','1','3','1','3','1'},
|
|
{'3','1','1','1','1','1','3','1','1','1'}, {'1','1','3','1','1','1','3','1','1','1'}
|
|
};
|
|
|
|
/* Note `c25_common()` assumes Stop string length one less than Start */
|
|
static const char *C25MatrixStartStop[2] = { "411111", "41111" };
|
|
static const char *C25IndustStartStop[2] = { "313111", "31113" };
|
|
static const char *C25IataLogicStartStop[2] = { "1111", "311" };
|
|
|
|
static const char C25InterTable[10][5] = {
|
|
{'1','1','3','3','1'}, {'3','1','1','1','3'}, {'1','3','1','1','3'}, {'3','3','1','1','1'}, {'1','1','3','1','3'},
|
|
{'3','1','3','1','1'}, {'1','3','3','1','1'}, {'1','1','1','3','3'}, {'3','1','1','3','1'}, {'1','3','1','3','1'}
|
|
};
|
|
|
|
static char c25_check_digit(const unsigned int count) {
|
|
return itoc((10 - (count % 10)) % 10);
|
|
}
|
|
|
|
/* Common to Standard (Matrix), Industrial, IATA, and Data Logic */
|
|
static int c25_common(struct zint_symbol *symbol, const unsigned char source[], int length, const int max,
|
|
const int is_matrix, const char *start_stop[2], const int start_length, const int error_base) {
|
|
|
|
int i;
|
|
char dest[500]; /* Largest destination 6 + (80 + 1) * 6 + 5 + 1 = 498 */
|
|
char *d = dest;
|
|
unsigned char temp[80 + 1 + 1]; /* Largest maximum 80 + optional check digit */
|
|
int have_checkdigit = symbol->option_2 == 1 || symbol->option_2 == 2;
|
|
|
|
if (length > max) {
|
|
/* errtxt 301: 303: 305: 307: */
|
|
sprintf(symbol->errtxt, "%d: Input too long (%d character maximum)", error_base, max);
|
|
return ZINT_ERROR_TOO_LONG;
|
|
}
|
|
if (!is_sane(NEON_F, source, length)) {
|
|
/* errtxt 302: 304: 306: 308: */
|
|
sprintf(symbol->errtxt, "%d: Invalid character in data (digits only)", error_base + 1);
|
|
return ZINT_ERROR_INVALID_DATA;
|
|
}
|
|
|
|
ustrcpy(temp, source);
|
|
|
|
if (have_checkdigit) {
|
|
/* Add standard GS1 check digit */
|
|
temp[length] = gs1_check_digit(source, length);
|
|
temp[++length] = '\0';
|
|
}
|
|
|
|
/* Start character */
|
|
memcpy(d, start_stop[0], start_length);
|
|
d += start_length;
|
|
|
|
if (is_matrix) {
|
|
for (i = 0; i < length; i++, d += 6) {
|
|
memcpy(d, C25MatrixTable[temp[i] - '0'], 6);
|
|
}
|
|
} else {
|
|
for (i = 0; i < length; i++, d += 10) {
|
|
memcpy(d, C25IndustTable[temp[i] - '0'], 10);
|
|
}
|
|
}
|
|
|
|
/* Stop character */
|
|
memcpy(d, start_stop[1], start_length - 1);
|
|
d += start_length - 1;
|
|
|
|
expand(symbol, dest, d - dest);
|
|
|
|
ustrcpy(symbol->text, temp);
|
|
if (symbol->option_2 == 2) {
|
|
/* Remove check digit from HRT */
|
|
symbol->text[length - 1] = '\0';
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/* Code 2 of 5 Standard (Code 2 of 5 Matrix) */
|
|
INTERNAL int c25standard(struct zint_symbol *symbol, unsigned char source[], int length) {
|
|
return c25_common(symbol, source, length, 80, 1 /*is_matrix*/, C25MatrixStartStop, 6, 301);
|
|
}
|
|
|
|
/* Code 2 of 5 Industrial */
|
|
INTERNAL int c25ind(struct zint_symbol *symbol, unsigned char source[], int length) {
|
|
return c25_common(symbol, source, length, 45, 0 /*is_matrix*/, C25IndustStartStop, 6, 303);
|
|
}
|
|
|
|
/* Code 2 of 5 IATA */
|
|
INTERNAL int c25iata(struct zint_symbol *symbol, unsigned char source[], int length) {
|
|
return c25_common(symbol, source, length, 45, 0 /*is_matrix*/, C25IataLogicStartStop, 4, 305);
|
|
}
|
|
|
|
/* Code 2 of 5 Data Logic */
|
|
INTERNAL int c25logic(struct zint_symbol *symbol, unsigned char source[], int length) {
|
|
return c25_common(symbol, source, length, 80, 1 /*is_matrix*/, C25IataLogicStartStop, 4, 307);
|
|
}
|
|
|
|
/* Common to Interleaved, ITF-14, DP Leitcode, DP Identcode */
|
|
static int c25_inter_common(struct zint_symbol *symbol, unsigned char source[], int length,
|
|
const int dont_set_height) {
|
|
int i, j, error_number = 0;
|
|
char dest[468]; /* 4 + (90 + 2) * 5 + 3 + 1 = 468 */
|
|
char *d = dest;
|
|
unsigned char temp[90 + 2 + 1];
|
|
int have_checkdigit = symbol->option_2 == 1 || symbol->option_2 == 2;
|
|
|
|
if (length > 90) {
|
|
strcpy(symbol->errtxt, "309: Input too long (90 character maximum)");
|
|
return ZINT_ERROR_TOO_LONG;
|
|
}
|
|
if (!is_sane(NEON_F, source, length)) {
|
|
strcpy(symbol->errtxt, "310: Invalid character in data (digits only)");
|
|
return ZINT_ERROR_INVALID_DATA;
|
|
}
|
|
|
|
temp[0] = '\0';
|
|
/* Input must be an even number of characters for Interlaced 2 of 5 to work:
|
|
if an odd number of characters has been entered and no check digit or an even number and have check digit
|
|
then add a leading zero */
|
|
if (((length & 1) && !have_checkdigit) || (!(length & 1) && have_checkdigit)) {
|
|
ustrcpy(temp, "0");
|
|
length++;
|
|
}
|
|
ustrncat(temp, source, length);
|
|
|
|
if (have_checkdigit) {
|
|
/* Add standard GS1 check digit */
|
|
temp[length] = gs1_check_digit(temp, length);
|
|
temp[++length] = '\0';
|
|
}
|
|
|
|
/* start character */
|
|
memcpy(d, "1111", 4);
|
|
d += 4;
|
|
|
|
for (i = 0; i < length; i += 2) {
|
|
/* look up the bars and the spaces */
|
|
const char *const bars = C25InterTable[temp[i] - '0'];
|
|
const char *const spaces = C25InterTable[temp[i + 1] - '0'];
|
|
|
|
/* then merge (interlace) the strings together */
|
|
for (j = 0; j < 5; j++) {
|
|
*d++ = bars[j];
|
|
*d++ = spaces[j];
|
|
}
|
|
}
|
|
|
|
/* Stop character */
|
|
memcpy(d, "311", 3);
|
|
d += 3;
|
|
|
|
expand(symbol, dest, d - dest);
|
|
|
|
ustrcpy(symbol->text, temp);
|
|
if (symbol->option_2 == 2) {
|
|
/* Remove check digit from HRT */
|
|
symbol->text[length - 1] = '\0';
|
|
}
|
|
|
|
if (!dont_set_height) {
|
|
if (symbol->output_options & COMPLIANT_HEIGHT) {
|
|
/* ISO/IEC 16390:2007 Section 4.4 min height 5mm or 15% of symbol width whichever greater where
|
|
(P = character pairs, N = wide/narrow ratio = 3)
|
|
width = (P(4N + 6) + N + 6)X = (length / 2) * 18 + 9 */
|
|
/* Taking X = 0.330mm from Annex D.3.1 (application specification) */
|
|
const float min_height_min = stripf(5.0f / 0.33f);
|
|
float min_height = stripf((18.0f * (length / 2) + 9.0f) * 0.15f);
|
|
if (min_height < min_height_min) {
|
|
min_height = min_height_min;
|
|
}
|
|
/* Using 50 as default as none recommended */
|
|
error_number = set_height(symbol, min_height, min_height > 50.0f ? min_height : 50.0f, 0.0f,
|
|
0 /*no_errtxt*/);
|
|
} else {
|
|
(void) set_height(symbol, 0.0f, 50.0f, 0.0f, 1 /*no_errtxt*/);
|
|
}
|
|
}
|
|
|
|
return error_number;
|
|
}
|
|
|
|
/* Code 2 of 5 Interleaved ISO/IEC 16390:2007 */
|
|
INTERNAL int c25inter(struct zint_symbol *symbol, unsigned char source[], int length) {
|
|
return c25_inter_common(symbol, source, length, 0 /*dont_set_height*/);
|
|
}
|
|
|
|
/* Interleaved 2-of-5 (ITF-14) */
|
|
INTERNAL int itf14(struct zint_symbol *symbol, unsigned char source[], int length) {
|
|
int i, error_number, warn_number = 0, zeroes;
|
|
unsigned char localstr[16] = {0};
|
|
|
|
if (length > 13) {
|
|
strcpy(symbol->errtxt, "311: Input too long (13 character maximum)");
|
|
return ZINT_ERROR_TOO_LONG;
|
|
}
|
|
|
|
if (!is_sane(NEON_F, source, length)) {
|
|
strcpy(symbol->errtxt, "312: Invalid character in data (digits only)");
|
|
return ZINT_ERROR_INVALID_DATA;
|
|
}
|
|
|
|
/* Add leading zeros as required */
|
|
zeroes = 13 - length;
|
|
for (i = 0; i < zeroes; i++) {
|
|
localstr[i] = '0';
|
|
}
|
|
ustrcpy(localstr + zeroes, source);
|
|
|
|
/* Calculate the check digit - the same method used for EAN-13 */
|
|
localstr[13] = gs1_check_digit(localstr, 13);
|
|
localstr[14] = '\0';
|
|
error_number = c25_inter_common(symbol, localstr, 14, 1 /*dont_set_height*/);
|
|
ustrcpy(symbol->text, localstr);
|
|
|
|
if (!((symbol->output_options & BARCODE_BOX) || (symbol->output_options & BARCODE_BIND))) {
|
|
// If no option has been selected then uses default box option
|
|
symbol->output_options |= BARCODE_BOX;
|
|
if (symbol->border_width == 0) { /* Allow override if non-zero */
|
|
/* GS1 General Specifications 21.0.1 Sections 5.3.2.4 & 5.3.6 (4.83 / 1.016 ~ 4.75) */
|
|
symbol->border_width = 5; /* Note change from previous value 8 */
|
|
}
|
|
}
|
|
|
|
if (error_number < ZINT_ERROR) {
|
|
if (symbol->output_options & COMPLIANT_HEIGHT) {
|
|
/* GS1 General Specifications 21.0.1 5.12.3.2 table 2, including footnote (**): (note bind/box additional
|
|
to symbol->height), same as GS1-128: "in case of further space constraints"
|
|
height 5.8mm / 1.016mm (X max) ~ 5.7; default 31.75mm / 0.495mm ~ 64.14 */
|
|
warn_number = set_height(symbol, stripf(5.8f / 1.016f), stripf(31.75f / 0.495f), 0.0f, 0 /*no_errtxt*/);
|
|
} else {
|
|
(void) set_height(symbol, 0.0f, 50.0f, 0.0f, 1 /*no_errtxt*/);
|
|
}
|
|
}
|
|
|
|
return error_number ? error_number : warn_number;
|
|
}
|
|
|
|
/* Deutshe Post Leitcode */
|
|
INTERNAL int dpleit(struct zint_symbol *symbol, unsigned char source[], int length) {
|
|
int i, error_number;
|
|
unsigned int count;
|
|
int factor;
|
|
unsigned char localstr[16] = {0};
|
|
int zeroes;
|
|
|
|
count = 0;
|
|
if (length > 13) {
|
|
strcpy(symbol->errtxt, "313: Input wrong length (13 character maximum)");
|
|
return ZINT_ERROR_TOO_LONG;
|
|
}
|
|
if (!is_sane(NEON_F, source, length)) {
|
|
strcpy(symbol->errtxt, "314: Invalid character in data (digits only)");
|
|
return ZINT_ERROR_INVALID_DATA;
|
|
}
|
|
|
|
zeroes = 13 - length;
|
|
for (i = 0; i < zeroes; i++)
|
|
localstr[i] = '0';
|
|
ustrcpy(localstr + zeroes, source);
|
|
|
|
factor = 4;
|
|
for (i = 12; i >= 0; i--) {
|
|
count += factor * ctoi(localstr[i]);
|
|
factor ^= 0x0D; /* Toggles 4 and 9 */
|
|
}
|
|
localstr[13] = c25_check_digit(count);
|
|
localstr[14] = '\0';
|
|
error_number = c25_inter_common(symbol, localstr, 14, 1 /*dont_set_height*/);
|
|
ustrcpy(symbol->text, localstr);
|
|
|
|
// TODO: Find documentation on BARCODE_DPLEIT dimensions/height
|
|
|
|
return error_number;
|
|
}
|
|
|
|
/* Deutsche Post Identcode */
|
|
INTERNAL int dpident(struct zint_symbol *symbol, unsigned char source[], int length) {
|
|
int i, error_number, zeroes;
|
|
unsigned int count;
|
|
int factor;
|
|
unsigned char localstr[16] = {0};
|
|
|
|
count = 0;
|
|
if (length > 11) {
|
|
strcpy(symbol->errtxt, "315: Input wrong length (11 character maximum)");
|
|
return ZINT_ERROR_TOO_LONG;
|
|
}
|
|
if (!is_sane(NEON_F, source, length)) {
|
|
strcpy(symbol->errtxt, "316: Invalid character in data (digits only)");
|
|
return ZINT_ERROR_INVALID_DATA;
|
|
}
|
|
|
|
zeroes = 11 - length;
|
|
for (i = 0; i < zeroes; i++)
|
|
localstr[i] = '0';
|
|
ustrcpy(localstr + zeroes, source);
|
|
|
|
factor = 4;
|
|
for (i = 10; i >= 0; i--) {
|
|
count += factor * ctoi(localstr[i]);
|
|
factor ^= 0x0D; /* Toggles 4 and 9 */
|
|
}
|
|
localstr[11] = c25_check_digit(count);
|
|
localstr[12] = '\0';
|
|
error_number = c25_inter_common(symbol, localstr, 12, 1 /*dont_set_height*/);
|
|
ustrcpy(symbol->text, localstr);
|
|
|
|
// TODO: Find documentation on BARCODE_DPIDENT dimensions/height
|
|
|
|
return error_number;
|
|
}
|