File: dic.c

package info (click to toggle)
skksearch 0.0-24
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 228 kB
  • sloc: ansic: 1,079; makefile: 26; sh: 18
file content (76 lines) | stat: -rw-r--r-- 1,857 bytes parent folder | download | duplicates (11)
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
/*
 * Copyright (c) 1999 Hideki Sakurada
 *
 * 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 2, 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.
 */

#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#include "config.h"
#include "err.h"
#include "dic.h"

#ifdef DIC_DUMMY
#include "dic_dummy.h"
#endif /* DIC_DUMMY */

#ifdef DIC_PLAIN
#include "dic_plain.h"
#endif /* DIC_PLAIN */

#ifdef DIC_CDB
#include "dic_cdb.h"
#endif /* DIC_CDB */

#ifdef DIC_DB
#include <db.h>
#include "dic_db.h"
#endif /* DIC_DB */


struct dic *dic_open(char *dicstr) {
  struct dic *d;

  if ((d = malloc(sizeof(struct dic))) == NULL) {
    err(LOG_ERR, "dic_open: %s\n", strerror(errno));
    exit(1);
  }

#ifdef DIC_DUMMY
  if (strncmp(dicstr, "dummy:", strlen("dummy:")) == 0) {
    d = (void *)dic_dummy_open(d, dicstr + strlen("dummy:"));
  }
#endif /* DIC_DUMMY */
#ifdef DIC_PLAIN
  else if (strncmp(dicstr, "plain:", strlen("plain:")) == 0) {
    d = (void *)dic_plain_open(d, dicstr + strlen("plain:"));
  }
#endif /* DIC_PLAIN */
#ifdef DIC_CDB
  else if (strncmp(dicstr, "cdb:", strlen("cdb:")) == 0) {
    d = (void *)dic_cdb_open(d, dicstr + strlen("cdb:"));
  }
#endif /* DIC_CDB */
#ifdef DIC_DB
  else if (strncmp(dicstr, "db:", strlen("db:")) == 0) {
    d = (void *)dic_db_open(d, dicstr + strlen("db:"));
  }
#endif /* DIC_DB */
  else {
    err(LOG_ERR, "dic_open: dictionary of unknown type %s\n", dicstr);
    exit(1);
  }

  return d;
}