(chise_ds_open_feature_table): Abolished.
[chise/libchise.git] / sample.c
1 #include <chise.h>
2
3 char db_dir[] = "/usr/local/lib/chise/char-db";
4
5 int
6 test_map_func (CHISE_Char_ID cid, CHISE_Feature_Table *db,
7                CHISE_Value *valdatum)
8 {
9   unsigned char buf[256];
10
11   printf ("(flags = %x)\n", valdatum->flags);
12   if (chise_value_size (valdatum) < 256)
13     {
14       strncpy (buf, chise_value_data (valdatum),
15                chise_value_size (valdatum));
16       buf[chise_value_size (valdatum)] = '\0';
17       printf ("#x%04X\t(%c)\t%s\n", cid, cid, buf);
18     }
19   else
20     printf ("#x%04X\t(%c)\t%s\n",
21             cid, cid, chise_value_to_c_string (valdatum));
22   return 0;
23 }
24
25 int
26 main (int argc, char* argv[])
27 {
28   CHISE_DS *ds;
29   CHISE_CCS ccs_daikanwa;
30   CHISE_Feature ft_ideographic_structure;
31   CHISE_Feature ft_ascii;
32   int modemask = 0755; /* rwxr-xr-x */
33   DBTYPE real_subtype = DB_HASH;
34   int status;
35   CHISE_Char_ID char_id;
36   CHISE_Value value;
37   unsigned char buf[1024];
38
39   /* open a data-source */
40   ds = chise_open_data_source (CHISE_DS_Berkeley_DB, db_dir,
41                                real_subtype, modemask);
42   if (ds == NULL)
43     {
44       printf ("Can't open data source\n");
45       return -1;
46     }
47
48
49   /*
50    * get a character corresponding with Daikanwa number 364
51    */
52
53   /* setup a decoding-table */
54   ccs_daikanwa
55     = chise_ds_get_ccs (ds, "=daikanwa");
56   if (ccs_daikanwa == NULL)
57     {
58       printf ("Can't open CCS =daikanwa\n");
59       chise_ds_close (ds);
60       return -1;
61     }
62   
63   /* get a character from the decoding-table */
64   char_id = chise_ccs_decode (ccs_daikanwa, 364);
65
66
67   /* get a feature-value of the character */
68   ft_ideographic_structure
69     = chise_ds_get_feature (ds, "ideographic-structure");
70   if (chise_char_gets_feature_value
71       (char_id, ft_ideographic_structure, buf, sizeof (buf)) != NULL)
72     printf ("#x%X => %s\n", char_id, buf);
73   else
74     printf ("#x%X\n", char_id);
75
76   ft_ascii = chise_ds_get_feature (ds, "ascii");
77   chise_char_feature_value_iterate (ft_ascii, &test_map_func);
78   chise_char_feature_value_iterate (ft_ideographic_structure, &test_map_func);
79
80   /* close the data-source */
81   chise_ds_close (ds);
82 }