source: trunk/gsdl/src/gdbmset/gdbmset.cpp@ 12844

Last change on this file since 12844 was 12844, checked in by mdewsnip, 18 years ago

Incremental building and dynamic GDBM updating code, many thanks to John Rowe and John Thompson at DL Consulting Ltd.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1/**********************************************************************
2 *
3 * gdbmset -- add or replace a single value from the GDBM database
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#ifdef __WIN32__
27#include "autoconf.h"
28#include "systems.h"
29#include "gdbmconst.h"
30#include "gdbm.h"
31
32#else
33#include <gdbm.h>
34#endif
35
36#include "gsdlconf.h"
37#include <stdlib.h>
38
39#if defined(GSDL_USE_OBJECTSPACE)
40#include <ospace\std\iostream>
41#elif defined(GSDL_USE_IOS_H)
42#include <iostream.h>
43#else
44#include <iostream>
45#endif
46
47// use the standard namespace
48#if !defined (GSDL_NAMESPACE_BROKEN)
49#if defined(GSDL_USE_OBJECTSPACE)
50using namespace ospace::std;
51#else
52using namespace std;
53#endif
54#endif
55
56void
57print_usage (char *program_name)
58{
59 cerr << "usage: " << program_name << " <database_path> <key> [<value>]\n";
60 cerr << "\t- if no value is given then the value indicated by the key is removed\n\n";
61}
62
63
64int
65main (int argc, char *argv[])
66{
67 int block_size = 0;
68 GDBM_FILE dbf;
69 datum key, content;
70
71 // sanity check
72 if (argc < 3)
73 {
74 print_usage (argv[0]);
75 exit (0);
76 }
77
78 // open the database
79#ifdef __WIN32__
80 dbf = gdbm_open (argv[1], block_size, GDBM_WRITER, 00664, NULL, 0);
81#else
82 dbf = gdbm_open (argv[1], block_size, GDBM_WRITER, 00664, NULL);
83#endif
84 if (dbf == NULL)
85 {
86 cerr << "couldn't open database connection to " << argv[1] << "\n";
87 exit (0);
88 }
89
90 key.dsize = strlen(argv[2]);
91 key.dptr = argv[2];
92 if(argc == 4)
93 {
94 //cerr << "Setting [" << argv[2] << "] to '" << argv[3] << "' (length " << strlen(argv[3]) << ")\n";
95 content.dsize = strlen(argv[3]);
96 content.dptr = argv[3];
97 if(gdbm_store(dbf, key, content, GDBM_REPLACE) != 0)
98 {
99 cerr << "failed to set [" << argv[2] << "] to '" << argv[3] << "'\n";
100 }
101 }
102 else
103 {
104 if(gdbm_delete(dbf, key) != 0)
105 {
106 cerr << "failed to remove [" << argv[2] << "]\n";
107 }
108 }
109 gdbm_close (dbf);
110 return 0;
111}
Note: See TracBrowser for help on using the repository browser.