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

Last change on this file since 2049 was 1851, checked in by kjm18, 23 years ago

added levels and buildtype for mgpp collections

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 3.5 KB
RevLine 
[537]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
[4]26# reads in a collection configuration file
27
28package colcfg;
29
30use cfgread;
31
32
33# the collection configuration file data is stored in the form
34#
35# {'creator'}->string
36# {'public'}->string
37# {'beta'}->string
[810]38# {'defaultindex'}->string
39# {'importdir'}->string
40# {'archivedir'}->string
41# {'cachedir'}->string
42# {'builddir'}->string
43# {'removeold'}->string
[932]44# {'textcompress'}->string
[1851]45# {'buildtype'}->string
[810]46
47# {'maintainer'}->array of strings
[139]48# {'languages'}->array of strings
[69]49# {'indexsubcollections'}->array of strings
[4]50# {'indexes'}->array of strings
[810]51# {'dontbuild'}->array of strings
52# {'dontgdbm'}->array of strings
[1377]53# {'mirror'}->array of strings
[1572]54# {'phind'}->array of strings
[1851]55# {'levels'}->array of strings (for mgpp eg Section, Paragraph)
[4]56
[810]57# {'subcollection'}->hash of key-value pairs
58# {'collectionmeta'}->hash of key-value pairs
59
60# {'plugin'}->array of arrays of strings
61# {'classify'}->array of arrays of strings
62
[4]63sub read_collect_cfg {
64 my ($filename) = @_;
65
66 return &cfgread::read_cfg_file ($filename,
[810]67 q/^(creator|public|beta|defaultindex|importdir|/ .
[1851]68 q/archivedir|cachedir|builddir|removeold|textcompress|buildtype)$/,
[810]69 q/(maintainer|languages|indexsubcollections|/ .
[1851]70 q/indexes|dontbuild|dontgdbm|mirror|phind|levels)$/,
[810]71 q/^(subcollection|collectionmeta)$/,
72 q/^(plugin|classify)$/);
[4]73}
74
75sub write_collect_cfg {
76 my ($filename, $data) = @_;
77
78 &cfgread::write_cfg_file($filename, $data,
[810]79 q/^(creator|public|beta|defaultindex|importdir|/ .
[1851]80 q/archivedir|cachedir|builddir|removeold|textcompress|buildtype)$/,
[810]81 q/^(maintainer|languages|indexsubcollections|/ .
[1851]82 q/indexes|dontbuild|dontgdbm|levels)$/,
[810]83 q/^(subcollection|collectionmeta)$/,
84 q/^(plugin|classify)$/);
[4]85}
86
87
88# the build configuration file data is stored in the form
89#
90# {'builddate'}->string
[1302]91# {'buildtype'}->string
[4]92# {'metadata'}->array of strings
93# {'languages'}->array of strings
94# {'numdocs'}->string
95# {'numwords'}->string
96# {'numbytes'}->string
[1302]97# {'indexfields'}->array of strings
[4]98
99sub read_build_cfg {
100 my ($filename) = @_;
101
102 return &cfgread::read_cfg_file ($filename,
[1302]103 q/^(builddate|buildtype|numdocs|numwords|numbytes)$/,
104 q/^(metadata|languages|indexfields)$/);
[4]105}
106
107sub write_build_cfg {
108 my ($filename, $data) = @_;
109
110 &cfgread::write_cfg_file($filename, $data,
[1851]111 q/^(builddate|buildtype|numdocs|numwords|numbytes)$/,
112 q/^(metadata|languages|indexfields)$/);
[4]113}
114
115
1161;
Note: See TracBrowser for help on using the repository browser.