X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=chise.h;h=029a9ebd924bbcb89f8ee4cb9a0a3bc058053b7a;hb=2141c94681ac364d919d55ba1580522fd6f2e17b;hp=4061264dbc1d9bb1839091143f6a23f4088a751a;hpb=86c46e50f42fa21589b7ad97a13aa03b62b0f73b;p=chise%2Flibchise.git diff --git a/chise.h b/chise.h index 4061264..029a9eb 100644 --- a/chise.h +++ b/chise.h @@ -4,6 +4,8 @@ #include #include +extern const unsigned char chise_db_dir[]; + typedef enum CHISE_DS_Type { CHISE_DS_NONE, @@ -12,9 +14,16 @@ typedef enum CHISE_DS_Type typedef struct CHISE_DS CHISE_DS; -CHISE_DS* chise_open_data_source (CHISE_DS_Type type, char *location); +CHISE_DS* +CHISE_DS_open (CHISE_DS_Type type, const unsigned char *location, + DBTYPE subtype, int modemask); + +int CHISE_DS_close (CHISE_DS *ds); -int chise_ds_close (CHISE_DS *ds); +int +chise_ds_foreach_char_feature_name (CHISE_DS *ds, + int (*func) (CHISE_DS *ds, + unsigned char *name)); typedef int CHISE_Char_ID; @@ -41,49 +50,86 @@ chise_value_to_c_string (const CHISE_Value *s) } -typedef struct CHISE_Attribute_Table -{ - CHISE_DS *ds; - DB *db; -} CHISE_Attribute_Table; +typedef struct CHISE_Feature_Table CHISE_Feature_Table; +typedef CHISE_Feature_Table* CHISE_Feature; +CHISE_Feature +chise_ds_get_feature (CHISE_DS *ds, const unsigned char *name); -typedef CHISE_Attribute_Table CHISE_Decoding_Table; +static inline int +chise_ds_load_char_feature_value (CHISE_DS *ds, + CHISE_Char_ID cid, + const unsigned char *name, + CHISE_Value *valdatum); -CHISE_Decoding_Table* -chise_ds_open_decoding_table (CHISE_DS *ds, const char *ccs, - DBTYPE real_subtype, - u_int32_t accessmask, int modemask); +int chise_feature_setup_db (CHISE_Feature feature, int writable); -int chise_dt_close (CHISE_Decoding_Table *table); +int chise_feature_sync (CHISE_Feature feature); -CHISE_Char_ID chise_dt_get_char (CHISE_Decoding_Table *table, int code_point); +int chise_char_set_feature_value (CHISE_Char_ID cid, + CHISE_Feature feature, + unsigned char *value); -int chise_dt_put_char (CHISE_Decoding_Table *table, - int code_point, CHISE_Char_ID cid); +int chise_char_load_feature_value (CHISE_Char_ID cid, + CHISE_Feature feature, + CHISE_Value *valdatum); +static inline int +chise_ds_load_char_feature_value (CHISE_DS *ds, + CHISE_Char_ID cid, + const unsigned char *name, + CHISE_Value *valdatum) +{ + return + chise_char_load_feature_value (cid, chise_ds_get_feature (ds, name), + valdatum); +} -typedef CHISE_Attribute_Table CHISE_Feature_Table; +unsigned char* +chise_char_gets_feature_value (CHISE_Char_ID cid, + CHISE_Feature feature, + unsigned char *dst, size_t size); -CHISE_Feature_Table* -chise_ds_open_feature_table (CHISE_DS *ds, const char *feature, - DBTYPE real_subtype, - u_int32_t accessmask, int modemask); +int +chise_feature_foreach_char_with_value (CHISE_Feature feature, + int (*func) (CHISE_Char_ID cid, + CHISE_Feature feature, + CHISE_Value *valdatum)); -int chise_ft_close (CHISE_Feature_Table *table); +#if 0 +int +chise_feature_foreach_char_with_str (CHISE_Feature feature, + int (*func) (CHISE_Char_ID cid, + CHISE_Feature feature, + unsigned char *str)); +#endif -int chise_ft_get_value (CHISE_Feature_Table *table, - CHISE_Char_ID cid, CHISE_Value *valdatum); -void -chise_ft_iterate (CHISE_Feature_Table *table, - int (*func) (CHISE_Feature_Table *table, - CHISE_Char_ID cid, CHISE_Value *valdatum)); +typedef struct CHISE_CCS_Table CHISE_CCS_Table; +typedef CHISE_CCS_Table* CHISE_CCS; +CHISE_CCS +chise_ds_get_ccs (CHISE_DS *ds, const unsigned char *name); -CHISE_Char_ID chise_decode_char (CHISE_DS *ds, char *ccs, int code_point); +static inline CHISE_Char_ID +chise_ds_decode_char (CHISE_DS *ds, + const unsigned char *ccs, int code_point); -int chise_get_feature (CHISE_DS *ds, CHISE_Char_ID cid, - char *key, CHISE_Value *valdatum); +int chise_ccs_setup_db (CHISE_CCS ccs, int writable); + +int chise_ccs_sync (CHISE_CCS ccs); + +int chise_ccs_set_decoded_char (CHISE_CCS ccs, + int code_point, CHISE_Char_ID cid); + +CHISE_Char_ID chise_ccs_decode (CHISE_CCS ccs, int code_point); + +static inline CHISE_Char_ID +chise_ds_decode_char (CHISE_DS *ds, + const unsigned char *name, int code_point) +{ + return + chise_ccs_decode (chise_ds_get_ccs (ds, name), code_point); +} #endif /* !_CHISE_H */