Files
harbour-core/contrib/hbgd/gdbarcod.prg
Viktor Szakats 5a2a287752 2017-09-08 16:00 UTC Viktor Szakats (vszakats users.noreply.github.com)
* *
    * partial sync with the 3.4 fork codebase. These are the things
      synces for the most part:
      - copyright headers
      - grammar/typos in comments and some readmes
      - comment/whitespace/decorations
      - variable scoping in C files
      - DO CASE/SWITCH and some other alternate syntax usage
      - minimal amount of human readable text in strings
      - minor code updates
      - HB_TRACE() void * casts for pointers and few other changes to
        avoid C compiler warnings
      - various other, minor code cleanups
      - only Harbour/C code/headers were touched in src, utils, contrib,
        include. No 3rd party code, no make files, and with just a few
        exceptions, no 'tests' code was touched.
      - certain components were not touched were 3.4 diverged too much
        already, like f.e. hbmk2, hbssl, hbcurl, hbexpat
      - the goal was that no actual program logic should be altered by
        these changes. Except some possible minor exceptions, any such
        change is probably a bug in this patch.
      It's a massive patch, if you find anything broken after it, please
      open an Issue with the details. Build test was done on macOS.
      The goal is make it easier to see what actual code/logic was changed
      in 3.4 compared to 3.2 and to make patches easier to apply in both
      ways.
2017-09-08 16:25:13 +00:00

662 lines
17 KiB
Plaintext

/*
* CodeBar engine library class
*
* Copyright 2005 Laverson Espindola <laverson.espindola@gmail.com>
*
* 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 "hbclass.ch"
#define CODEC 100
#define CODEB 101
#define CODEA 102
#define FNC1 103
#define STARTA 104
#define STARTB 105
#define STARTC 106
CREATE CLASS GDBarCode INHERIT GDBar
VAR nType
// EAN-13 ISBN
METHOD New( nTypeCode ) CONSTRUCTOR
METHOD Draw( cText )
METHOD Draw13( cText )
METHOD DrawText13()
// EAN-8
METHOD Draw8( cText )
METHOD DrawText8()
// EAN-128
METHOD Draw128( cText, cModeCode )
// I25
METHOD DrawI25( cText )
METHOD GenCodei25()
// Utils
METHOD FindCharCode( cString, cChar )
METHOD MixCode( value )
METHOD Findcode( uval )
ENDCLASS
METHOD New( nTypeCode ) CLASS GDBarCode
LOCAL ii
IF nTypeCode == 13 .OR. ;
nTypeCode == 8
::LeftHand_Odd := { "0011001", "0010011", "0111101", "0100011", "0110001", "0101111", "0111011", "0110111", "0001011", "0001101" }
::LeftHand_Even := { "0110011", "0011011", "0100001", "0011101", "0111001", "0000101", "0010001", "0001001", "0010111", "0100111" }
::Right_Hand := { "1100110", "1101100", "1000010", "1011100", "1001110", "1010000", "1000100", "1001000", "1110100", "1110010" }
::Parity := { "OOEOEE", "OOEEOE", "OOEEEO", "OEOOEE", "OEEOOE", "OEEEOO", "OEOEOE", "OEOEEO", "OEEOEO", "OOOOOO" }
::keys := { "1", "2", "3", "4", "5", "6", "7", "8", "9", "0" }
ELSEIF nTypeCode == 128
::aCode := { ;
"212222", "222122", "222221", "121223", "121322", "131222", "122213", "122312", "132212", "221213", ;
"221312", "231212", "112232", "122132", "122231", "113222", "123122", "123221", "223211", "221132", ;
"221231", "213212", "223112", "312131", "311222", "321122", "321221", "312212", "322112", "322211", ;
"212123", "212321", "232121", "111323", "131123", "131321", "112313", "132113", "132311", "211313", ;
"231113", "231311", "112133", "112331", "132131", "113123", "113321", "133121", "313121", "211331", ;
"231131", "213113", "213311", "213131", "311123", "311321", "331121", "312113", "312311", "332111", ;
"314111", "221411", "431111", "111224", "111422", "121124", "121421", "141122", "141221", "112214", ;
"112412", "122114", "122411", "142112", "142211", "241211", "221114", "213111", "241112", "134111", ;
"111242", "121142", "121241", "114212", "124112", "124211", "411212", "421112", "421211", "212141", ;
"214121", "412121", "111143", "111341", "131141", "114113", "114311", "411113", "411311", "113141", ;
"114131", "311141", "411131", "211412", "211214", "211232", "2331112";
}
::KeysmodeA := ' !"#$%&\()*+-.,/0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_'
::KeysmodeB := ' !"#$%&\()*+-.,/0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_abcdefghijklmnopqrstuvwxyz{|}~'
::KeysModeC := Array( 99 )
FOR ii := 1 TO 99
::KeysmodeC[ ii ] := StrZero( ii, 2 )
NEXT
ELSEIF nTypeCode == 25
::keys := { "1", "2", "3", "4", "5", "6", "7", "8", "9", "0" }
::aCode := { ;
"10001", ; // 1 digit
"01001", ; // 2 digit
"11000", ; // 3 digit
"00101", ; // 4 digit
"10100", ; // 5 digit
"01100", ; // 6 digit
"00011", ; // 7 digit
"10010", ; // 8 digit
"01010", ; // 9 digit
"00110", ; // 0 digit
"10000", ; // pre-amble
"100" } // post-amble
ELSE
::DrawError( "Invalid type to barcode." )
RETURN NIL
ENDIF
::nType := nTypeCode
RETURN Self
METHOD Draw( cText ) CLASS GDBarCode
IF ::nType == 13
::Draw13( cText )
ELSEIF ::nType == 8
::Draw8( cText )
ELSEIF ::nType == 128
::Draw128( cText )
ELSEIF ::nType == 25
::DrawI25( cText )
ENDIF
RETURN NIL
METHOD Draw13( cText ) CLASS GDBarCode
LOCAL lError := .F.
LOCAL nChkSum := 0
LOCAL nChk := 0
LOCAL ii, jj
LOCAL xParity
::Settext( cText )
// Valid characters
IF ! ::CheckCode()
lError := .T.
ENDIF
IF ! lError
IF ::book .AND. Len( ::text ) != 10
::DrawError( "Must contains 10 chars if ISBN is true." )
lError := .T.
ENDIF
// book, we changed the code to the right
IF ::book .AND. Len( ::text ) == 10
::text := "978" + SubStr( ::text, 1, Len( ::text ) - 1 )
ENDIF
// contain only 12 characters ?
IF Len( ::text ) != 12
::DrawError( "Must contains 12 chars, the 13th digit is automatically added." )
lError := .T.
ENDIF
IF ! lError
// If we have to write text, we moved the barcode to the right to have space to put digit
::positionX := iif( ::textfont == 0, 0, 10 )
xParity := ::Parity[ Val( SubStr( ::text, 1, 1 ) ) ]
// First Bar
::positionX := 10
::maxHeight += 9
::DrawSingleBar( "101" )
// start code
::maxHeight -= 9
FOR ii := 1 TO Len( ::text )
// Calculate check digit
IF Mod( Len( ::text ) + 1 - ii, 2 ) == 0
nChkSum += Int( Val( SubStr( ::text, ii, 1 ) ) )
ELSE
nChkSum += Int( Val( SubStr( ::text, ii, 1 ) ) ) * 3
ENDIF
// Now, the bar of the middle
IF ii == 8
::positionX += 1
::maxHeight += 9
::DrawSingleBar( "101" )
::maxHeight -= 9
::positionX += 1
ENDIF
jj := Val( SubStr( ::text, ii, 1 ) )
IF jj == 0
jj := 10
ENDIF
IF ii > 1 .AND. ii < 8
::DrawSingleBar( iif( SubStr( xParity, ii - 1, 1 ) == "E", ;
::LeftHand_Even[ jj ], ;
::LeftHand_Odd[ jj ] ) )
ELSEIF ii > 1 .AND. ii >= 8
::DrawSingleBar( ::Right_Hand[ jj ] )
ENDIF
NEXT
jj := Mod( nChkSum, 10 )
IF jj != 0
nChk := 10 - jj
ENDIF
cText += Str( nChk, 1 )
IF nChk == 0
nChk := 10
ENDIF
::DrawSingleBar( ::Right_Hand[ nChk ] )
// Now, finish bar
::maxHeight += 9
::DrawSingleBar( "101" )
::lastX := ::positionX
::lastY := ::maxHeight
// Draw Text
IF ::lDrawValue
::Settext( cText )
::DrawText13()
ENDIF
ENDIF
ENDIF
RETURN NIL
METHOD DrawText13() CLASS GDBarCode
IF ::textfont != 0
::Say( 2, ::maxHeight - ( ::GetFontHeight() / 2 ), SubStr( ::text, 1, 1 ), ::FillColor )
::Say( ( 10 + ( 3 * ::res + 48 * ::res ) / 2 ) - ( ::GetFontWidth() * ( 6 / 2 ) ), ::maxHeight + 1, SubStr( ::text, 2, 6 ), ::FillColor )
::Say( 10 + 46 * ::res + ( 3 * ::res + 46 * ::res ) / 2 - ::GetFontWidth() * ( 6 / 2 ), ::maxHeight + 1, SubStr( ::text, 8, 6 ), ::FillColor )
ENDIF
::lastY := ::maxHeight + ::GetFontHeight()
RETURN NIL
METHOD Draw8( cText ) CLASS GDBarCode
LOCAL lError := .F.
LOCAL ii, jj
#if 0
LOCAL xParity
#endif
LOCAL nChkSum := 0
LOCAL nChk := 0
::Settext( cText )
// Valid characters
IF ! ::CheckCode()
lError := .T.
ENDIF
IF ! lError
::positionX := iif( ::textfont == 0, 0, 10 )
#if 0
xParity := ::Parity[ 7 ]
#endif
// First Bar
::positionX := 10
::maxHeight += 9
::DrawSingleBar( "101" )
// Start Code
::maxHeight -= 9
FOR ii := 1 TO Len( ::text )
IF Mod( Len( ::text ) + 1 - ii, 2 ) == 0
nChkSum += Int( Val( SubStr( ::text, ii, 1 ) ) )
ELSE
nChkSum += Int( Val( SubStr( ::text, ii, 1 ) ) ) * 3
ENDIF
IF ii == 5
::positionX += 1
::maxHeight += 9
::DrawSingleBar( "01010" )
::maxHeight -= 9
::positionX += 1
ENDIF
jj := Val( SubStr( ::text, ii, 1 ) )
IF jj == 0
jj := 10
ENDIF
IF ii < 5
::DrawSingleBar( ::LeftHand_Odd[ jj ] )
ELSEIF ii >= 5
::DrawSingleBar( ::Right_Hand[ jj ] )
ENDIF
NEXT
jj := Mod( nChkSum, 10 )
IF jj != 0
nChk := 10 - jj
ENDIF
::DrawSingleBar( ::Right_Hand[ nChk ] )
// Now, finish bar
::maxHeight += 9
::DrawSingleBar( "101" )
::lastX := ::positionX
::lastY := ::maxHeight
cText += Str( nChk, 1 )
// Draw text
IF ::lDrawValue
::Settext( cText )
::DrawText8()
ENDIF
ENDIF
RETURN NIL
METHOD DrawText8() CLASS GDBarCode
::say( 10 + ( ( 3 * ::res + 34 * ::res ) / 2 - ::GetFontWidth() * ( 4 / 2 ) ), ::maxHeight + 1, SubStr( ::text, 1, 4 ), ::fillcolor )
::say( 10 + ( 32 * ::res + ( 3 * ::res + 32 * ::res ) / 2 - ::GetFontWidth() * ( 4 / 2 ) ), ::maxHeight + 1, SubStr( ::text, 5, 4 ), ::fillcolor )
::lastY := ::maxHeight + ::GetFontHeight()
RETURN NIL
METHOD FindCharCode( cString, cChar ) CLASS GDBarCode
LOCAL i
LOCAL nC := 0
LOCAL nret := 0
FOR i := 1 TO Len( cString )
IF SubStr( cString, i, 1 ) == cChar
++nC
nRet := nC
EXIT
ENDIF
++nC
NEXT
RETURN nret
METHOD Draw128( cText, cModeCode ) CLASS GDBarCode
LOCAL cChar, nValChar, n, i
LOCAL nSum := 0
LOCAL nC := 0
LOCAL nPos
LOCAL lTypeCodeC := .F.
LOCAL lTypeCodeA := .F.
LOCAL lError := .F.
LOCAL cBarCode := ""
LOCAL cConc := ""
hb_default( @cModeCode, "B" )
::settext( cText )
IF ! Empty( cModeCode )
IF HB_ISSTRING( cModeCode ) .AND. Upper( cModeCode ) $ "ABC"
cModeCode := Upper( cModeCode )
ELSE
::DrawError( "Code 128 Modes are A, B or C character values." )
lError := .T.
ENDIF
ENDIF
// Checking if all chars are allowed
FOR i := 1 TO Len( ::text )
IF cModeCode == "C"
nPos := AScan( ::KeysmodeC, {| x | x == SubStr( ::Text, i, 1 ) + SubStr( ::Text, i + 1, 1 ) } )
IF nPos == 0
::DrawError( "With Code C, you must provide always pair of two integers. Character " + SubStr( ::text, i, 1 ) + SubStr( ::text, i + 1, 1 ) + " not allowed." )
lError := .T.
ENDIF
ELSEIF cModeCode == "B"
IF ::FindCharCode( ::KeysmodeB, SubStr( ::Text, i, 1 ) ) == 0
::DrawError( "Character " + SubStr( ::text, i, 1 ) + " not allowed." )
lError := .T.
ENDIF
ELSEIF cModeCode == "A"
IF ::FindCharCode( ::KeysmodeA, SubStr( ::text, i, 1 ) ) == 0
::DrawError( "Character " + SubStr( ::text, i, 1 ) + " not allowed." )
lError := .T.
ENDIF
ENDIF
NEXT
IF ! lError
IF Empty( cModeCode )
IF Str( Val( ::text ), Len( ::text ) ) == ::text
lTypeCodeC := .T.
cConc := ::aCode[ STARTC ]
nSum := STARTB
ELSE
FOR n := 1 TO Len( ::text )
nC += iif( SubStr( ::text, n, 1 ) > 31, 1, 0 )
NEXT
IF nC < Len( ::text ) / 2
lTypeCodeA := .T.
cConc := ::aCode[ STARTA ]
nSum := FNC1
ELSE
cConc := ::aCode[ STARTB ]
nSum := STARTA
ENDIF
ENDIF
ELSE
IF cModeCode == "C"
lTypeCodeC := .T.
cConc := ::aCode[ STARTC ]
nSum := STARTB
ELSEIF cModeCode == "A"
lTypeCodeA := .T.
cConc := ::aCode[ STARTB ]
nSum := FNC1
ELSE
cConc := ::aCode[ STARTB ]
nSum := STARTA
ENDIF
ENDIF
nC := 0
FOR n := 1 TO Len( ::text )
++nC
cChar := SubStr( ::text, n, 1 )
IF lTypeCodeC
IF Len( ::text ) == n
cConc += ::aCode[ CODEB ]
nValChar := Asc( cChar ) - 31
ELSE
nValChar := Val( SubStr( ::text, n, 2 ) ) + 1
++n
ENDIF
ELSEIF lTypeCodeA
IF cChar > "_"
cConc += ::aCode[ CODEB ]
nValChar := Asc( cChar ) - 31
ELSEIF cChar <= " "
nValChar := Asc( cChar ) + 64
ELSE
nValChar := Asc( cChar ) - 31
ENDIF
ELSE
IF cChar < " "
cConc += ::aCode[ CODEA ]
nValChar := Asc( cChar ) + 64
ELSE
nValChar := Asc( cChar ) - 31
ENDIF
ENDIF
nSum += ( nValChar - 1 ) * nC
cConc += ::aCode[ nValChar ]
NEXT
nSum := nSum % 103 + 1
cConc += ::aCode[ nSum ] + ::aCode[ 107 ]
FOR n := 1 TO Len( cConc ) STEP 2
cBarCode += Replicate( "1", Val( SubStr( cConc, n, 1 ) ) )
cBarCode += Replicate( "0", Val( SubStr( cConc, n + 1, 1 ) ) )
NEXT
::DrawSingleBar( cBarCode )
::lastX := ::positionX
::lastY := ::maxHeight
// Draw Text
IF ::lDrawValue
::Settext( cText )
::DrawText()
ENDIF
ENDIF
RETURN NIL
METHOD DrawI25( cText ) CLASS GDBarCode
::settext( cText )
::GenCodei25()
RETURN NIL
METHOD GenCodei25() CLASS GDBarCode
LOCAL lError := .F.
LOCAL bc_string
IF ( Len( ::text ) % 2 ) != 0
::DrawError( "Invalid barcode lenght" )
lError := .T.
ENDIF
IF ! lError
bc_string := Upper( ::text )
// Encode itemId to I25 barcode standard.
bc_string := ::MixCode( bc_string )
// Adding Start and Stop Pattern
::DrawSingleI25( ::acode[ 11 ] + bc_string + ::acode[ 12 ] )
::lastY := ::maxHeight
// Draw Text
IF ::lDrawValue
::DrawText( .T. )
ENDIF
ENDIF
RETURN NIL
/*
It makes mixe of the value to be codified by the Bar code I25
*/
METHOD MixCode( value ) CLASS GDBarCode
LOCAL l, i, k
LOCAL s
LOCAL bar_string := ""
LOCAL cFirst
LOCAL cNext
l := Len( value )
IF ( l % 2 ) != 0
::DrawError( "Code cannot be intercalated: Invalid length (mix)" )
ELSE
i := 1
s := ""
DO WHILE i < l
cFirst := ::Findcode( SubStr( value, i, 1 ) )
cNext := ::Findcode( SubStr( value, i + 1, 1 ) )
// Mix of the codes
// NNNNWNNWWW
// N N N W W
FOR k := 1 TO 5
s += SubStr( cFirst, k, 1 ) + SubStr( cNext, k, 1 )
NEXT
i += 2
ENDDO
bar_string := s
ENDIF
RETURN bar_string
METHOD Findcode( uVal ) CLASS GDBarCode
RETURN ::acode[ AScan( ::keys, {| x | Left( x, 1 ) == uVal } ) ]