update.
[chise/concord.git] / cos.c
1 /* Copyright (C) 2013 MORIOKA Tomohiko
2    This file is part of the CONCORD Library.
3
4    The CONCORD Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Lesser General Public
6    License as published by the Free Software Foundation; either
7    version 2.1 of the License, or (at your option) any later version.
8
9    The CONCORD Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Lesser General Public License for more details.
13
14    You should have received a copy of the GNU Lesser General Public
15    License along with the CONCORD Library; if not, write to the Free
16    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17    02111-1307 USA.  */
18
19 #include <stdlib.h>
20 #include "sysdep.h"
21 #include "cos-i.h"
22 #include "cos-read.h"
23 #include "cos-print.h"
24
25 const char concord_db_format_version[] = CONCORD_DB_FORMAT_VERSION;
26 const char concord_db_dir[] = CONCORD_DB_DIR;
27 const char concord_system_db_dir[] = CONCORD_SI_DB_DIR;
28
29 CONCORD_DS concord_current_env = NULL;
30
31 int (*COS_Object_retain_function_table
32      [COS_OBJECT_TYPE_MAX - COS_Object_Type_char])
33   (COS_Object)
34   = { cos_retain_string,
35       cos_retain_symbol,
36       cos_retain_cons,
37       cos_retain_container,
38       cos_retain_sexp,
39       cos_retain_binary,
40       cos_retain_ds,
41       cos_retain_genre,
42       cos_retain_feature,
43       cos_retain_index,
44       cos_retain_db_object
45 };
46
47 int (*COS_Object_release_function_table
48      [COS_OBJECT_TYPE_MAX - COS_Object_Type_char])
49   (COS_Object)
50   = { cos_release_string,
51       cos_release_symbol,
52       cos_release_cons,
53       cos_release_container,
54       cos_release_sexp,
55       cos_release_binary,
56       cos_release_ds,
57       cos_release_genre,
58       cos_release_feature,
59       cos_release_index,
60       cos_release_db_object
61 };
62
63
64 COS_object
65 cos_make_int (COS_C_Int num)
66 {
67   return (COS_object)((COS_INT)(num << 1) | 1);
68 }
69
70 int
71 cos_int_p (COS_object obj)
72 {
73   return COS_OBJECT_INT_P (obj);
74 }
75
76 COS_C_Int
77 cos_int_value (COS_object obj)
78 {
79   if (COS_OBJECT_INT_P (obj))
80     return ((COS_INT)obj) >> 1;
81   return INTPTR_MIN;
82 }
83
84
85 COS_object
86 cos_make_char (int code)
87 {
88   return (COS_object)((COS_INT)(code << 2) | 2);
89 }
90
91 int
92 cos_char_p (COS_object obj)
93 {
94   return COS_OBJECT_CHAR_P (obj);
95 }
96
97 int
98 cos_char_id (COS_object obj)
99 {
100   if (COS_OBJECT_CHAR_P (obj))
101     return ((COS_INT)obj) >> 2;
102   return -1;
103 }
104
105
106 COS_Object
107 cos_allocate_object_0 (enum COS_Object_Type type, size_t size)
108 {
109   COS_Object obj = (COS_Object)malloc (size);
110
111   if (obj == NULL)
112     return NULL;
113
114   obj->header.prefix = COS_OBJECT_PREFIX_OBJECT;
115   obj->header.type = type;
116   obj->header.reference_count = 0;
117
118   return obj;
119 }
120
121 COS_Object
122 cos_retain_object (COS_Object obj)
123 {
124   if (COS_OBJECT_P (obj))
125     {
126       obj->header.reference_count++;
127       (*COS_Object_retain_function_table
128        [((COS_Object)obj)->header.type
129         - COS_FAT_OBJECT_TYPE_MIN])(obj);
130     }
131   return obj;
132 }
133
134 int
135 cos_release_object (COS_object obj)
136 {
137   if (COS_OBJECT_P (obj))
138     {
139       ((COS_Object)obj)->header.reference_count--;
140
141       if ( ((COS_Object)obj)->header.reference_count <= 0 )
142         return (*COS_Object_release_function_table
143                 [((COS_Object)obj)->header.type
144                  - COS_FAT_OBJECT_TYPE_MIN])(obj);
145     }
146   return 0;
147 }
148
149
150 COS_String
151 cos_make_string (char* str, size_t size)
152 {
153   COS_String obj = COS_ALLOCATE_OBJECT (String);
154
155   if (obj == NULL)
156     return NULL;
157
158   obj->size = size;
159   obj->data = malloc (size + 1);
160   if (obj->data == NULL)
161     {
162       free (obj);
163       return NULL;
164     }
165
166   strncpy ((char*)obj->data, str, size);
167   obj->data[size] = '\0';
168   return obj;
169 }
170
171 COS_String
172 cos_build_string (char* str)
173 {
174 #if 0
175   COS_String obj = COS_ALLOCATE_OBJECT (string);
176
177   if (obj == NULL)
178     return NULL;
179
180   obj->size = strlen (str);
181   obj->data = malloc (obj->size + 1);
182   if (obj->data == NULL)
183     {
184       free (obj);
185       return NULL;
186     }
187
188   strncpy ((char*)obj->data, str, obj->size);
189   obj->data[obj->size] = '\0';
190   return obj;
191 #else
192   return cos_make_string (str, strlen (str));
193 #endif
194 }
195
196 int
197 cos_retain_string (COS_Object obj)
198 {
199   return 0;
200 }
201
202 int
203 cos_release_string (COS_Object obj)
204 {
205   if (obj == NULL)
206     return 0;
207
208   if ( ((COS_String)obj)->data != NULL)
209     free (((COS_String)obj)->data);
210   free (obj);
211   return 0;
212 }
213
214 int cos_string_p (COS_object obj)
215 {
216   return COS_OBJECT_STRING_P (obj);
217 }
218
219 size_t
220 cos_string_size (COS_String string)
221 {
222   return string->size;
223 }
224
225 char*
226 cos_string_data (COS_String string)
227 {
228   return (char*)string->data;
229 }
230
231
232 COS_Cons
233 cos_cons (COS_object car, COS_object cdr)
234 {
235   COS_Cons obj = COS_ALLOCATE_OBJECT (Cons);
236
237   if (obj == NULL)
238     return NULL;
239
240   obj->car = car;
241   obj->cdr = cdr;
242   cos_retain_object (car);
243   cos_retain_object (cdr);
244
245   return obj;
246 }
247
248 int
249 cos_retain_cons (COS_Object obj)
250 {
251   cos_retain_object (COS_CAR (obj));
252   cos_retain_object (COS_CDR (obj));
253   return 0;
254 }
255
256 int
257 cos_release_cons (COS_Object obj)
258 {
259   if (obj == NULL)
260     return 0;
261
262   cos_release_object (COS_CAR (obj));
263   cos_release_object (COS_CDR (obj));
264   free (obj);
265   return 0;
266 }
267
268 int
269 cos_cons_p (COS_object obj)
270 {
271   return COS_OBJECT_CONS_P (obj);
272 }
273
274 COS_object
275 cos_car (COS_Cons pair)
276 {
277   if (COS_OBJECT_CONS_P (pair))
278     return COS_CAR (pair);
279   else
280     return NULL;
281 }
282
283 COS_object
284 cos_cdr (COS_Cons pair)
285 {
286   if (COS_OBJECT_CONS_P (pair))
287     return COS_CDR (pair);
288   else
289     return NULL;
290 }
291
292
293 int
294 cos_retain_container (COS_Object obj)
295 {
296   return 0;
297 }
298
299 int
300 cos_release_container (COS_Object obj)
301 {
302   return 0;
303 }
304
305
306 int
307 cos_retain_sexp (COS_Object obj)
308 {
309   return 0;
310 }
311
312 int
313 cos_release_sexp (COS_Object obj)
314 {
315   return 0;
316 }
317
318
319 int
320 cos_retain_binary (COS_Object obj)
321 {
322   return 0;
323 }
324
325 int
326 cos_release_binary (COS_Object obj)
327 {
328   return 0;
329 }
330
331
332 COS_DS
333 concord_open_env (COS_object ds)
334 {
335   if (COS_OBJECT_DS_P (ds))
336     concord_current_env = (COS_DS)ds;
337   else
338     {
339       char* path;
340
341       if (COS_OBJECT_C_STRING_P (ds))
342         path = (char*)ds;
343       else if (ds == NULL)
344         path = CONCORD_SI_DB_DIR;
345       else
346         return NULL;
347
348       concord_current_env = concord_open_ds (CONCORD_Backend_Berkeley_DB,
349                                              path, 0, 0755);
350     }
351   return concord_current_env;
352 }
353
354 int
355 cos_retain_ds (COS_Object obj)
356 {
357   return 0;
358 }
359
360 int
361 cos_release_ds (COS_Object obj)
362 {
363   return concord_close_ds ((COS_DS)obj);
364 }
365
366
367 COS_Genre
368 concord_get_genre (COS_object ds, COS_object genre)
369 {
370   if (COS_OBJECT_C_STRING_P (genre))
371     return concord_ds_get_genre (ds, (char*)genre);
372   else if (COS_OBJECT_SYMBOL_P (genre))
373     return concord_ds_get_genre (ds, (char*)((COS_Symbol)genre)->name->data);
374   else if (COS_OBJECT_GENRE_P (genre))
375     return (COS_Genre)genre;
376   return NULL;
377 }
378
379 int
380 cos_retain_genre (COS_Object obj)
381 {
382   return 0;
383 }
384
385 int
386 cos_release_genre (COS_Object obj)
387 {
388   return concord_close_genre ((COS_Genre)obj);
389 }
390
391
392 COS_Feature
393 concord_get_feature (COS_object ds,
394                      COS_object genre, COS_object feature)
395 {
396   if (COS_OBJECT_FEATURE_P (feature))
397     return feature;
398   else
399     {
400       COS_Genre gobj = concord_get_genre (ds, genre);
401       char* feature_name;
402
403       if (COS_OBJECT_C_STRING_P (feature))
404         feature_name = (char*)feature;
405       else if (COS_OBJECT_STRING_P (feature))
406         feature_name = (char*)((COS_String)feature)->data;
407       else if (COS_OBJECT_SYMBOL_P (feature))
408         feature_name = (char*)((COS_Symbol)feature)->name->data;
409       else
410         return NULL;
411
412       return concord_genre_get_feature (gobj, feature_name);
413     }
414 }
415
416 int
417 cos_retain_feature (COS_Object obj)
418 {
419   return 0;
420 }
421
422 int
423 cos_release_feature (COS_Object obj)
424 {
425   return concord_close_feature ((COS_Feature)obj);
426 }
427
428
429 COS_Feature_INDEX
430 concord_get_feature_index (COS_object ds,
431                            COS_object genre, COS_object feature)
432 {
433   if (COS_OBJECT_FEATURE_INDEX_P (feature))
434     return feature;
435   else
436     {
437       COS_Feature fobj = concord_get_feature (ds, genre, feature);
438       COS_Genre gobj;
439       char* feature_name;
440
441       if (fobj == NULL)
442         return NULL;
443
444       gobj = concord_feature_get_genre (fobj);
445       feature_name = concord_feature_get_name (fobj);
446       return concord_genre_get_index (gobj, feature_name);
447     }
448 }
449
450 int
451 cos_retain_index (COS_Object obj)
452 {
453   return concord_close_index ((COS_Feature_INDEX)obj);
454 }
455
456 int
457 cos_release_index (COS_Object obj)
458 {
459   return concord_close_index ((COS_Feature_INDEX)obj);
460 }
461
462
463 int
464 cos_retain_db_object (COS_Object obj)
465 {
466   return 0;
467 }
468
469 int
470 cos_release_db_object (COS_Object obj)
471 {
472   return 0;
473 }
474
475 COS_object
476 concord_decode_object (COS_object ds, COS_object genre,
477                        COS_object feature, COS_object id)
478 {
479   COS_Feature_INDEX index = concord_get_feature_index (ds, genre, feature);
480   char* id_str;
481   char buf[256];
482   CONCORD_String_Tank obj_st;
483   COS_String obj_string;
484   int cid;
485   size_t end;
486
487   if (index == NULL)
488     return NULL;
489
490   printf ("decoding id (%lX)...", id);
491   if (COS_OBJECT_INT_P (id))
492     {
493       printf ("(id is an int)...");
494       snprintf(buf, 256, "%ld", cos_int_value (id));
495       id_str = buf;
496     }
497   else if (COS_OBJECT_CHAR_P (id))
498     {
499       printf ("(id is a char)...");
500       snprintf(buf, 256, "%ld", cos_char_id (id));
501       id_str = buf;
502     }
503   else if (COS_OBJECT_SYMBOL_P (id))
504     {
505       printf ("(id is a symbol)....");
506       id_str = cos_string_data (cos_symbol_name ((COS_Symbol)id));
507     }
508   else if (COS_OBJECT_C_STRING_P (id))
509     {
510       printf ("(id is a C-string)....");
511       id_str = (char*)id;
512     }
513   else if (COS_OBJECT_STRING_P (id))
514     {
515       printf ("(id is a string)....");
516       id_str = cos_string_data ((COS_String)id);
517     }
518   else
519     return NULL;
520   printf ("done (%s).\n", id_str);
521
522   if ( concord_index_strid_get_obj_string (index, id_str, &obj_st) )
523     return NULL;
524
525   obj_string = cos_make_string ((char*)CONCORD_String_data (&obj_st),
526                                 CONCORD_String_size (&obj_st));
527
528   cid = cos_read_char (CONCORD_String_data (&obj_st),
529                        CONCORD_String_size (&obj_st),
530                        0, &end);
531   if ( cid >= 0 )
532     {
533       printf ("obj = %s (%d, U+%04X), len = %d, end = %d\n",
534               cos_string_data (obj_string),
535               cid, cid,
536               CONCORD_String_size (&obj_st), end);
537       cos_release_object (obj_string);
538       return cos_make_char (cid);
539     }
540   else
541     printf ("obj = %s\n", cos_string_data (obj_string));
542
543   cos_release_object (obj_string);
544
545   return NULL;
546 }
547
548 COS_object
549 concord_object_get_feature_value (COS_object object, COS_object feature)
550 {
551   char id_buf[256];
552   CONCORD_Feature fobj;
553   CONCORD_String_Tank val_st;
554   COS_String val_string;
555   size_t end;
556
557   if (COS_OBJECT_CHAR_P (object))
558     {
559       cos_utf8_print_char (object, id_buf, 256);
560       printf ("Object[char:0x%lX]'s id is %s.\n", object, id_buf);
561     }
562   else
563     return NULL;
564
565   fobj = concord_get_feature (concord_current_env,
566                               "character", feature);
567   if (fobj == NULL)
568     return NULL;
569
570   if ( concord_obj_get_feature_value_string (id_buf, fobj, &val_st) )
571     return NULL;
572
573   val_string = cos_make_string ((char*)CONCORD_String_data (&val_st),
574                                 CONCORD_String_size (&val_st));
575   printf ("obj[%s]'s %s = %s\n",
576           id_buf,
577           concord_feature_get_name (fobj),
578           cos_string_data (val_string));
579
580   return cos_read_object (CONCORD_String_data (&val_st),
581                           CONCORD_String_size (&val_st),
582                           0, &end);
583 }