1ad30f8e7SGabor Kovesdan /* $NetBSD: citrus_lookup_factory.c,v 1.4 2003/10/27 00:12:42 lukem Exp $ */
2ad30f8e7SGabor Kovesdan
3ad30f8e7SGabor Kovesdan /*-
4*d915a14eSPedro F. Giffuni * SPDX-License-Identifier: BSD-2-Clause
5*d915a14eSPedro F. Giffuni *
6ad30f8e7SGabor Kovesdan * Copyright (c)2003 Citrus Project,
7ad30f8e7SGabor Kovesdan * All rights reserved.
8ad30f8e7SGabor Kovesdan *
9ad30f8e7SGabor Kovesdan * Redistribution and use in source and binary forms, with or without
10ad30f8e7SGabor Kovesdan * modification, are permitted provided that the following conditions
11ad30f8e7SGabor Kovesdan * are met:
12ad30f8e7SGabor Kovesdan * 1. Redistributions of source code must retain the above copyright
13ad30f8e7SGabor Kovesdan * notice, this list of conditions and the following disclaimer.
14ad30f8e7SGabor Kovesdan * 2. Redistributions in binary form must reproduce the above copyright
15ad30f8e7SGabor Kovesdan * notice, this list of conditions and the following disclaimer in the
16ad30f8e7SGabor Kovesdan * documentation and/or other materials provided with the distribution.
17ad30f8e7SGabor Kovesdan *
18ad30f8e7SGabor Kovesdan * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19ad30f8e7SGabor Kovesdan * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20ad30f8e7SGabor Kovesdan * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21ad30f8e7SGabor Kovesdan * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22ad30f8e7SGabor Kovesdan * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23ad30f8e7SGabor Kovesdan * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24ad30f8e7SGabor Kovesdan * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25ad30f8e7SGabor Kovesdan * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26ad30f8e7SGabor Kovesdan * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27ad30f8e7SGabor Kovesdan * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28ad30f8e7SGabor Kovesdan * SUCH DAMAGE.
29ad30f8e7SGabor Kovesdan */
30ad30f8e7SGabor Kovesdan
31ad30f8e7SGabor Kovesdan
32ad30f8e7SGabor Kovesdan #include <assert.h>
33ad30f8e7SGabor Kovesdan #include <ctype.h>
34ad30f8e7SGabor Kovesdan #include <errno.h>
35ad30f8e7SGabor Kovesdan #include <limits.h>
36ad30f8e7SGabor Kovesdan #include <stdio.h>
37ad30f8e7SGabor Kovesdan #include <stdlib.h>
38ad30f8e7SGabor Kovesdan #include <string.h>
39ad30f8e7SGabor Kovesdan
40ad30f8e7SGabor Kovesdan #include "citrus_namespace.h"
41ad30f8e7SGabor Kovesdan #include "citrus_region.h"
42ad30f8e7SGabor Kovesdan #include "citrus_bcs.h"
43ad30f8e7SGabor Kovesdan #include "citrus_db_factory.h"
44ad30f8e7SGabor Kovesdan #include "citrus_db_hash.h"
45ad30f8e7SGabor Kovesdan #include "citrus_lookup_factory.h"
46ad30f8e7SGabor Kovesdan #include "citrus_lookup_file.h"
47ad30f8e7SGabor Kovesdan
48ad30f8e7SGabor Kovesdan #define T_COMM '#'
49ad30f8e7SGabor Kovesdan static int
convert_line(struct _citrus_db_factory * df,const char * line,size_t len)50ad30f8e7SGabor Kovesdan convert_line(struct _citrus_db_factory *df, const char *line, size_t len)
51ad30f8e7SGabor Kovesdan {
52ad30f8e7SGabor Kovesdan const char *p;
53ad30f8e7SGabor Kovesdan char data[LINE_MAX], key[LINE_MAX];
54ad30f8e7SGabor Kovesdan
55ad30f8e7SGabor Kovesdan /* cut off trailing comment */
56ad30f8e7SGabor Kovesdan p = memchr(line, T_COMM, len);
57ad30f8e7SGabor Kovesdan if (p)
58ad30f8e7SGabor Kovesdan len = p - line;
59ad30f8e7SGabor Kovesdan
60ad30f8e7SGabor Kovesdan /* key */
61ad30f8e7SGabor Kovesdan line = _bcs_skip_ws_len(line, &len);
62ad30f8e7SGabor Kovesdan if (len == 0)
63ad30f8e7SGabor Kovesdan return (0);
64ad30f8e7SGabor Kovesdan p = _bcs_skip_nonws_len(line, &len);
65ad30f8e7SGabor Kovesdan if (p == line)
66ad30f8e7SGabor Kovesdan return (0);
67ad30f8e7SGabor Kovesdan snprintf(key, sizeof(key), "%.*s", (int)(p-line), line);
68ad30f8e7SGabor Kovesdan _bcs_convert_to_lower(key);
69ad30f8e7SGabor Kovesdan
70ad30f8e7SGabor Kovesdan /* data */
71ad30f8e7SGabor Kovesdan line = _bcs_skip_ws_len(p, &len);
72ad30f8e7SGabor Kovesdan _bcs_trunc_rws_len(line, &len);
73ad30f8e7SGabor Kovesdan snprintf(data, sizeof(data), "%.*s", (int)len, line);
74ad30f8e7SGabor Kovesdan
75ad30f8e7SGabor Kovesdan return (_db_factory_addstr_by_s(df, key, data));
76ad30f8e7SGabor Kovesdan }
77ad30f8e7SGabor Kovesdan
78ad30f8e7SGabor Kovesdan static int
dump_db(struct _citrus_db_factory * df,struct _region * r)79ad30f8e7SGabor Kovesdan dump_db(struct _citrus_db_factory *df, struct _region *r)
80ad30f8e7SGabor Kovesdan {
81ad30f8e7SGabor Kovesdan void *ptr;
82ad30f8e7SGabor Kovesdan size_t size;
83ad30f8e7SGabor Kovesdan
84ad30f8e7SGabor Kovesdan size = _db_factory_calc_size(df);
85ad30f8e7SGabor Kovesdan ptr = malloc(size);
86ad30f8e7SGabor Kovesdan if (ptr == NULL)
87ad30f8e7SGabor Kovesdan return (errno);
88ad30f8e7SGabor Kovesdan _region_init(r, ptr, size);
89ad30f8e7SGabor Kovesdan
90ad30f8e7SGabor Kovesdan return (_db_factory_serialize(df, _CITRUS_LOOKUP_MAGIC, r));
91ad30f8e7SGabor Kovesdan }
92ad30f8e7SGabor Kovesdan
93ad30f8e7SGabor Kovesdan int
_citrus_lookup_factory_convert(FILE * out,FILE * in)94ad30f8e7SGabor Kovesdan _citrus_lookup_factory_convert(FILE *out, FILE *in)
95ad30f8e7SGabor Kovesdan {
96ad30f8e7SGabor Kovesdan struct _citrus_db_factory *df;
97ad30f8e7SGabor Kovesdan struct _region r;
98ad30f8e7SGabor Kovesdan char *line;
99ad30f8e7SGabor Kovesdan size_t size;
100ad30f8e7SGabor Kovesdan int ret;
101ad30f8e7SGabor Kovesdan
102ad30f8e7SGabor Kovesdan ret = _db_factory_create(&df, &_db_hash_std, NULL);
103ad30f8e7SGabor Kovesdan if (ret)
104ad30f8e7SGabor Kovesdan return (ret);
105ad30f8e7SGabor Kovesdan
106ad30f8e7SGabor Kovesdan while ((line = fgetln(in, &size)) != NULL)
107ad30f8e7SGabor Kovesdan if ((ret = convert_line(df, line, size))) {
108ad30f8e7SGabor Kovesdan _db_factory_free(df);
109ad30f8e7SGabor Kovesdan return (ret);
110ad30f8e7SGabor Kovesdan }
111ad30f8e7SGabor Kovesdan
112ad30f8e7SGabor Kovesdan ret = dump_db(df, &r);
113ad30f8e7SGabor Kovesdan _db_factory_free(df);
114ad30f8e7SGabor Kovesdan if (ret)
115ad30f8e7SGabor Kovesdan return (ret);
116ad30f8e7SGabor Kovesdan
117ad30f8e7SGabor Kovesdan if (fwrite(_region_head(&r), _region_size(&r), 1, out) != 1)
118ad30f8e7SGabor Kovesdan return (errno);
119ad30f8e7SGabor Kovesdan
120ad30f8e7SGabor Kovesdan return (0);
121ad30f8e7SGabor Kovesdan }
122