summaryrefslogtreecommitdiffstats
path: root/tests/storage/test_table_info.cpp
blob: e2e48936eb0e452c288252ac7033f5ebf0cff6b4 (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
/* 
 *  libpinyin
 *  Library to deal with pinyin.
 *  
 *  Copyright (C) 2013 Peng Wu <alexepico@gmail.com>
 *  
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program 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 General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <stdio.h>
#include <locale.h>
#include "pinyin_internal.h"


void dump_table_info(const pinyin_table_info_t * table_info) {
    switch(table_info->m_file_type) {
    case NOT_USED:
        printf("not used.\n");
        break;

    case SYSTEM_FILE:
        printf("system file:%s %s %s.\n", table_info->m_table_filename,
               table_info->m_system_filename, table_info->m_user_filename);
        break;

    case DICTIONARY:
        printf("dictionary:%s %s.\n", table_info->m_table_filename,
               table_info->m_system_filename);
        break;

    case USER_FILE:
        printf("user file:%s.\n", table_info->m_user_filename);
        break;

    default:
        assert(false);
    }
}

int main(int argc, char * argv[]) {
    setlocale(LC_ALL, "");

    SystemTableInfo2 system_table_info;

    bool retval = system_table_info.load("../../data/table.conf");
    if (!retval) {
        fprintf(stderr, "load table.conf failed.\n");
        exit(ENOENT);
    }

    printf("lambda:%f\n", system_table_info.get_lambda());

    size_t i;
    for (i = 0; i < PHRASE_INDEX_LIBRARY_COUNT; ++i) {
        const pinyin_table_info_t * table_info =
            system_table_info.get_default_tables() + i;

        assert(i == table_info->m_dict_index);
        printf("default table index:%d\n", table_info->m_dict_index);

        dump_table_info(table_info);
    }

    for (i = 0; i < PHRASE_INDEX_LIBRARY_COUNT; ++i) {
        const pinyin_table_info_t * table_info =
            system_table_info.get_addon_tables() + i;

        assert(i == table_info->m_dict_index);
        printf("addon table index:%d\n", table_info->m_dict_index);

        dump_table_info(table_info);
    }

    UserTableInfo user_table_info;
    retval = user_table_info.is_conform(&system_table_info);
    assert(!retval);

    user_table_info.make_conform(&system_table_info);
    retval = user_table_info.is_conform(&system_table_info);
    assert(retval);

    assert(user_table_info.save("/tmp/user.conf"));
    assert(user_table_info.load("/tmp/user.conf"));

    retval = user_table_info.is_conform(&system_table_info);
    assert(retval);

    return 0;
}