source: main/trunk/greenstone2/runtime-src/src/recpt/converter.cpp@ 27065

Last change on this file since 27065 was 1870, checked in by sjboddie, 23 years ago

Tidied up language support stuff.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.7 KB
Line 
1/**********************************************************************
2 *
3 * converter.cpp --
4 * Copyright (C) 1999 The New Zealand Digital Library Project
5 *
6 * A component of the Greenstone digital library software
7 * from the New Zealand Digital Library Project at the
8 * University of Waikato, New Zealand.
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#include "converter.h"
27
28
29
30// the converters within converterinfo become the property of this class
31// after add_converter has been called. The converters remain the
32// responsability of the calling code and will not be deleted by this
33// class.
34void convertinfoclass::add_converter (const text_t &name, inconvertclass *inconverter,
35 rzwsoutconvertclass *outconverter) {
36 // can't add a null converter or an action with no name
37 if (inconverter == NULL || outconverter == NULL || name.empty()) {
38 return;
39 }
40
41 converterinfo info;
42 info.name = name;
43 info.inconverter = inconverter;
44 info.outconverter = outconverter;
45 converters[name] = info;
46}
47
48
49bool operator==(const converterinfo &x, const converterinfo &y) {
50 return ((x.name == y.name) && (x.inconverter == y.inconverter) &&
51 (x.outconverter == y.outconverter));
52}
53
54bool operator<(const converterinfo &x, const converterinfo &y) {
55 return ((x.name < y.name) ||
56 ((x.name == y.name) &&
57 ((x.inconverter < y.inconverter) ||
58 ((x.inconverter == y.inconverter) &&
59 ((x.outconverter < y.outconverter))))));
60}
61
62
63// get_inconverter will return NULL if the convert could not be found
64inconvertclass *convertinfoclass::get_inconverter (const text_t &name) {
65 iterator here = converters.find (name);
66 if (here == converters.end()) return NULL;
67
68 return (*here).second.inconverter;
69}
70
71// get_outconverter will return NULL if the convert could not be found
72rzwsoutconvertclass *convertinfoclass::get_outconverter (const text_t &name) {
73 iterator here = converters.find (name);
74 if (here == converters.end()) return NULL;
75
76 return (*here).second.outconverter;
77}
Note: See TracBrowser for help on using the repository browser.