/* * Zebra barcode library * * Copyright 2010 Mindaugas Kavaliauskas * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; see the file LICENSE.txt. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301 USA (or visit https://www.gnu.org/licenses/). * * As a special exception, the Harbour Project gives permission for * additional uses of the text contained in its release of Harbour. * * The exception is that, if you link the Harbour libraries with other * files to produce an executable, this does not by itself cause the * resulting executable to be covered by the GNU General Public License. * Your use of that executable is in no way restricted on account of * linking the Harbour library code into it. * * This exception does not however invalidate any other reasons why * the executable file might be covered by the GNU General Public License. * * This exception applies only to the code released by the Harbour * Project under the name Harbour. If you copy code from other * Harbour Project or Free Software Foundation releases into a copy of * Harbour, as the General Public License permits, the exception does * not apply to the code that you add in this way. To avoid misleading * anyone as to the status of such modified files, you must delete * this exception notice from them. * * If you write modifications of your own for Harbour, it is your choice * whether to permit this exception to apply to your modifications. * If you do not wish that, delete this exception notice. * */ #include "hbzebra.h" static const char s_code[] = { 0x60, /* 0 */ 0x30, /* 1 */ 0x48, /* 2 */ 0x03, /* 3 */ 0x24, /* 4 */ 0x21, /* 5 */ 0x42, /* 6 */ 0x12, /* 7 */ 0x06, /* 8 */ 0x09, /* 9 */ 0x18, /* - */ 0x0C, /* $ */ 0x51, /* : */ 0x45, /* / */ 0x15, /* . */ 0x7C, /* + */ 0x2C, /* A */ 0x4A, /* B */ 0x68, /* C */ 0x38 }; /* D */ static int _codabar_charno( char ch ) { if( '0' <= ch && ch <= '9' ) return ch - '0'; else { static const char * s_symbols = "-$:/.+ABCD"; const char * ptr = strchr( s_symbols, ch ); if( ptr && *ptr ) return ( int ) ( ptr - s_symbols + 10 ); } return -1; } static void _codabar_add( PHB_BITBUFFER pBits, char code, int iFlags, HB_BOOL fLast ) { int i; if( iFlags & HB_ZEBRA_FLAG_WIDE2_5 ) { for( i = 0; i < 7; i++ ) { hb_bitbuffer_cat_int( pBits, ( i & 1 ) ? 0 : 31, ( code & 1 ) ? 5 : 2 ); code >>= 1; } if( ! fLast ) hb_bitbuffer_cat_int( pBits, 0, 2 ); } else if( iFlags & HB_ZEBRA_FLAG_WIDE3 ) { for( i = 0; i < 7; i++ ) { hb_bitbuffer_cat_int( pBits, ( i & 1 ) ? 0 : 31, ( code & 1 ) ? 3 : 1 ); code >>= 1; } if( ! fLast ) hb_bitbuffer_cat_int( pBits, 0, 1 ); } else { for( i = 0; i < 7; i++ ) { hb_bitbuffer_cat_int( pBits, ( i & 1 ) ? 0 : 31, ( code & 1 ) ? 2 : 1 ); code >>= 1; } if( ! fLast ) hb_bitbuffer_cat_int( pBits, 0, 1 ); } } PHB_ZEBRA hb_zebra_create_codabar( const char * szCode, HB_SIZE nLen, int iFlags ) { PHB_ZEBRA pZebra; unsigned int i, iLen = ( unsigned int ) nLen; pZebra = hb_zebra_create(); pZebra->iType = HB_ZEBRA_TYPE_CODABAR; for( i = 0; i < iLen; i++ ) { int j = _codabar_charno( szCode[ i ] ); if( j < 0 || ( j >= 16 && i != 0 && i != iLen - 1 ) ) { pZebra->iError = HB_ZEBRA_ERROR_INVALIDCODE; return pZebra; } } pZebra->szCode = ( char * ) hb_xgrab( iLen + 1 ); hb_xmemcpy( pZebra->szCode, szCode, iLen ); pZebra->szCode[ iLen ] = '\0'; szCode = pZebra->szCode; pZebra->pBits = hb_bitbuffer_create(); if( iLen == 0 || _codabar_charno( ( int ) szCode[ 0 ] ) < 16 ) _codabar_add( pZebra->pBits, s_code[ _codabar_charno( 'A' ) ], iFlags, HB_FALSE ); /* Default start A */ for( i = 0; i < iLen; i++ ) { int no = _codabar_charno( szCode[ i ] ); _codabar_add( pZebra->pBits, s_code[ no ], iFlags, i > 0 && no >= 16 ); } if( iLen == 0 || _codabar_charno( szCode[ i - 1 ] ) < 16 ) _codabar_add( pZebra->pBits, s_code[ _codabar_charno( 'B' ) ], iFlags, HB_TRUE ); /* Default stop B */ return pZebra; } HB_FUNC( HB_ZEBRA_CREATE_CODABAR ) { PHB_ITEM pItem = hb_param( 1, HB_IT_STRING ); if( pItem ) hb_zebra_ret( hb_zebra_create_codabar( hb_itemGetCPtr( pItem ), hb_itemGetCLen( pItem ), hb_parni( 2 ) ) ); else hb_errRT_BASE( EG_ARG, 3012, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS ); }