source: trunk/gsdl/perllib/colcfg.pm@ 11089

Last change on this file since 11089 was 10475, checked in by kjdon, 19 years ago

added sections_index_document_metadata

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 5.0 KB
Line 
1###########################################################################
2#
3# colcfg.pm --
4# A component of the Greenstone digital library software
5# from the New Zealand Digital Library Project at the
6# University of Waikato, New Zealand.
7#
8# Copyright (C) 1999 New Zealand Digital Library Project
9#
10# This program is free software; you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 2 of the License, or
13# (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23#
24###########################################################################
25
26# reads in a collection configuration file
27
28package colcfg;
29
30use cfgread;
31use strict;
32
33# the collection configuration file data is stored in the form
34#
35# {'creator'}->string
36# {'public'}->string
37# {'defaultindex'}->string
38# {'importdir'}->string
39# {'archivedir'}->string
40# {'cachedir'}->string
41# {'builddir'}->string
42# {'removeold'}->string
43# {'textcompress'}->string
44# {'buildtype'}->string
45# {'maxnumeric'}->string
46# {'separate_cjk'}->string
47# {'sections_index_document_metadata'}->string (always, unless_section_metadata_exists)
48# {'maintainer'}->array of strings
49# {'languages'}->array of strings
50# {'indexsubcollections'}->array of strings
51# {'indexes'}->array of strings
52# {'dontbuild'}->array of strings
53# {'dontgdbm'}->array of strings
54# {'mirror'}->array of strings
55# {'phind'}->array of strings
56# {'levels'}->array of strings (for mgpp eg Section, Paragraph)
57# {'searchtype'}->array of strings (for mgpp, form or plain)
58
59# {'subcollection'}->hash of key-value pairs
60
61# {'acquire'}->array of arrays of strings
62# {'plugin'}->array of arrays of strings
63# {'classify'}->array of arrays of strings
64
65# {'collectionmeta'}->hash of key->hash of param-value -used
66# for language specification
67# for example, collectionmeta->collectionname->default->demo
68# ->mi->maori demo
69
70sub read_collect_cfg {
71 my ($filename) = @_;
72
73 return &cfgread::read_cfg_file ($filename,
74 q/^(creator|public|defaultindex|importdir|/ .
75 q/archivedir|cachedir|builddir|removeold|/ .
76 q/textcompress|buildtype|no_text|keepold|gzip|/ .
77 q/verbosity|remove_empty_classifications|OIDtype|/ .
78 q/groupsize|maxdocs|debug|mode|saveas|/ .
79 q/sortmeta|removesuffix|removeprefix|create_images|/ .
80 q/maxnumeric|separate_cjk|language_metadata|/ .
81 q/no_strip_html|index|sections_index_document_metadata)$/,
82 q/(maintainer|languages|indexsubcollections|/ .
83 q/indexes|dontbuild|dontgdbm|mirror|levels|/ .
84 q/searchtype|searchtypes)$/,
85 q/^(subcollection|format)$/,
86 q/^(acquire|plugin|classify)$/,
87 q/^(collectionmeta)$/);
88}
89
90sub write_collect_cfg {
91 my ($filename, $data) = @_;
92
93 &cfgread::write_cfg_file($filename, $data,
94 q/^(creator|public|defaultindex|importdir|/ .
95 q/archivedir|cachedir|builddir|removeold|/ .
96 q/textcompress|buildtype|no_text|keepold|gzip|/ .
97 q/verbosity|remove_empty_classifications|OIDtype|/.
98 q/groupsize|maxdocs|debug|mode|saveas|/ .
99 q/sortmeta|removesuffix|removeprefix|create_images|/ .
100 q/maxnumeric|separate_cjk|language_metadata/ .
101 q/no_strip_html|index|sections_index_document_metadata)$/,
102 q/^(maintainer|languages|indexsubcollections|/ .
103 q/indexes|dontbuild|dontgdbm|mirror|levels|/.
104 q/searchtype|searchtypes)$/,
105 q/^(subcollection|format)$/,
106 q/^(acquire|plugin|classify)$/,
107 q/^(collectionmeta)$/);
108}
109
110
111# the build configuration file data is stored in the form
112#
113# {'builddate'}->string
114# {'buildtype'}->string
115# {'metadata'}->array of strings
116# {'languages'}->array of strings
117# {'numdocs'}->string
118# {'numsections'}->string
119# {'numwords'}->string
120# {'numbytes'}->string
121# {'maxnumeric'}->string
122# {'indexfields'}->array of strings
123# {'indexfieldmap'}->array of strings in the form "field->FI"
124# {'indexmap'} -> array of strings
125# {'indexlevels'} -> array of strings
126# {'textlevel'}->string
127# {'levelmap'} -> array of strings in the form "level->shortname"
128sub read_build_cfg {
129 my ($filename) = @_;
130
131 return &cfgread::read_cfg_file ($filename,
132 q/^(builddate|buildtype|numdocs|numsections|numwords|numbytes|maxnumeric|textlevel|indexstem)$/,
133 q/^(metadata|languages|indexfields|indexfieldmap|indexmap|indexlevels|levelmap)$/);
134}
135
136sub write_build_cfg {
137 my ($filename, $data) = @_;
138
139 &cfgread::write_cfg_file($filename, $data,
140 q/^(builddate|buildtype|numdocs|numsections|numwords|numbytes|maxnumeric|textlevel|indexstem)$/,
141 q/^(metadata|languages|indexfieldsindexfieldmap|indexmap|indexlevels|levelmap)$/);
142}
143
144
1451;
146
Note: See TracBrowser for help on using the repository browser.