summaryrefslogtreecommitdiffstats
path: root/khexedit/lib/codecs/khexadecimalbytecodec.cpp
blob: 46abdada710bfef49f23d016fc2275e9bfb7cbaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/***************************************************************************
                          khexadecimalbytecodec.cpp  -  description
                             -------------------
    begin                : Mo Nov 29 2004
    copyright            : (C) 2004 by Friedrich W. H. Kossebau
    email                : Friedrich.W.H@Kossebau.de
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This library is free software; you can redistribute it and/or         *
 *   modify it under the terms of the GNU Library General Public           *
 *   License version 2 as published by the Free Software Foundation.       *
 *                                                                         *
 ***************************************************************************/


// lib specific
#include "khexadecimalbytecodec.h"

using namespace KHE;


static const TQChar BigDigit[16] =
{ '0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F' };
static const TQChar SmallDigit[16] =
{ '0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f' };


KHexadecimalByteCodec::KHexadecimalByteCodec( bool S ) : Digit( S?SmallDigit:BigDigit ) {}

bool KHexadecimalByteCodec::setSmallDigits( bool S )
{
  bool Change = ( S && Digit == BigDigit );
  Digit = S?SmallDigit:BigDigit;
  return Change;
}

bool KHexadecimalByteCodec::smallDigits() const { return Digit != BigDigit; }


void KHexadecimalByteCodec::encode( TQString &Digits, unsigned int Pos, unsigned char Char ) const
{
  Digits.tqat(Pos++) = Digit[Char>>4];
  Digits.tqat(Pos) = Digit[Char&0x0F];
}

void KHexadecimalByteCodec::encodeShort( TQString &Digits, unsigned int Pos, unsigned char Char ) const
{
  unsigned char C;
  if( (C = (Char>>4)) )
    Digits.tqat(Pos++) = Digit[C];
  Digits.tqat(Pos) = Digit[Char&0x0F];
}


static inline bool isValidBigDigit( unsigned char Digit )
{
  return (Digit >= 'A' && Digit <= 'F');
}

static inline bool isValidSmallDigit( unsigned char Digit )
{
  return (Digit >= 'a' && Digit <= 'f');
}

static inline bool isValidDecimalDigit( unsigned char Digit )
{
  return Digit >= '0' && Digit <= '9';
}


bool KHexadecimalByteCodec::isValidDigit( unsigned char Digit ) const
{
  return isValidDecimalDigit(Digit) || isValidBigDigit(Digit) || isValidSmallDigit(Digit);
}

bool KHexadecimalByteCodec::turnToValue( unsigned char *Digit ) const
{
  if( isValidDecimalDigit(*Digit) )
    *Digit -= '0';
  else if( isValidBigDigit(*Digit) )
    *Digit -= 'A' - 10;
  else if( isValidSmallDigit(*Digit) )
    *Digit -= 'a' - 10;
  else
    return false;

  return true;
}

bool KHexadecimalByteCodec::appendDigit( unsigned char *Byte, unsigned char Digit ) const
{
  if( turnToValue(&Digit) )
  {
    unsigned char B = *Byte;
    if( B < 16 )
    {
      B <<= 4;
      B += Digit;
      *Byte = B;
      return true;
    }
  }
  return false;
}



void KHexadecimalByteCodec::removeLastDigit( unsigned char *Byte ) const
{
  *Byte >>= 4;
}