File: uconv-8bit.c

package info (click to toggle)
mnogosearch 3.3.7-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 17,484 kB
  • ctags: 4,565
  • sloc: ansic: 94,097; xml: 16,864; sh: 8,915; makefile: 1,727; perl: 801; php: 561; sql: 15
file content (121 lines) | stat: -rw-r--r-- 3,544 bytes parent folder | download
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
/* Copyright (C) 2000-2006 Lavtech.com corp. All rights reserved.

   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 of the License, 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; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
*/

#include "udm_config.h"

#include <stdio.h>
#include <string.h>
#include "udm_uniconv.h"
#include "udm_sgml.h"

/*
  Special characters:
  0x22 0010.0010 "
  0x26 0010.0110 &
  0x3C 0011.1100 <
  0x3E 0011.1110 >
       001?.???0
  
  0xE1 1110.0001 Mask
  0x20 0010.0000 Result
  
*/

#define IS_SPECIAL(x) ((x) == '"' || (x) == '&' || (x) == '<' || (x) == '>')

#define IS_SPECIAL_QUICK(x) ((((x) & 0xE1) == 0x20) && IS_SPECIAL(x))

__C_LINK int __UDMCALL udm_mb_wc_ascii(UDM_CONV *conv, UDM_CHARSET *cs,int *wc,
                                       const unsigned char *str,
                                       const unsigned char *end)
{
  if (*str == '&' && (conv->flags & UDM_RECODE_HTML_SPECIAL))
    return UdmSGMLScan(wc, str, end);
  if (*str > 0x7F)
    return UDM_CHARSET_ILSEQ;
  *wc= *str;
  return 1;
}


__C_LINK int __UDMCALL udm_wc_mb_ascii(UDM_CONV *conv, UDM_CHARSET *cs, int *wc,
                                       unsigned char *s, unsigned char *e)
{
  if (*wc > 0x7F)
    return UDM_CHARSET_ILUNI;

  *s= *wc;

   if ((conv->flags & UDM_RECODE_HTML_SPECIAL) && IS_SPECIAL_QUICK(*s))
     return UDM_CHARSET_ILUNI;
  return 1;
}



__C_LINK int __UDMCALL udm_mb_wc_latin1(UDM_CONV *conv, UDM_CHARSET *cs,int *wc,
                                        const unsigned char *str,
                                        const unsigned char *end)
{
  if (*str == '&' && (conv->flags & UDM_RECODE_HTML_SPECIAL))
    return UdmSGMLScan(wc, str, end);
  *wc= *str;
  return 1;
}


__C_LINK int __UDMCALL udm_wc_mb_latin1(UDM_CONV *conv, UDM_CHARSET *cs, int *wc,
                                        unsigned char *s, unsigned char *e)
{
  if (*wc > 0xFF)
    return UDM_CHARSET_ILUNI;

  *s= *wc;

   if ((conv->flags & UDM_RECODE_HTML_SPECIAL) && IS_SPECIAL_QUICK(*s))
     return UDM_CHARSET_ILUNI;
  return 1;
}

__C_LINK int __UDMCALL udm_mb_wc_8bit(UDM_CONV *conv, UDM_CHARSET *cs,int *wc,
                                      const unsigned char *str,
                                      const unsigned char *end)
{
  if (*str == '&' && (conv->flags & UDM_RECODE_HTML_SPECIAL))
    return UdmSGMLScan(wc, str, end);
  *wc= cs->tab_to_uni[*str];
  return (!wc[0] && str[0]) ? UDM_CHARSET_ILSEQ : 1;
}


__C_LINK int __UDMCALL udm_wc_mb_8bit(UDM_CONV *conv, UDM_CHARSET *cs, int *wc,
                                      unsigned char *s, unsigned char *e)
{
  UDM_UNI_IDX *idx;
     
  for(idx=cs->tab_from_uni; idx->tab ; idx++)
  {
    if(idx->from <= *wc && idx->to >= *wc)
    {
      s[0]=idx->tab[*wc - idx->from];
      if ((conv->flags & UDM_RECODE_HTML_SPECIAL) && IS_SPECIAL_QUICK(*s))
        return UDM_CHARSET_ILUNI;
      return (!s[0] && *wc) ? UDM_CHARSET_ILUNI : 1;
    }
  }
  return UDM_CHARSET_ILUNI;
}