dbf6c8898cb36a8cd23c9a88d75ec0843df31e85
[m17n/m17n-test.git] / flt.c
1 #include <stdio.h>
2 #include <string.h>
3 #include <ft2build.h>
4 #include FT_FREETYPE_H
5 #include FT_TRUETYPE_TABLES_H
6 #include <fontconfig/fontconfig.h>
7 #include <fontconfig/fcfreetype.h>
8
9 #if defined (FLT_GUI)
10
11 #include <m17n-gui.h>
12 #define PROGNAME "flt-gui"
13
14 #elif defined (FLT_OTF)
15
16 #include <m17n-flt.h>
17 #include <otf.h>
18 #define PROGNAME "flt-otf"
19
20 #elif defined (FLT_HB)
21
22 #include <m17n-flt.h>
23 #include <harfbuzz.h>
24 #define PROGNAME "flt-hb"
25
26 #else  /* (defined (FLT_PANGO)) */
27
28 #include <m17n-flt.h>
29 #define PANGO_ENABLE_ENGINE
30 #define PANGO_ENABLE_BACKEND
31 #include <pango/pango.h>
32 #include <pango/pango-ot.h>
33 #include <pango/pangoft2.h>
34 #include <pango/pangofc-font.h>
35 #endif
36
37 static FT_Library ft_library;
38
39 int
40 parse_font_name (char *fontname, char **family, int *size, char **err)
41 {
42   FcPattern *pat;
43   FcChar8 *fam;
44   double pixelsize;
45
46   pat = FcNameParse ((FcChar8 *) fontname);
47   if (! pat)
48     {
49       *err = "invalid name format";
50       return -1;
51     }
52   if (FcPatternGetString (pat, FC_FAMILY, 0, &fam) != FcResultMatch)
53     {
54       FcPatternDestroy (pat);
55       *err = "no family name";
56       return -1;
57     }
58   if (FcPatternGetDouble (pat, FC_PIXEL_SIZE, 0, &pixelsize) != FcResultMatch)
59     pixelsize = 20;
60   *family = strdup ((char *) fam);
61   *size = pixelsize;
62   FcPatternDestroy (pat);
63   return 0;
64 }
65
66 FT_Face
67 new_face (char *fontname, char **err)
68 {
69   FcPattern *pat;
70   FcChar8 *fam, *file;
71   int size;
72   double pixelsize;
73   FcFontSet *fs;
74   FcObjectSet *os;
75   FT_Face face;
76
77   if (parse_font_name (fontname, (char **) &fam, &size, err) < 0)
78     return NULL;
79   pixelsize = size;
80   pat = FcPatternBuild (0,
81                         FC_FAMILY, FcTypeString, fam,
82                         FC_SCALABLE, FcTypeBool, FcTrue,
83                         NULL);
84   free (fam);
85   os = FcObjectSetBuild (FC_FILE, NULL);
86   fs = FcFontList (NULL, pat, os);
87   if (fs->nfont == 0)
88     {
89       *err = "no matching font";
90       return NULL;
91     }
92   FcPatternGetString (fs->fonts[0], FC_FILE, 0, &file);
93
94   if (FT_New_Face (ft_library, (char *) file, 0, &face))
95     {
96       FcFontSetDestroy (fs);
97       FcObjectSetDestroy (os);
98       FcPatternDestroy (pat);
99       *err = "font open fail";
100       return NULL;
101     }
102   FcFontSetDestroy (fs);
103   FcObjectSetDestroy (os);
104   FcPatternDestroy (pat);
105   if (FT_Set_Pixel_Sizes (face, pixelsize, pixelsize))
106     {
107       *err = "set pixelsize fail";
108       FT_Done_Face (face);
109       return NULL;
110     }
111   return face;
112 }
113
114 #ifdef FLT_GUI
115
116 typedef struct
117 {
118   MFont *font;
119   FT_Face face;
120 } MFLTFont;
121
122 MFrame *frame;
123
124 MFLTFont *
125 open_font (char *fontname, char **err)
126 {
127   FT_Face ft_face = new_face (fontname, err);
128   MFLTFont *font;
129   MFace *face;
130   MPlist *plist;
131   MFontset *fontset;
132
133   if (! ft_face)
134     return NULL;
135   face = mface ();
136   plist = mplist ();
137   fontset = mfontset ("generic");
138   mface_put_prop (face, Mfontset, fontset);
139   mplist_add (plist, Mface, face);
140   mplist_add (plist, Mdevice, Mnil);
141   frame = mframe (plist);
142   m17n_object_unref (plist);
143   m17n_object_unref (face);
144   m17n_object_unref (fontset);
145
146   font = calloc (1, sizeof (MFLTFont));
147   font->font = mfont_encapsulate (frame, Mfreetype, ft_face);
148   font->face = ft_face;
149   return font;
150 }
151
152 void
153 close_font (MFLTFont *font)
154 {
155   FT_Done_Face (font->face);
156   free (font);
157   m17n_object_unref (frame);
158 }
159
160 int
161 flt (MText *mt, int from, int to, MFLTFont *font, char *flt_name)
162 {
163   MDrawControl control;
164
165   memset (&control, 0, sizeof (MDrawControl));
166   control.two_dimensional = 1;
167   control.enable_bidi = 1;
168   control.anti_alias = 1;
169   /*control.disable_caching = 1;*/
170   mtext_put_prop (mt, from, to, Mfont, font->font);
171   mdraw_text_extents (frame, mt, from, to, &control, NULL, NULL, NULL);
172   return 0;
173 }
174
175 #elif defined (FLT_OTF) || defined (FLT_HB)
176
177 typedef struct {
178   MFLTFont font;
179   FT_Face face;
180 } FontInfo;
181
182 int
183 get_glyph_id (MFLTFont *font, MFLTGlyph *g)
184 {
185   FT_Face face = ((FontInfo *) font)->face;
186
187   g->code = FT_Get_Char_Index (face, g->code);
188
189   return (g->code ? 0 : -1);
190 }
191
192 int 
193 get_metric (MFLTFont *font, MFLTGlyphString *gstring, int from, int to)
194 {
195   FT_Face face = ((FontInfo *) font)->face;
196
197   for (; from < to; from++)
198     {
199       MFLTGlyph *g = gstring->glyphs + from;
200       FT_Glyph_Metrics *metrics;
201
202       if (FT_Load_Glyph (face, g->code, FT_LOAD_DEFAULT))
203         return -1;
204       metrics = &face->glyph->metrics;
205       g->lbearing = metrics->horiBearingX;
206       g->rbearing = metrics->horiBearingX + metrics->width;
207       g->xadv = metrics->horiAdvance;
208       g->yadv = metrics->vertAdvance;
209       g->ascent = metrics->horiBearingY;
210       g->descent = metrics->height - metrics->horiBearingY;
211     }
212   return 0;
213 }
214
215 int
216 flt (MText *mt, int from, int to, MFLTFont *font, char *flt_name)
217 {
218   MFLTGlyphString gstring;
219   int len = to - from;
220   int i;
221
222   memset (&gstring, 0, sizeof (MFLTGlyphString));
223   gstring.glyph_size = sizeof (MFLTGlyph);
224   gstring.allocated = len * 2;
225   gstring.glyphs = alloca (sizeof (MFLTGlyph) * gstring.allocated);
226   for (i = 0; i < len; i++)
227     gstring.glyphs[i].c = mtext_ref_char (mt, from + i);
228   gstring.used = len;
229   return mflt_run (&gstring, 0, len, font, msymbol (flt_name));
230 }
231
232 #ifdef FLT_OTF
233
234 typedef struct {
235   MFLTFont font;
236   FT_Face face;
237   OTF *otf;
238 } FontInfoOTF;
239
240 #define DEVICE_DELTA(table, size)                               \
241   (((size) >= (table).StartSize && (size) <= (table).EndSize)   \
242    ? ((table).DeltaValue[(size) - (table).StartSize] << 6)      \
243    : 0)
244
245 static void
246 adjust_anchor (OTF_Anchor *anchor, FT_Face face,
247                unsigned code, unsigned x_ppem, unsigned y_ppem, int *x, int *y)
248 {
249   if (anchor->AnchorFormat == 2)
250     {
251       FT_Outline *outline;
252       int ap = anchor->f.f1.AnchorPoint;
253
254       FT_Load_Glyph (face, (FT_UInt) code, FT_LOAD_MONOCHROME);
255       outline = &face->glyph->outline;
256       if (ap < outline->n_points)
257         {
258           *x = outline->points[ap].x;
259           *y = outline->points[ap].y;
260         }
261     }
262   else if (anchor->AnchorFormat == 3)
263     {
264       if (anchor->f.f2.XDeviceTable.offset)
265         *x += DEVICE_DELTA (anchor->f.f2.XDeviceTable, x_ppem);
266       if (anchor->f.f2.YDeviceTable.offset)
267         *y += DEVICE_DELTA (anchor->f.f2.YDeviceTable, y_ppem);
268     }
269 }
270
271 char *
272 tag_name (char *str, unsigned tag)
273 {
274   *str++ = tag >> 24;
275   *str++ = (tag >> 16) & 0xFF;
276   *str++ = (tag >> 8) & 0xFF;
277   *str++ = tag & 0xFF;
278   return str;
279 }
280
281 void
282 encode_features (char *str, int count, unsigned *features)
283 {
284   int all = 0;
285   int i;
286
287   for (i = 0; i < count; i++)
288     {
289       unsigned tag = features[i];
290
291       if (tag == 0)
292         all = 1;
293       else
294         {
295           if (i > 0)
296             *str++ = ',';
297           if (all)
298             *str++ = '~';
299           str = tag_name (str, tag);
300         }
301     }
302   if (all)
303     {
304       if (i > 1)
305         *str++ = ',';
306       *str++ = '*';
307     }
308   *str = '\0';
309 }
310
311 int
312 drive_otf (MFLTFont *font, MFLTOtfSpec *spec,
313            MFLTGlyphString *in, int from, int to,
314            MFLTGlyphString *out, MFLTGlyphAdjustment *adjustment)
315 {
316   int len = to - from;
317   int i, gidx;
318   OTF *otf = ((FontInfoOTF *) font)->otf;
319   OTF_GlyphString otf_gstring;
320   OTF_Glyph *otfg;
321   char script[4], langsys[4];
322   char *gsub_features = NULL, *gpos_features = NULL;
323
324   if (len == 0)
325     return from;
326
327   if (! otf)
328     goto simple_copy;
329   otf_gstring.glyphs = NULL;
330   if (OTF_get_table (otf, "head") < 0)
331     {
332       OTF_close (otf);
333       ((FontInfoOTF *) font)->otf = NULL;
334       goto simple_copy;
335     }
336
337   tag_name (script, spec->script);
338   tag_name (langsys, spec->langsys);
339
340   if (spec->gsub_count > 0)
341     {
342       gsub_features = alloca (6 * spec->gsub_count);
343       if (gsub_features)
344         {
345           if (OTF_check_table (otf, "GSUB") < 0)
346             gsub_features = NULL;
347           else
348             encode_features (gsub_features, spec->gsub_count, spec->gsub);
349         }
350     }
351   if (spec->gpos_count)
352     {
353       gpos_features = alloca (6 * spec->gpos_count);
354       if (gpos_features)
355         {
356           if (OTF_check_table (otf, "GPOS") < 0)
357             gpos_features = NULL;
358           else
359             encode_features (gpos_features, spec->gpos_count, spec->gpos);
360         }
361     }
362
363   otf_gstring.size = otf_gstring.used = len;
364   otf_gstring.glyphs = (OTF_Glyph *) malloc (sizeof (OTF_Glyph) * len);
365   memset (otf_gstring.glyphs, 0, sizeof (OTF_Glyph) * len);
366   for (i = 0; i < len; i++)
367     {
368       otf_gstring.glyphs[i].c = in->glyphs[from + i].c;
369       otf_gstring.glyphs[i].glyph_id = in->glyphs[from + i].code;
370     }
371
372   OTF_drive_gdef (otf, &otf_gstring);
373   gidx = out->used;
374
375   if (gsub_features)
376     {
377       if (OTF_drive_gsub (otf, &otf_gstring, script, langsys, gsub_features)
378           < 0)
379         goto simple_copy;
380       if (out->allocated < out->used + otf_gstring.used)
381         return -2;
382       for (i = 0, otfg = otf_gstring.glyphs; i < otf_gstring.used; i++, otfg++)
383         {
384           MFLTGlyph *g = out->glyphs + out->used;
385           int j;
386
387           *g = in->glyphs[from + otfg->f.index.from];
388           g->c = 0;
389           for (j = from + otfg->f.index.from; j <= from + otfg->f.index.to; j++)
390             if (in->glyphs[j].code == otfg->glyph_id)
391               {
392                 g->c = in->glyphs[j].c;
393                 break;
394               }
395           g->code = otfg->glyph_id;
396           out->used++;
397         }
398     }
399   else
400     {
401       if (out->allocated < out->used + len)
402         return -2;
403       for (i = 0; i < len; i++)
404         out->glyphs[out->used++] = in->glyphs[from + i];
405     }
406
407   font->get_metric (font, out, gidx, out->used);
408
409   if (gpos_features)
410     {
411       FT_Face face;
412       MFLTGlyph *base = NULL, *mark = NULL, *g;
413       int x_ppem, y_ppem, x_scale, y_scale;
414
415       if (OTF_drive_gpos (otf, &otf_gstring, script, langsys, gpos_features)
416           < 0)
417         return to;
418
419       face = ((FontInfo *) font)->face;
420       x_ppem = face->size->metrics.x_ppem;
421       y_ppem = face->size->metrics.y_ppem;
422       x_scale = face->size->metrics.x_scale;
423       y_scale = face->size->metrics.y_scale;
424
425       for (i = 0, otfg = otf_gstring.glyphs, g = out->glyphs + gidx;
426            i < otf_gstring.used; i++, otfg++, g++)
427         {
428           MFLTGlyph *prev;
429
430           if (! otfg->glyph_id)
431             continue;
432           switch (otfg->positioning_type)
433             {
434             case 0:
435               break;
436             case 1: case 2:
437               {
438                 int format = otfg->f.f1.format;
439
440                 if (format & OTF_XPlacement)
441                   adjustment[i].xoff
442                     = otfg->f.f1.value->XPlacement * x_scale / 0x10000;
443                 if (format & OTF_XPlaDevice)
444                   adjustment[i].xoff
445                     += DEVICE_DELTA (otfg->f.f1.value->XPlaDevice, x_ppem);
446                 if (format & OTF_YPlacement)
447                   adjustment[i].yoff
448                     = - (otfg->f.f1.value->YPlacement * y_scale / 0x10000);
449                 if (format & OTF_YPlaDevice)
450                   adjustment[i].yoff
451                     -= DEVICE_DELTA (otfg->f.f1.value->YPlaDevice, y_ppem);
452                 if (format & OTF_XAdvance)
453                   adjustment[i].xadv
454                     += otfg->f.f1.value->XAdvance * x_scale / 0x10000;
455                 if (format & OTF_XAdvDevice)
456                   adjustment[i].xadv
457                     += DEVICE_DELTA (otfg->f.f1.value->XAdvDevice, x_ppem);
458                 if (format & OTF_YAdvance)
459                   adjustment[i].yadv
460                     += otfg->f.f1.value->YAdvance * y_scale / 0x10000;
461                 if (format & OTF_YAdvDevice)
462                   adjustment[i].yadv
463                     += DEVICE_DELTA (otfg->f.f1.value->YAdvDevice, y_ppem);
464                 adjustment[i].set = 1;
465               }
466               break;
467             case 3:
468               /* Not yet supported.  */
469               break;
470             case 4: case 5:
471               if (! base)
472                 break;
473               prev = base;
474               goto label_adjust_anchor;
475             default:            /* i.e. case 6 */
476               if (! mark)
477                 break;
478               prev = mark;
479
480             label_adjust_anchor:
481               {
482                 int base_x, base_y, mark_x, mark_y;
483
484                 base_x = otfg->f.f4.base_anchor->XCoordinate * x_scale / 0x10000;
485                 base_y = otfg->f.f4.base_anchor->YCoordinate * y_scale / 0x10000;
486                 mark_x = otfg->f.f4.mark_anchor->XCoordinate * x_scale / 0x10000;
487                 mark_y = otfg->f.f4.mark_anchor->YCoordinate * y_scale / 0x10000;;
488
489                 if (otfg->f.f4.base_anchor->AnchorFormat != 1)
490                   adjust_anchor (otfg->f.f4.base_anchor, face, prev->code,
491                                  x_ppem, y_ppem, &base_x, &base_y);
492                 if (otfg->f.f4.mark_anchor->AnchorFormat != 1)
493                   adjust_anchor (otfg->f.f4.mark_anchor, face, g->code,
494                                  x_ppem, y_ppem, &mark_x, &mark_y);
495                 adjustment[i].xoff = (base_x - mark_x);
496                 adjustment[i].yoff = - (base_y - mark_y);
497                 adjustment[i].back = (g - prev);
498                 adjustment[i].set = 1;
499               }
500             }
501           if (otfg->GlyphClass == OTF_GlyphClass0)
502             base = mark = g;
503           else if (otfg->GlyphClass == OTF_GlyphClassMark)
504             mark = g;
505           else
506             base = g;
507         }
508     }
509   free (otf_gstring.glyphs);
510   return to;
511
512  simple_copy:
513   font->get_metric (font, in, from, to);
514   for (i = 0; i < len; i++)
515     {
516       MFLTGlyph *g = in->glyphs + (from + i);
517
518       out->glyphs[out->used++] = *g;
519     }
520   if (otf_gstring.glyphs)
521     free (otf_gstring.glyphs);
522   return to;
523 }
524
525 MFLTFont *
526 open_font (char *fontname, char **err)
527 {
528   FT_Face face = new_face (fontname, err);
529   FontInfoOTF *font_info;
530
531   if (! face)
532     return NULL;
533   font_info = malloc (sizeof (FontInfoOTF));
534   font_info->face = face;
535   font_info->otf = OTF_open_ft_face (face);
536   return ((MFLTFont *) font_info);
537 }
538
539 void
540 close_font (MFLTFont *font)
541 {
542   FontInfoOTF *font_info = (FontInfoOTF *) font;
543
544   OTF_close (font_info->otf);
545   FT_Done_Face (font_info->face);
546   free (font_info);
547 }
548
549 #else  /* FLT_HB */
550
551 typedef struct {
552   HB_UShort count;
553   HB_UShort *indices;
554 } FeatureInfo;
555
556 typedef struct {
557   FeatureInfo gsub;
558   FeatureInfo gpos;
559 } GsubGposInfo;
560
561 typedef struct {
562   MFLTFont font;
563   FT_Face face;
564   HB_FontRec hb_font;
565   HB_StreamRec gdef_stream;
566   HB_GDEF gdef;
567   HB_GSUB gsub;
568   HB_GPOS gpos;
569   MPlist *otf_spec_cache;
570 } FontInfoHB;
571
572 HB_Bool
573 convertStringToGlyphIndices (HB_Font font, const HB_UChar16 *string,
574                              hb_uint32 length, HB_Glyph *glyphs,
575                              hb_uint32 *numGlyphs, HB_Bool rightToLeft)
576 {
577   return TRUE;
578 }
579
580 void
581 getGlyphAdvances (HB_Font font, const HB_Glyph *glyphs, hb_uint32 numGlyphs,
582                   HB_Fixed *advances, int flags /*HB_ShaperFlag*/)
583 {
584   hb_uint32 i;
585
586   for (i = 0; i < numGlyphs; i++)
587     advances[i] =0;
588 }
589
590 HB_Bool
591 canRender (HB_Font font, const HB_UChar16 *string, hb_uint32 length)
592 {
593   return TRUE;
594 }
595
596 HB_Error
597 getPointInOutline (HB_Font font, HB_Glyph glyph, int flags /*HB_ShaperFlag*/,
598                    hb_uint32 point, HB_Fixed *xpos, HB_Fixed *ypos,
599                    hb_uint32 *nPoints)
600 {
601   FT_Face face = font->faceData;
602   HB_Error error;
603
604   if ((error = (HB_Error) FT_Load_Glyph (face, glyph, flags)))
605     return error;
606   if (face->glyph->format != ft_glyph_format_outline)
607     return (HB_Error) HB_Err_Invalid_GPOS_SubTable;
608   *nPoints = face->glyph->outline.n_points;
609   if (! *nPoints)
610     return HB_Err_Ok;
611   if (point > *nPoints)
612     return (HB_Error) HB_Err_Invalid_GPOS_SubTable;
613
614   *xpos = face->glyph->outline.points[point].x;
615   *ypos = face->glyph->outline.points[point].y;
616
617   return HB_Err_Ok;
618 }
619
620 void
621 getGlyphMetrics (HB_Font font, HB_Glyph glyph, HB_GlyphMetrics *metrics)
622 {
623 }
624
625 HB_Fixed
626 getFontMetric (HB_Font font, HB_FontMetric metric)
627 {
628   return 0;
629 }
630
631 #define MAKE_TAG(name) ((((FT_ULong) (name)[0]) << 24)          \
632                         | (((FT_ULong) (name)[1]) << 16)        \
633                         | (((FT_ULong) (name)[2]) << 8)         \
634                         | (name)[3])
635
636 HB_Error
637 new_stream (FT_Face face, char *tagname, HB_Stream stream)
638 {
639   FT_ULong tag = MAKE_TAG (tagname);
640   FT_ULong len;
641   FT_Byte *buf;
642
643   if (! FT_IS_SFNT (face))
644     return HB_Err_Invalid_Argument;
645   len = 0;
646   if (FT_Load_Sfnt_Table (face, tag, 0, NULL, &len))
647     return HB_Err_Table_Missing;
648   buf = malloc (len);
649   if (! buf)
650     return HB_Err_Out_Of_Memory;
651   if (FT_Load_Sfnt_Table (face, tag, 0, buf, &len))
652     {
653       free (buf);
654       return HB_Err_Table_Missing;
655     }
656   stream->base = (HB_Byte *) buf;
657   stream->size = len;
658   stream->pos = 0;
659   stream->cursor = NULL;
660
661   return HB_Err_Ok;
662 }
663
664 HB_Error
665 load_gdef (FontInfoHB *font_info)
666 {
667   HB_Error err;
668
669   if (! font_info->gdef_stream.base)
670     {
671       err = new_stream ((FT_Face) font_info->hb_font.faceData, "GDEF",
672                         &font_info->gdef_stream);
673       if (err != HB_Err_Ok)
674         return err;
675     }
676   return HB_Load_GDEF_Table (&font_info->gdef_stream, &font_info->gdef);
677 }
678
679 HB_Error
680 load_gsub (FontInfoHB *font_info)
681 {
682   HB_Error err;
683   HB_StreamRec stream;
684   HB_LookupList *lookup_list;
685   int i;
686
687   if (! font_info->gdef)
688     {
689       if ((err = load_gdef (font_info)) != HB_Err_Ok)
690         return err;
691     }
692   err = new_stream ((FT_Face) font_info->hb_font.faceData, "GSUB", &stream);
693   if (err != HB_Err_Ok)
694     return err;
695   err = HB_Load_GSUB_Table (&stream, &font_info->gsub,
696                             font_info->gdef, &font_info->gdef_stream);
697   free (stream.base);
698   lookup_list = &font_info->gsub->LookupList;
699   for (i = 0; i < lookup_list->LookupCount; i++)
700     lookup_list->Properties[i] = HB_GLYPH_PROPERTIES_UNKNOWN;
701   return err;
702 }
703
704 HB_Error
705 load_gpos (FontInfoHB *font_info)
706 {
707   HB_Error err;
708   HB_StreamRec stream;
709   HB_LookupList *lookup_list;
710   int i;
711
712   if (! font_info->gdef)
713     {
714       if ((err = load_gdef (font_info)) != HB_Err_Ok)
715         return err;
716     }
717   err = new_stream ((FT_Face) font_info->hb_font.faceData, "GPOS", &stream);
718   if (err != HB_Err_Ok)
719     return err;
720   err = HB_Load_GPOS_Table (&stream, &font_info->gpos,
721                             font_info->gdef, &font_info->gdef_stream);
722   free (stream.base);
723   lookup_list = &font_info->gpos->LookupList;
724   for (i = 0; i < lookup_list->LookupCount; i++)
725     lookup_list->Properties[i] = HB_GLYPH_PROPERTIES_UNKNOWN;
726   return err;
727 }
728
729 const HB_FontClass hb_fontClass = {
730     convertStringToGlyphIndices, getGlyphAdvances, canRender,
731     getPointInOutline, getGlyphMetrics, getFontMetric
732 };
733
734 void
735 setup_features (int gsubp, FontInfoHB *font_info, MFLTOtfSpec *spec,
736                 FeatureInfo *info)
737 {
738   int count, preordered;
739   unsigned int *features;
740   FT_UShort script, langsys;
741   FT_UShort req_feature, index;
742   FT_UInt *feature_list;
743   int i, j, k;
744   HB_Error err;
745
746   if (gsubp)
747     {
748       if (! font_info->gsub)
749         {
750           if (load_gsub (font_info) != HB_Err_Ok)
751             return;
752         }
753       if (HB_GSUB_Select_Script (font_info->gsub, spec->script, &script)
754           != HB_Err_Ok)
755         return;
756       if (spec->langsys)
757         {
758           if (HB_GSUB_Select_Language (font_info->gsub, spec->langsys,
759                                        script, &langsys, &req_feature)
760               != HB_Err_Ok)
761             return;
762         }
763       else
764         langsys = req_feature = 0xFFFF;
765       count = spec->gsub_count;
766       features = spec->gsub;
767     }
768   else
769     {
770       if (! font_info->gpos)
771         {
772           if (load_gpos (font_info) != HB_Err_Ok)
773             return;
774         }
775       if (HB_GPOS_Select_Script (font_info->gpos, spec->script, &script)
776           != HB_Err_Ok)
777         return;
778       if (spec->langsys)
779         {
780           if (HB_GPOS_Select_Language (font_info->gpos, spec->langsys,
781                                        script, &langsys, &req_feature)
782               != HB_Err_Ok)
783             return;
784         }
785       else
786         langsys = req_feature = 0xFFFF;
787       count = spec->gpos_count;
788       features = spec->gpos;
789     }
790   feature_list = NULL;
791   for (preordered = 0; preordered < count; preordered++)
792     if (features[preordered] == 0)
793       {
794         if ((gsubp ? HB_GSUB_Query_Features (font_info->gsub, script, langsys,
795                                              &feature_list)
796              : HB_GPOS_Query_Features (font_info->gpos, script, langsys,
797                                        &feature_list))
798             != HB_Err_Ok)
799           return;
800         break;
801       }
802   if (feature_list)
803     for (i = 0; feature_list[i]; i++);
804   else
805     i = preordered;
806   info->indices = malloc (sizeof (FT_UShort) * ((req_feature != 0xFFFF) + i));
807   i = 0;
808   if (req_feature != 0xFFFF)
809     info->indices[i++] = req_feature;
810   for (j = 0; j < preordered; j++)
811     if ((gsubp ? HB_GSUB_Select_Feature (font_info->gsub, features[j],
812                                          script, langsys, &index)
813          : HB_GPOS_Select_Feature (font_info->gpos, features[j],
814                                    script, langsys, &index))
815         == HB_Err_Ok)
816       info->indices[i++] = index;
817   if (feature_list)
818     for (j = 0; feature_list[j]; j++)
819       {
820         for (k = preordered + 1; k < count; k++)
821           if (feature_list[j] == features[k])
822             break;
823         if (k == count
824             && ((gsubp
825                  ? HB_GSUB_Select_Feature (font_info->gsub, feature_list[j],
826                                            script, langsys, &index)
827                  : HB_GPOS_Select_Feature (font_info->gpos, feature_list[j],
828                                            script, langsys, &index))
829                 == HB_Err_Ok))
830           info->indices[i++] = index;
831       }
832   info->count = i;
833 }
834
835 GsubGposInfo *
836 setup_otf_spec (MFLTFont *font, MFLTOtfSpec *spec)
837 {
838   FontInfoHB *font_info = (FontInfoHB *) font;
839   GsubGposInfo *ginfo;
840
841   if (spec->gsub_count + spec->gpos_count == 0)
842     return NULL;
843   ginfo = mplist_get (font_info->otf_spec_cache, spec->sym);
844   if (ginfo)
845     return (ginfo->gsub.count + ginfo->gpos.count > 0 ? ginfo : NULL);
846   ginfo = calloc (1, sizeof (GsubGposInfo));
847   mplist_push (font_info->otf_spec_cache, spec->sym, ginfo);
848   setup_features (1, font_info, spec, &(ginfo->gsub));
849   setup_features (0, font_info, spec, &(ginfo->gpos));
850   return ginfo;
851 }
852
853 int
854 drive_otf (MFLTFont *font, MFLTOtfSpec *spec,
855            MFLTGlyphString *in, int from, int to,
856            MFLTGlyphString *out, MFLTGlyphAdjustment *adjustment)
857 {
858   FontInfoHB *font_info = (FontInfoHB *) font;
859   int len = to - from;
860   int i;
861   HB_Buffer buf;
862   GsubGposInfo *ginfo;
863   HB_UShort *apply_order_save;
864   HB_UShort apply_count_save;
865   int gpos_applied = 0;
866   HB_Error err;
867
868   if (len == 0)
869     return from;
870
871   buf = NULL;
872   if (hb_buffer_new (&buf) != FT_Err_Ok)
873     goto simple_copy;
874   for (i = from; i < to; i++)
875     {
876       if (hb_buffer_add_glyph (buf, in->glyphs[i].code, 0, i) != FT_Err_Ok)
877         goto simple_copy;
878     }
879   ginfo = setup_otf_spec (font, spec);
880   if (! ginfo)
881     goto simple_copy;
882   if (ginfo->gsub.count > 0)
883     {
884       if (! font_info->gdef
885           && load_gdef (font_info) != HB_Err_Ok)
886         goto simple_copy;
887       apply_order_save = font_info->gsub->FeatureList.ApplyOrder;
888       apply_count_save = font_info->gsub->FeatureList.ApplyCount;
889       font_info->gsub->FeatureList.ApplyOrder = ginfo->gsub.indices;
890       font_info->gsub->FeatureList.ApplyCount = ginfo->gsub.count;
891       err = HB_GSUB_Apply_String (font_info->gsub, buf);
892       font_info->gsub->FeatureList.ApplyOrder = apply_order_save;
893       font_info->gsub->FeatureList.ApplyCount = apply_count_save;
894       if (err != HB_Err_Ok && err != HB_Err_Not_Covered)
895         goto simple_copy;
896       if (out->used + buf->in_length > out->allocated)
897         return -2;
898     }
899
900   if (ginfo->gpos.count > 0
901       && (font_info->gpos || load_gpos (font_info) == HB_Err_Ok))
902     {
903       apply_order_save = font_info->gpos->FeatureList.ApplyOrder;
904       apply_count_save = font_info->gpos->FeatureList.ApplyCount;
905       font_info->gpos->FeatureList.ApplyOrder = ginfo->gpos.indices;
906       font_info->gpos->FeatureList.ApplyCount = ginfo->gpos.count;
907       err = HB_GPOS_Apply_String (&font_info->hb_font, font_info->gpos,
908                                   FT_LOAD_DEFAULT, buf, FALSE, FALSE);
909       font_info->gpos->FeatureList.ApplyOrder = apply_order_save;
910       font_info->gpos->FeatureList.ApplyCount = apply_count_save;
911       if (err == HB_Err_Ok)
912         gpos_applied = 1;
913     }
914
915   for (i = 0; i < buf->in_length; i++)
916     {
917       HB_GlyphItem hg = buf->in_string + i;
918       HB_Position pos = buf->positions + i;
919       MFLTGlyph *g;
920
921       out->glyphs[out->used] = in->glyphs[hg->cluster];
922       g = out->glyphs + out->used++;
923       if (g->code != hg->gindex)
924         g->c = 0, g->code = hg->gindex;
925       adjustment[i].set = gpos_applied;
926       if (gpos_applied)
927         {
928           adjustment[i].xadv = pos->x_advance;
929           adjustment[i].yadv = pos->y_advance;
930           adjustment[i].xoff = pos->x_pos;
931           adjustment[i].yoff = - pos->y_pos;
932           adjustment[i].back = pos->back;
933           adjustment[i].advance_is_absolute = pos->new_advance;
934         }
935     }
936   return to;
937
938  simple_copy:
939   if (buf)
940     hb_buffer_free (buf);
941   for (i = 0; i < len; i++)
942     out->glyphs[out->used++] = in->glyphs[from + i];
943   return to;
944 }
945
946 MFLTFont *
947 open_font (char *fontname, char **err)
948 {
949   FT_Face face = new_face (fontname, err);
950   FontInfoHB *font_info;
951
952   if (! face)
953     return NULL;
954   font_info = calloc (1, sizeof (FontInfoHB));
955   font_info->face = face;
956   font_info->hb_font.klass = &hb_fontClass;
957   font_info->hb_font.faceData = face;
958   font_info->hb_font.userData = NULL;
959   font_info->hb_font.x_ppem = face->size->metrics.x_ppem;
960   font_info->hb_font.x_scale = face->size->metrics.x_scale;
961   font_info->hb_font.y_scale = face->size->metrics.y_scale;
962   font_info->hb_font.y_ppem = face->size->metrics.y_ppem;
963   font_info->otf_spec_cache = mplist ();
964   return ((MFLTFont *) font_info);
965 }
966
967 void
968 close_font (MFLTFont *font)
969 {
970   FontInfoHB *font_info = (FontInfoHB *) font;
971   MPlist *p;
972
973   if (font_info->gdef)
974     {
975       HB_Done_GDEF_Table (font_info->gdef);
976       free (font_info->gdef_stream.base);
977     }
978   if (font_info->gsub)
979     HB_Done_GSUB_Table (font_info->gsub);
980   if (font_info->gpos)
981     HB_Done_GPOS_Table (font_info->gpos);
982   FT_Done_Face ((FT_Face) (font_info->hb_font.faceData));
983   for (p = font_info->otf_spec_cache; mplist_key (p) != Mnil;
984        p = mplist_next (p))
985     {
986       GsubGposInfo *ginfo = mplist_value (p);
987
988       if (ginfo->gsub.count > 0)
989         free (ginfo->gsub.indices);
990       if (ginfo->gpos.count > 0)
991         free (ginfo->gpos.indices);
992     }
993   m17n_object_unref (font_info->otf_spec_cache);
994   free (font_info);
995 }
996
997 #endif
998
999 #else  /* (defined (FLT_PANGO) */
1000
1001 typedef struct {
1002   int count;
1003   guint *indices;
1004   PangoOTRuleset *ruleset;
1005 } FeatureInfo;
1006
1007 typedef struct {
1008   FeatureInfo gsub;
1009   FeatureInfo gpos;
1010 } GsubGposInfo;
1011
1012 typedef struct {
1013   MFLTFont font;
1014   PangoFontMap *fontmap;
1015   PangoContext *context;
1016   PangoFcFont *pango_font;
1017   MPlist *otf_spec_cache;
1018 } FontInfoPango;
1019
1020 int
1021 get_glyph_id (MFLTFont *font, MFLTGlyph *g)
1022 {
1023   FontInfoPango *font_info = (FontInfoPango *) font;
1024
1025   g->code = pango_fc_font_get_glyph (font_info->pango_font, g->c);
1026   return (g->code ? 0 : -1);
1027 }
1028
1029 int
1030 get_metric (MFLTFont *font, MFLTGlyphString *gstring, int from, int to)
1031 {
1032   FontInfoPango *font_info = (FontInfoPango *) font;
1033   int i;
1034
1035   for (i = from; i < to; i++)
1036     {
1037       MFLTGlyph *g = gstring->glyphs + from;
1038       PangoRectangle inc, logical;
1039
1040       pango_font_get_glyph_extents (PANGO_FONT (font_info->pango_font),
1041                                     gstring->glyphs[i].code, &inc, &logical);
1042       g->lbearing = inc.x;
1043       g->rbearing = inc.x + inc.width;
1044       g->xadv = logical.width;
1045       g->yadv = 0;
1046       g->ascent = - inc.y;
1047       g->descent = inc.height + inc.y;
1048     }
1049 }
1050
1051 #ifndef PANGO_OT_DEFAULT_LANGUAGE
1052 #define PANGO_OT_DEFAULT_LANGUAGE ((guint) 0xFFFF)
1053 #endif
1054 #ifndef PANGO_OT_ALL_GLYPHS
1055 #define PANGO_OT_ALL_GLYPHS ((guint) 0xFFFF)
1056 #endif
1057
1058 void
1059 setup_features (PangoOTTableType type, FontInfoPango *font_info,
1060                 MFLTOtfSpec *spec, FeatureInfo *info)
1061 {
1062   int count, preordered;
1063   unsigned int *features;
1064   guint script, langsys;
1065   guint req_feature, index;
1066   guint *feature_list;
1067   int i, j, k;
1068   int err;
1069   FT_Face face;
1070   PangoOTInfo *ot_info; 
1071
1072   face = pango_fc_font_lock_face (font_info->pango_font);
1073   ot_info = pango_ot_info_get (face);
1074   pango_fc_font_unlock_face (font_info->pango_font);
1075
1076   if (! pango_ot_info_find_script (ot_info, type, spec->script, &script))
1077     return;
1078   if (spec->langsys)
1079     {
1080       if (! pango_ot_info_find_language (ot_info, type, script,
1081                                          spec->langsys,
1082                                          &langsys, &req_feature))
1083         return;
1084     }
1085   else
1086     {
1087       langsys = PANGO_OT_DEFAULT_LANGUAGE;
1088       req_feature = 0xFFFF;
1089     }
1090   if (type == PANGO_OT_TABLE_GSUB)
1091     {
1092       count = spec->gsub_count;
1093       features = spec->gsub;
1094     }
1095   else
1096     {
1097       count = spec->gpos_count;
1098       features = spec->gpos;
1099     }
1100   feature_list = NULL;
1101   for (preordered = 0; preordered < count; preordered++)
1102     if (features[preordered] == 0)
1103       {
1104         feature_list = pango_ot_info_list_features (ot_info, type, 0,
1105                                                     script, langsys);
1106         if (! feature_list)
1107           return;
1108         break;
1109       }
1110   if (feature_list)
1111     for (i = 0; feature_list[i]; i++);
1112   else
1113     i = preordered;
1114   info->indices = malloc (sizeof (guint) * ((req_feature != 0xFFFF) + i));
1115   i = 0;
1116   if (req_feature != 0xFFFF)
1117     info->indices[i++] = req_feature;
1118   for (j = 0; j < preordered; j++)
1119     if (pango_ot_info_find_feature (ot_info, type, features[j],
1120                                     script, langsys, &index))
1121       info->indices[i++] = index;
1122   if (feature_list)
1123     for (j = 0; feature_list[j]; j++)
1124       {
1125         for (k = preordered + 1; k < count; k++)
1126           if (feature_list[j] == features[k])
1127             break;
1128         if (k == count
1129             && pango_ot_info_find_feature (ot_info, type, feature_list[j],
1130                                            script, langsys, &index))
1131           info->indices[i++] = index;
1132       }
1133   info->count = i;
1134   info->ruleset = pango_ot_ruleset_new (ot_info);
1135   for (i = 0; i < info->count; i++)
1136     pango_ot_ruleset_add_feature (info->ruleset, type, info->indices[i],
1137                                   PANGO_OT_ALL_GLYPHS);
1138 }
1139
1140 GsubGposInfo *
1141 setup_otf_spec (FontInfoPango *font_info, MFLTOtfSpec *spec)
1142 {
1143   GsubGposInfo *ginfo;
1144
1145   if (spec->gsub_count + spec->gpos_count == 0)
1146     return NULL;
1147   ginfo = mplist_get (font_info->otf_spec_cache, spec->sym);
1148   if (ginfo)
1149     return (ginfo->gsub.count + ginfo->gpos.count > 0 ? ginfo : NULL);
1150   ginfo = calloc (1, sizeof (GsubGposInfo));
1151   mplist_push (font_info->otf_spec_cache, spec->sym, ginfo);
1152   setup_features (PANGO_OT_TABLE_GSUB, font_info, spec, &(ginfo->gsub));
1153   setup_features (PANGO_OT_TABLE_GPOS, font_info, spec, &(ginfo->gpos));
1154   return ginfo;
1155 }
1156
1157 int
1158 drive_otf (MFLTFont *font, MFLTOtfSpec *spec,
1159            MFLTGlyphString *in, int from, int to,
1160            MFLTGlyphString *out, MFLTGlyphAdjustment *adjustment)
1161 {
1162   FontInfoPango *font_info = (FontInfoPango *) font;
1163   PangoOTBuffer *buffer;
1164   GsubGposInfo *ginfo;
1165   PangoGlyphString *glyphs;
1166   int i;
1167
1168   buffer = pango_ot_buffer_new (font_info->pango_font);
1169   for (i = from; i < to; i++)
1170     pango_ot_buffer_add_glyph (buffer, in->glyphs[i].code, 0, i);
1171   ginfo = setup_otf_spec (font_info, spec);
1172   if (! ginfo)
1173     goto simple_copy;
1174   if (ginfo->gsub.count > 0)
1175     pango_ot_ruleset_substitute (ginfo->gsub.ruleset, buffer);
1176   if (ginfo->gpos.count > 0)
1177     pango_ot_ruleset_position (ginfo->gpos.ruleset, buffer);
1178   glyphs = pango_glyph_string_new ();
1179   pango_ot_buffer_output (buffer, glyphs);
1180   for (i = 0; i < glyphs->num_glyphs; i++)
1181     {
1182       PangoGlyphInfo *glyph_info = glyphs->glyphs + i;
1183       MFLTGlyph *g;
1184
1185       out->glyphs[out->used] = in->glyphs[glyphs->log_clusters[i]];
1186       g = out->glyphs + out->used++;
1187       if (g->code != glyph_info->glyph)
1188         g->c = 0, g->code = glyph_info->glyph;
1189       g->xoff = glyph_info->geometry.x_offset;
1190       g->yoff = glyph_info->geometry.y_offset;
1191       g->xadv = glyph_info->geometry.width;
1192       g->yadv = 0;
1193       adjustment[i].set = 0;
1194     }
1195   pango_ot_buffer_destroy (buffer);
1196   pango_glyph_string_free (glyphs);
1197   return to;
1198
1199  simple_copy:
1200   pango_ot_buffer_destroy (buffer);
1201   for (i = from; i < to; i++)
1202     out->glyphs[out->used++] = in->glyphs[i];
1203   return to;
1204 }
1205
1206
1207 MFLTFont *
1208 open_font (char *fontname, char **err)
1209 {
1210   FontInfoPango *font_info = NULL;
1211   PangoFontMap *fontmap;
1212   PangoContext *context;
1213   PangoFontDescription *desc;
1214   PangoFont *pango_font;
1215   char *family;
1216   int size;
1217   double pango_size;
1218   
1219   if (parse_font_name (fontname, &family, &size, err) < 0)
1220     return NULL;
1221   desc = pango_font_description_new ();
1222   pango_font_description_set_family (desc, family);
1223   free (family);
1224   pango_size = size * PANGO_SCALE;
1225   pango_font_description_set_absolute_size (desc, pango_size);
1226
1227   fontmap = pango_ft2_font_map_new ();
1228   context = pango_context_new ();
1229   pango_context_set_font_map (context, fontmap);
1230   pango_font = pango_context_load_font (context, desc);
1231   pango_font_description_free (desc);
1232   if (pango_font)
1233     {
1234       font_info = calloc (1, sizeof (FontInfoPango));
1235       font_info->fontmap = fontmap;
1236       font_info->context = context;
1237       font_info->pango_font = PANGO_FC_FONT (pango_font);
1238       font_info->otf_spec_cache = mplist ();
1239     }
1240   else
1241     {
1242       g_object_unref (context);
1243       g_object_unref (fontmap);
1244     }
1245   return (MFLTFont *) font_info;
1246 }
1247
1248 void
1249 close_font (MFLTFont *font)
1250 {
1251   FontInfoPango *font_info = (FontInfoPango *) font;
1252
1253   g_object_unref (font_info->context);
1254   g_object_unref (font_info->fontmap);
1255 }
1256
1257 int
1258 flt (MText *mt, int from, int to, MFLTFont *font, char *flt_name)
1259 {
1260   MFLTGlyphString gstring;
1261   int len = to - from;
1262   int i;
1263
1264   memset (&gstring, 0, sizeof (MFLTGlyphString));
1265   gstring.glyph_size = sizeof (MFLTGlyph);
1266   gstring.allocated = len * 2;
1267   gstring.glyphs = alloca (sizeof (MFLTGlyph) * gstring.allocated);
1268   for (i = 0; i < len; i++)
1269     gstring.glyphs[i].c = mtext_ref_char (mt, from + i);
1270   gstring.used = len;
1271   return mflt_run (&gstring, 0, len, font, msymbol (flt_name));
1272 }
1273
1274 #endif
1275
1276 int
1277 main (int argc, char **argv)
1278 {
1279   char *font_name, *flt_name;
1280   char *err;
1281   MText *mt;
1282   MFLTFont *font;
1283   int len, i, j;
1284
1285   if (argc < 3)
1286     {
1287       fprintf (stderr, "Usage: flt FONT-NAME FLT-NAME < TEXT-FILE\n");
1288       exit (1);
1289     }
1290
1291   font_name = argv[1];
1292   flt_name = argv[2];
1293
1294   FT_Init_FreeType (&ft_library);
1295   M17N_INIT ();
1296   font = open_font (font_name, &err);
1297   if (! font)
1298     {
1299       fprintf (stderr, "Font error: %s: %s\n", argv[1], err);
1300       exit (1);
1301     }
1302   font->get_glyph_id = get_glyph_id;
1303   font->get_metric = get_metric;
1304   font->drive_otf = drive_otf;
1305
1306   mt = mconv_decode_stream (msymbol ("utf-8"), stdin);
1307   len = mtext_len (mt);
1308   for (i = 0, j = mtext_character (mt, i, len, '\n'); i < len;
1309        i = j + 1, j = mtext_character (mt, i, len, '\n'))
1310     {
1311       if (j < 0)
1312         j = len;
1313       if (flt (mt, i, j, font, flt_name) < 0)
1314         {
1315           fprintf (stderr, "Error in FLT processing.\n");
1316           exit (1);
1317         }
1318     }
1319   m17n_object_unref (mt);
1320   close_font (font);
1321   M17N_FINI ();
1322   return 0;
1323 }