summaryrefslogtreecommitdiff
path: root/modules/indic/indic-lang.c
blob: 89ab301f44e4902d4e2390ea7a94404f6ec826bd (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
249
250
251
252
253
/* Pango
 * indic-lang.c:
 *
 * Copyright (C) 2006 Red Hat Software
 * Author: Akira TAGOH <tagoh@redhat.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library 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
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#include <config.h>
#include <string.h>

#include "pango-engine.h"
#include "pango-break.h"

typedef PangoEngineLang	IndicEngineLang;
typedef PangoEngineLangClass	IndicEngineLangClass;

#define ENGINE_SUFFIX		"IndicScriptEngineLang"
#define RENDER_TYPE		PANGO_RENDER_TYPE_NONE
#define INDIC_ENGINE_INFO(script)					\
  {#script ENGINE_SUFFIX, PANGO_ENGINE_TYPE_LANG, RENDER_TYPE, script##_scripts, G_N_ELEMENTS(script##_scripts)}


static PangoEngineScriptInfo deva_scripts[] = {
  { PANGO_SCRIPT_DEVANAGARI, "*" }
};

static PangoEngineScriptInfo beng_scripts[] = {
  { PANGO_SCRIPT_BENGALI, "*" }
};

static PangoEngineScriptInfo guru_scripts[] = {
  { PANGO_SCRIPT_GURMUKHI, "*" }
};

static PangoEngineScriptInfo gujr_scripts[] = {
  { PANGO_SCRIPT_GUJARATI, "*" }
};

static PangoEngineScriptInfo orya_scripts[] = {
  { PANGO_SCRIPT_ORIYA, "*" }
};

static PangoEngineScriptInfo taml_scripts[] = {
  { PANGO_SCRIPT_TAMIL, "*" }
};

static PangoEngineScriptInfo telu_scripts[] = {
  { PANGO_SCRIPT_TELUGU, "*" }
};

static PangoEngineScriptInfo knda_scripts[] = {
  { PANGO_SCRIPT_KANNADA, "*" }
};

static PangoEngineScriptInfo mlym_scripts[] = {
  { PANGO_SCRIPT_MALAYALAM, "*" }
};

static PangoEngineScriptInfo sinh_scripts[] = {
  { PANGO_SCRIPT_SINHALA, "*" }
};

static PangoEngineInfo script_engines[] = {
  INDIC_ENGINE_INFO(deva), INDIC_ENGINE_INFO(beng), INDIC_ENGINE_INFO(guru),
  INDIC_ENGINE_INFO(gujr), INDIC_ENGINE_INFO(orya), INDIC_ENGINE_INFO(taml),
  INDIC_ENGINE_INFO(telu), INDIC_ENGINE_INFO(knda), INDIC_ENGINE_INFO(mlym),
  INDIC_ENGINE_INFO(sinh)
};


static void
indic_engine_break (PangoEngineLang *engine,
		    const char      *text,
		    int              length,
		    PangoAnalysis   *analysis,
		    PangoLogAttr    *attrs,
		    int              attrs_len)
{
  const gchar *p, *next = NULL, *next_next;
  gunichar prev_wc, this_wc, next_wc, next_next_wc;
  gboolean makes_rephaya_syllable = FALSE;
  int i;

  for (p = text, prev_wc = 0, i = 0;
       p != NULL && p < (text + length);
       p = next, prev_wc = this_wc, i++)
    {
      this_wc = g_utf8_get_char (p);
      next = g_utf8_next_char (p);
      if (next != NULL && next < (text + length))
	{
	  next_wc = g_utf8_get_char (next);
	  next_next = g_utf8_next_char (next);
	}
      else
	{
	  next_wc = 0;
	  next_next = NULL;
	}
      if (next_next != NULL && next_next < (text + length))
	next_next_wc = g_utf8_get_char (next_next);
      else
	next_next_wc = 0;

      if (prev_wc != 0 && this_wc == 0x0DBB &&
	  next_wc == 0x0DCA && next_next_wc == 0x200D)
	{
	  /* Determine whether or not this forms a Rephaya syllable.
	   * SINHALA LETTER + U+0DBB U+0DCA U+200D + SINHALA LETTER is
	   * the kind of Rephaya.
	   */
	  makes_rephaya_syllable = TRUE;
	  attrs[i].is_cursor_position = FALSE;
	  attrs[i].is_char_break = FALSE;
	  attrs[i].is_line_break = FALSE;
	  attrs[i].is_mandatory_break = FALSE;
	}
      else if (prev_wc == 0x200D &&
		(makes_rephaya_syllable || this_wc == 0x0DBB || this_wc == 0x0DBA))
	{
	  /* fixes the cursor break in Sinhala.
	   * SINHALA LETTER + SINHALA VOWEL + ZWJ + 0x0DBB/0x0DBA is
	   * the kind of Rakaransaya/Yansaya. these characters has to
	   * be dealt as one character.
	   */
	  attrs[i].is_cursor_position = FALSE;
	  attrs[i].is_char_break = FALSE;
	  attrs[i].is_line_break = FALSE;
	  attrs[i].is_mandatory_break = FALSE;
	  makes_rephaya_syllable = FALSE;
	}
      else if (this_wc == 0x200D &&
		((makes_rephaya_syllable && next_wc != 0) ||
		 (next_wc == 0x0DBB || next_wc == 0x0DBA)))
	{
	  attrs[i].is_cursor_position = FALSE;
	  attrs[i].is_char_break = FALSE;
	  attrs[i].is_line_break = FALSE;
	  attrs[i].is_mandatory_break = FALSE;
	}
      else if (prev_wc != 0 && (this_wc == 0x200D || this_wc == 0x200C))
        {
          if (next_wc != 0)
            {
              if  (next_next_wc == 0)
                {
                  attrs[i].is_cursor_position = FALSE;
	          attrs[i].is_char_break = FALSE;
	          attrs[i].is_line_break = FALSE;
	          attrs[i].is_mandatory_break = FALSE;

                  i++;

                  attrs[i].is_cursor_position = FALSE;
	          attrs[i].is_char_break = FALSE;
	          attrs[i].is_line_break = FALSE;
	          attrs[i].is_mandatory_break = FALSE;
                }
              else if ((next_next_wc != 0) &&
                       (next_wc == 0x09CD ||	/* Bengali */
		        next_wc == 0x0ACD ||	/* Gujarati */
		        next_wc == 0x094D ||	/* Hindi */
		        next_wc == 0x0CCD ||	/* Kannada */
		        next_wc == 0x0D4D ||	/* Malayalam */
		        next_wc == 0x0B4D ||	/* Oriya */
		        next_wc == 0x0A4D ||	/* Punjabi */
		        next_wc == 0x0BCD ||	/* Tamil */
		        next_wc == 0x0C4D ||	/* Telugu */
                        next_wc == 0x0DCA))  /*Sinhala*/
                {
                  attrs[i].is_cursor_position = FALSE;
	          attrs[i].is_char_break = FALSE;
	          attrs[i].is_line_break = FALSE;
	          attrs[i].is_mandatory_break = FALSE;

                  i++;

                  attrs[i].is_cursor_position = FALSE;
	          attrs[i].is_char_break = FALSE;
	          attrs[i].is_line_break = FALSE;
	          attrs[i].is_mandatory_break = FALSE;

                  i++;
                  attrs[i].is_cursor_position = FALSE;
                }
            }
          else
            {
              attrs[i].is_cursor_position = FALSE;
	      attrs[i].is_char_break = FALSE;
	      attrs[i].is_line_break = FALSE;
	      attrs[i].is_mandatory_break = FALSE;
            }
	}
    }
}

static void
indic_engine_lang_class_init (PangoEngineLangClass *klass)
{
  klass->script_break = indic_engine_break;
}

PANGO_ENGINE_LANG_DEFINE_TYPE (IndicEngineLang, indic_engine_lang,
			       indic_engine_lang_class_init, NULL)

void
PANGO_MODULE_ENTRY(init) (GTypeModule *module)
{
  indic_engine_lang_register_type (module);
}

void
PANGO_MODULE_ENTRY(exit) (void)
{
}

void
PANGO_MODULE_ENTRY(list) (PangoEngineInfo **engines,
			  int               *n_engines)
{
  *engines = script_engines;
  *n_engines = G_N_ELEMENTS (script_engines);
}

PangoEngine *
PANGO_MODULE_ENTRY(create) (const char *id)
{
  guint i;

  for (i = 0; i < G_N_ELEMENTS(script_engines); i++)
    {
      if (!strcmp (id, script_engines[i].id))
	return g_object_new (indic_engine_lang_type, NULL);
    }

  return NULL;
}