/[public]/psiconv/trunk/lib/psiconv/unicode.c
ViewVC logotype

Diff of /psiconv/trunk/lib/psiconv/unicode.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 182 Revision 217
1/* 1/*
2 unicode.c - Part of psiconv, a PSION 5 file formats converter 2 unicode.c - Part of psiconv, a PSION 5 file formats converter
3 Copyright (c) 2003 Frodo Looijaard <frodol@dds.nl> 3 Copyright (c) 2003-2004 Frodo Looijaard <frodol@dds.nl>
4 4
5 This program is free software; you can redistribute it and/or modify 5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by 6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or 7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version. 8 (at your option) any later version.
20#include "config.h" 20#include "config.h"
21#include "compat.h" 21#include "compat.h"
22#include "error.h" 22#include "error.h"
23 23
24#include "unicode.h" 24#include "unicode.h"
25#include "parse_routines.h"
26#include "generate_routines.h"
25 27
26#include <string.h> 28#include <string.h>
27 29
28#ifdef DMALLOC 30#ifdef DMALLOC
29#include <dmalloc.h> 31#include <dmalloc.h>
43 /* 0x38 */ 0x0038, 0x0039, 0x003a, 0x003b, 0x003c, 0x003d, 0x003e, 0x003f, 45 /* 0x38 */ 0x0038, 0x0039, 0x003a, 0x003b, 0x003c, 0x003d, 0x003e, 0x003f,
44 /* 0x40 */ 0x0040, 0x0041, 0x0042, 0x0043, 0x0044, 0x0045, 0x0046, 0x0047, 46 /* 0x40 */ 0x0040, 0x0041, 0x0042, 0x0043, 0x0044, 0x0045, 0x0046, 0x0047,
45 /* 0x48 */ 0x0048, 0x0049, 0x004a, 0x004b, 0x004c, 0x004d, 0x004e, 0x004f, 47 /* 0x48 */ 0x0048, 0x0049, 0x004a, 0x004b, 0x004c, 0x004d, 0x004e, 0x004f,
46 /* 0x50 */ 0x0050, 0x0051, 0x0052, 0x0053, 0x0054, 0x0055, 0x0056, 0x0057, 48 /* 0x50 */ 0x0050, 0x0051, 0x0052, 0x0053, 0x0054, 0x0055, 0x0056, 0x0057,
47 /* 0x58 */ 0x0058, 0x0059, 0x005a, 0x005b, 0x005c, 0x005d, 0x005e, 0x005f, 49 /* 0x58 */ 0x0058, 0x0059, 0x005a, 0x005b, 0x005c, 0x005d, 0x005e, 0x005f,
48 /* 0x60 */ 0x0060, 0x0060, 0x0060, 0x0060, 0x0060, 0x0060, 0x0060, 0x0067, 50 /* 0x60 */ 0x0060, 0x0061, 0x0062, 0x0063, 0x0064, 0x0065, 0x0066, 0x0067,
49 /* 0x68 */ 0x0068, 0x0069, 0x006a, 0x006b, 0x006c, 0x006d, 0x006e, 0x006f, 51 /* 0x68 */ 0x0068, 0x0069, 0x006a, 0x006b, 0x006c, 0x006d, 0x006e, 0x006f,
50 /* 0x70 */ 0x0070, 0x0071, 0x0072, 0x0073, 0x0074, 0x0075, 0x0076, 0x0077, 52 /* 0x70 */ 0x0070, 0x0071, 0x0072, 0x0073, 0x0074, 0x0075, 0x0076, 0x0077,
51 /* 0x78 */ 0x0078, 0x0079, 0x007a, 0x007b, 0x007c, 0x007d, 0x007e, 0x0000, 53 /* 0x78 */ 0x0078, 0x0079, 0x007a, 0x007b, 0x007c, 0x007d, 0x007e, 0x0000,
52 /* 0x80 */ 0x20ac, 0x0000, 0x201a, 0x0192, 0x201e, 0x2026, 0x2020, 0x2021, 54 /* 0x80 */ 0x20ac, 0x0000, 0x201a, 0x0192, 0x201e, 0x2026, 0x2020, 0x2021,
53 /* 0x88 */ 0x02c6, 0x2030, 0x0160, 0x2039, 0x0152, 0x0000, 0x017d, 0x0000, 55 /* 0x88 */ 0x02c6, 0x2030, 0x0160, 0x2039, 0x0152, 0x0000, 0x017d, 0x0000,
84 } 86 }
85 return 0; 87 return 0;
86} 88}
87 89
88 90
89psiconv_ucs2 psiconv_unicode_from_char(const psiconv_config config, 91psiconv_ucs2 psiconv_unicode_read_char(const psiconv_config config,
90 psiconv_u8 input) 92 psiconv_buffer buf,
93 int lev,psiconv_u32 off,
94 int *length,int *status)
91{ 95{
96 psiconv_u8 char1,char2,char3;
97 psiconv_ucs2 result=0;
98 int res;
99 int len=0;
100
101 char1 = psiconv_read_u8(config,buf,lev,off+len,&res);
102 if (res)
103 goto ERROR;
104 len ++;
105
106 if (config->unicode) {
107 if (char1 >= 0xf0) {
108 res = PSICONV_E_PARSE;
109 goto ERROR;
110 } else if (char1 < 0x80)
111 result = char1;
112 else {
113 char2 = psiconv_read_u8(config,buf,lev,off+len,&res);
114 len ++;
115 if ((char2 & 0xc0) != 0x80) {
116 res = PSICONV_E_PARSE;
117 goto ERROR;
118 }
119 if (char1 < 0xe0)
120 result = ((char1 & 0x1f) << 6) | (char2 & 0x3f);
121 else {
122 char3 = psiconv_read_u8(config,buf,lev,off+len,&res);
123 len ++;
124 if ((char3 & 0xc0) != 0x80) {
125 res = PSICONV_E_PARSE;
126 goto ERROR;
127 }
128 result = ((char1 & 0x0f) << 12) | ((char2 & 0x3f) << 6) |
129 (char3 & 0x3f);
130 }
131 }
132 } else
92 return config->unicode_table[input]?config->unicode_table[input]: 133 result = config->unicode_table[char1]?config->unicode_table[char1]:
93 config->unknown_unicode_char; 134 config->unknown_unicode_char;
135ERROR:
136 if (length)
137 *length = len;
138 if (status)
139 *status = res;
140 return result;
94} 141}
95 142
96/* This is quite inefficient at the moment; the obvious ways of making it 143int psiconv_unicode_write_char(const psiconv_config config,
97 faster consume quite a bit of memory, though */ 144 psiconv_buffer buf,
98psiconv_u8 psiconv_unicode_to_char(psiconv_config config,psiconv_ucs2 input) 145 int lev, psiconv_ucs2 value)
99{ 146{
147 psiconv_u8 byte;
100 int i; 148 int i;
149 int res=0;
150
151 if (config->unicode) {
152 if (value < 0x80) {
153 if ((res = psiconv_write_u8(config,buf,lev,value)))
154 goto ERROR;
155 } else if (value < 0x800) {
156 if ((res = psiconv_write_u8(config,buf,lev,0xc0 | (value >> 6))))
157 goto ERROR;
158 if ((res = psiconv_write_u8(config,buf,lev,0x80 | (value & 0x3f))))
159 goto ERROR;
160 } else {
161 if ((res = psiconv_write_u8(config,buf,lev,0xe0 | (value >> 12))))
162 goto ERROR;
163 if ((res = psiconv_write_u8(config,buf,lev,0x80 | ((value >> 6) & 0x3f))))
164 goto ERROR;
165 if ((res = psiconv_write_u8(config,buf,lev,0x80 | (value & 0x3f))))
166 goto ERROR;
167 }
168 } else {
101 for (i = 0; i < 256; i++) 169 for (i = 0; i < 256; i++)
102 if (config->unicode_table[i] == input) 170 if (config->unicode_table[i] == value)
103 break; 171 break;
104 return (i == 256?config->unknown_epoc_char:i); 172 if ((res = psiconv_write_u8(config,buf,lev,
105} 173 i == 256?config->unknown_epoc_char:i)))
106 174 goto ERROR;
107int psiconv_unicode_from_chars(const psiconv_config config, 175 }
108 const psiconv_u8 *input, 176ERROR:
109 psiconv_ucs2 **output) 177 return res;
110{
111 int i;
112 if (!output)
113 return PSICONV_E_NOMEM;
114 if (!(*output = malloc(sizeof(**output) * (1 + strlen(input)))))
115 return PSICONV_E_NOMEM;
116 for (i = 0; i < strlen(input); i++)
117 (*output)[i] = psiconv_unicode_from_char(config,input[i]);
118 (*output)[i] = 0x0000;
119 return PSICONV_E_OK;
120}
121
122int psiconv_unicode_to_chars(const psiconv_config config,
123 const psiconv_ucs2 *input,
124 psiconv_u8 **output)
125{
126 int i;
127 if (!output)
128 return -PSICONV_E_NOMEM;
129 if (!(*output = malloc(sizeof(**output) *
130 (1 + psiconv_unicode_strlen(input)))))
131 return -PSICONV_E_NOMEM;
132 for (i = 0; i < psiconv_unicode_strlen(input); i++)
133 (*output)[i] = psiconv_unicode_to_char(config,input[i]);
134 (*output)[i] = 0x00;
135 return -PSICONV_E_OK;
136} 178}
137 179
138int psiconv_unicode_strlen(const psiconv_ucs2 *input) 180int psiconv_unicode_strlen(const psiconv_ucs2 *input)
139{ 181{
140 int i = 0; 182 int i = 0;
141 while (input[i]) 183 while (input[i])
142 i++; 184 i++;
143 return i; 185 return i;
144} 186}
187
188psiconv_ucs2 *psiconv_unicode_strdup(const psiconv_ucs2 *input)
189{
190 psiconv_ucs2 *output;
191 int i = 0;
192
193 if (!(output = malloc(sizeof(*output) *
194 (1 + psiconv_unicode_strlen(input)))))
195 return NULL;
196 while ((output[i] = input[i]))
197 i++;
198 return output;
199}
200
201int psiconv_unicode_strcmp(const psiconv_ucs2 *str1, const psiconv_ucs2 *str2)
202{
203 int i = 0;
204 while (str1[i] && str2[i]) {
205 if (str1[i] < str2[i])
206 return -1;
207 if (str1[i] > str2[i])
208 return 1;
209 i++;
210 }
211 if (str1[i] < str2[i])
212 return -1;
213 else if (str1[i] > str2[i])
214 return 1;
215 else
216 return 0;
217}
218
219
220psiconv_ucs2 *psiconv_unicode_empty_string(void)
221{
222 psiconv_ucs2 *result;
223 result = malloc(sizeof(psiconv_ucs2));
224 if (result)
225 result[0] = 0;
226 return result;
227}
228

Legend:
Removed from v.182  
changed lines
  Added in v.217

frodo@frodo.looijaard.name
ViewVC Help
Powered by ViewVC 1.1.26