summaryrefslogtreecommitdiff
path: root/libs/util/src/Codec.cc
blob: 4a1899dcd149796f6ada7b24185f59c92ac5ea1a (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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
/**
 * ======================== legal notice ======================
 * 
 * File:      Codec.cc
 * Created:   21. Mai 2012, 14
 * Author:    <a href="mailto:geronimo013@gmx.de">Geronimo</a>
 * Project:   libutil - base classes used by other libraries
 * 
 * CMP - compound media player
 * 
 * is a client/server mediaplayer intended to play any media from any workstation
 * without the need to export or mount shares. cmps is an easy to use backend
 * with a (ready to use) HTML-interface. Additionally the backend supports
 * authentication via HTTP-digest authorization.
 * cmpc is a client with vdr-like osd-menues.
 * 
 * Copyright (c) 2012 Reinhard Mantey, some rights reserved!
 * published under Creative Commons by-sa
 * For details see http://creativecommons.org/licenses/by-sa/3.0/
 * 
 * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp
 * 
 * --------------------------------------------------------------
 */
#include "Codec.h"
#include "util.h"
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <openssl/md5.h>

// --- Codec ------------------------------------------------------------------
static cHexEncoder * hexEncoder = NULL;
static cHexDecoder * hexDecoder = NULL;

cCodec::cCodec(const char *Table, char SpecialChar)
 : translateTable(strdup(Table))
 , keyChar(SpecialChar)
{
}

cCodec::~cCodec()
{
  FREE(translateTable);
}

size_t cCodec::DecodeSequence(unsigned char *d, unsigned char *s)
{
  *d = *s;

  return 1;
}

// --- Encoder ----------------------------------------------------------------

cEncoder::cEncoder(char SpecialChar, const char *TrTable)
 : cCodec(TrTable, SpecialChar)
{
}

cEncoder::~cEncoder()
{
}

char *cEncoder::Encode(const char *Source, size_t SourceLength)
{
  if (!Source) return NULL;
  if (!SourceLength) SourceLength = strlen(Source);

  const unsigned char *s = (const unsigned char *)Source;
  const unsigned char *last = (const unsigned char *)(Source + SourceLength);
  char *rv = (char *)malloc(SourceLength * 3 + 1);
  char *d = rv;
  unsigned char c;

  for (; s < last; ++s) {
      c = *s;
      if (c < 0x80 && (isalnum(c) || c == '-' || c == '_' || c == '.' || c == '~'))
         *d++ = c;
      else if (c == ' ')
         *d++ = '+';
      else {
         *d++ = KeyChar();
         *d++ = TranslateTable()[c >> 4];
         *d++ = TranslateTable()[c & 0x0F];
         }
      }
  *d = 0;

  return rv;
}

// --- URLEncoder -------------------------------------------------------------

cURLEncoder::cURLEncoder()
 : cEncoder('%')
{
}

cURLEncoder::~cURLEncoder()
{
}

// --- Decoder ----------------------------------------------------------------

cDecoder::cDecoder(char SpecialChar, const char *TrTable)
 : cCodec(TrTable, SpecialChar)
{
}

cDecoder::~cDecoder()
{
}

char *cDecoder::Decode(const char *Source, size_t SourceLength)
{
  if (!Source) return NULL;
  if (!SourceLength) SourceLength = strlen(Source);

  const unsigned char *s = (const unsigned char *)Source;
  const unsigned char *last = (const unsigned char *)(Source + SourceLength);
  char *rv = (char *)malloc(SourceLength + 1);
  unsigned char *d = (unsigned char *) rv;
  size_t seqLen;

  for (; s < last; ++s) {
      if (*s == KeyChar()) {
         seqLen = DecodeSequence(d++, (unsigned char *) ++s);
         s += seqLen;
         }
      else if (*s == '+') {
         *d++ = ' ';
         }
      else {
         *d++ = *s;
         }
      }
  *d = 0;

  return rv;
}

size_t cDecoder::DecodeSequence(unsigned char *d, unsigned char *s)
{
  // just transform hex sequence back to character
  unsigned char c = s[0] >= 'A' ? ((s[0] & 0xDF) - 'A') + 10 : (s[0] - '0');

  c *= 16;
  c += s[1] >= 'A' ? ((s[1] & 0xDF) - 'A') + 10 : (s[1] - '0');
  *d = c;

  return 1;
}

// --- URLDecoder -------------------------------------------------------------

cURLDecoder::cURLDecoder()
 : cDecoder('%')
{
}

cURLDecoder::~cURLDecoder()
{
}

// --- HexEncoder -------------------------------------------------------------

cHexEncoder::cHexEncoder()
 : cEncoder('#', "0123456789abcdef")
{
}

cHexEncoder::~cHexEncoder()
{
}

char* cHexEncoder::Encode(const unsigned char* Source, size_t SourceLength)
{
  if (!SourceLength) SourceLength = strlen((const char *)Source);
  const unsigned char *s = (const unsigned char *)Source;
  char *rv = (char *)malloc(SourceLength * 3 + 1);
  char *d = rv;
  unsigned char c;

  for (int i=0; i < 16; ++i, ++s) {
      c = *s;
      *d++ = TranslateTable()[c >> 4];
      *d++ = TranslateTable()[c & 0x0F];
      }
  *d = 0;

  return rv;
}

cHexEncoder * getHexEncoder(void) {
  if (!hexEncoder) hexEncoder = new cHexEncoder();
  return hexEncoder;
}

// --- HexDecoder -------------------------------------------------------------

cHexDecoder::cHexDecoder()
{
}

cHexDecoder::~cHexDecoder()
{
}

char* cHexDecoder::Decode(const char* Source, size_t SourceLength)
{
  if (!Source) return NULL;
  if (!SourceLength) SourceLength = strlen(Source);

  const unsigned char *s = (const unsigned char *)Source;
  const unsigned char *last = (const unsigned char *)(Source + SourceLength);
  char *rv = (char *)malloc(SourceLength + 1);
  unsigned char *d = (unsigned char *) rv;
  unsigned char c0, c1;

  for (; s < last; s += 2) {
      c0 = toupper(s[0]);
      c1 = c0 >= 'A' ? ((c0 & 0xDF) - 'A') + 10 : (c0 - '0');
      c1 *= 16;
      c0 = toupper(s[1]);
      c1 = c0 >= 'A' ? ((c0 & 0xDF) - 'A') + 10 : (c0 - '0');
      *d++ = c1;
      }
  *d = 0;

  return rv;
}

cHexDecoder * getHexDecoder(void) {
  if (!hexDecoder) hexDecoder = new cHexDecoder();
  return hexDecoder;
}

void codecCleanUp(void) {
  if (hexEncoder) {
     delete hexEncoder;
     hexEncoder = NULL;
     }
  if (hexDecoder) {
     delete hexDecoder;
     hexDecoder = NULL;
     }
}