source: main/trunk/greenstone2/common-src/packages/gdbm/gdbm-1.8.3/gdbmreorg.c@ 21356

Last change on this file since 21356 was 18074, checked in by mdewsnip, 15 years ago

Added "need_filelock" stuff from old Windows GDBM port -- not sure if it is still necessary, but I'm not taking the chance.

File size: 6.2 KB
Line 
1/* gdbmreorg.c - Reorganize the database file. */
2
3/* This file is part of GDBM, the GNU data base manager, by Philip A. Nelson.
4 Copyright (C) 1990, 1991, 1993 Free Software Foundation, Inc.
5
6 GDBM is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
10
11 GDBM is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GDBM; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 You may contact the author by:
21 e-mail: [email protected]
22 us-mail: Philip A. Nelson
23 Computer Science Department
24 Western Washington University
25 Bellingham, WA 98226
26
27************************************************************************/
28
29
30/* include system configuration before all else. */
31#include "autoconf.h"
32
33#include "gdbmdefs.h"
34#include "gdbmerrno.h"
35#include "extern.h"
36
37#if !HAVE_RENAME
38
39/* Rename takes OLD_NAME and renames it as NEW_NAME. If it can not rename
40 the file a non-zero value is returned. OLD_NAME is guaranteed to
41 remain if it can't be renamed. It assumes NEW_NAME always exists (due
42 to being used in gdbm). */
43
44static int
45_gdbm_rename (old_name, new_name)
46 char* old_name;
47 char* new_name;
48{
49 if (unlink (new_name) != 0)
50 return -1;
51
52 if (link (old_name, new_name) != 0)
53 return -1;
54
55 unlink (old_name);
56 return 0;
57
58}
59
60#define rename _gdbm_rename
61#endif
62
63
64
65/* Reorganize the database. This requires creating a new file and inserting
66 all the elements in the old file DBF into the new file. The new file
67 is then renamed to the same name as the old file and DBF is updated to
68 contain all the correct information about the new file. If an error
69 is detected, the return value is negative. The value zero is returned
70 after a successful reorganization. */
71
72int
73gdbm_reorganize (dbf)
74 gdbm_file_info *dbf;
75
76{
77 gdbm_file_info *new_dbf; /* The new file. */
78 char *new_name; /* A temporary name. */
79 int len; /* Used in new_name construction. */
80 datum key, nextkey, data; /* For the sequential sweep. */
81 struct stat fileinfo; /* Information about the file. */
82 int index; /* Use in moving the bucket cache. */
83
84
85 /* Readers can not reorganize! */
86 if (dbf->read_write == GDBM_READER)
87 {
88 gdbm_errno = GDBM_READER_CANT_REORGANIZE;
89 return -1;
90 }
91
92 /* Initialize the gdbm_errno variable. */
93 gdbm_errno = GDBM_NO_ERROR;
94
95 /* Construct new name for temporary file. */
96 len = strlen (dbf->name);
97 new_name = (char *) malloc (len + 3);
98 if (new_name == NULL)
99 {
100 gdbm_errno = GDBM_MALLOC_ERROR;
101 return -1;
102 }
103 strcpy (&new_name[0], dbf->name);
104 new_name[len+2] = 0;
105 new_name[len+1] = '#';
106 while ( (len > 0) && new_name[len-1] != '/')
107 {
108 new_name[len] = new_name[len-1];
109 len -= 1;
110 }
111 new_name[len] = '#';
112
113 /* Get the mode for the old file and open the new database. */
114 fstat (dbf->desc, &fileinfo);
115 new_dbf = gdbm_open (new_name, dbf->header->block_size, GDBM_WRCREAT,
116 fileinfo.st_mode, dbf->fatal_err);
117
118 if (new_dbf == NULL)
119 {
120 free (new_name);
121 gdbm_errno = GDBM_REORGANIZE_FAILED;
122 return -1;
123 }
124
125
126 /* For each item in the old database, add an entry in the new. */
127 key = gdbm_firstkey (dbf);
128
129 while (key.dptr != NULL)
130 {
131 data = gdbm_fetch (dbf, key);
132 if (data.dptr != NULL)
133 {
134 /* Add the data to the new file. */
135 if (gdbm_store (new_dbf, key, data, GDBM_INSERT) != 0)
136 {
137 gdbm_close (new_dbf);
138 gdbm_errno = GDBM_REORGANIZE_FAILED;
139 unlink (new_name);
140 free (new_name);
141 return -1;
142 }
143 }
144 else
145 {
146 /* ERROR! Abort and don't finish reorganize. */
147 gdbm_close (new_dbf);
148 gdbm_errno = GDBM_REORGANIZE_FAILED;
149 unlink (new_name);
150 free (new_name);
151 return -1;
152 }
153 nextkey = gdbm_nextkey (dbf, key);
154 free (key.dptr);
155 free (data.dptr);
156 key = nextkey;
157 }
158
159 /* Write everything. */
160 _gdbm_end_update (new_dbf);
161 gdbm_sync (new_dbf);
162
163
164 /* Move the new file to old name. */
165
166#ifdef MSDOS
167 if (close (new_dbf->desc)
168 || unlink (dbf->name)
169 || rename (new_name, dbf->name)
170 || (new_dbf->desc = open (dbf->name, O_RDWR|O_BINARY)) < 0)
171#else /* not MSDOS */
172 if (rename (new_name, dbf->name) != 0)
173#endif /* not MSDOS */
174 {
175 gdbm_errno = GDBM_REORGANIZE_FAILED;
176 gdbm_close (new_dbf);
177 free (new_name);
178 return -1;
179 }
180
181 /* Fix up DBF to have the correct information for the new file. */
182 if (dbf->file_locking)
183 {
184#ifdef MSDOS
185 if (dbf->need_filelock) {
186 UNLOCK_FILE(dbf);
187 }
188#else
189 UNLOCK_FILE(dbf);
190#endif
191 }
192 close (dbf->desc);
193 free (dbf->header);
194 free (dbf->dir);
195
196 if (dbf->bucket_cache != NULL) {
197 for (index = 0; index < dbf->cache_size; index++) {
198 if (dbf->bucket_cache[index].ca_bucket != NULL)
199 free (dbf->bucket_cache[index].ca_bucket);
200 if (dbf->bucket_cache[index].ca_data.dptr != NULL)
201 free (dbf->bucket_cache[index].ca_data.dptr);
202 }
203 free (dbf->bucket_cache);
204 }
205
206 dbf->desc = new_dbf->desc;
207 dbf->header = new_dbf->header;
208 dbf->dir = new_dbf->dir;
209 dbf->bucket = new_dbf->bucket;
210 dbf->bucket_dir = new_dbf->bucket_dir;
211 dbf->last_read = new_dbf->last_read;
212 dbf->bucket_cache = new_dbf->bucket_cache;
213 dbf->cache_size = new_dbf->cache_size;
214 dbf->header_changed = new_dbf->header_changed;
215 dbf->directory_changed = new_dbf->directory_changed;
216 dbf->bucket_changed = new_dbf->bucket_changed;
217 dbf->second_changed = new_dbf->second_changed;
218
219 free (new_dbf->name);
220 free (new_dbf);
221 free (new_name);
222
223 /* Make sure the new database is all on disk. */
224 fsync (dbf->desc);
225
226 /* Force the right stuff for a correct bucket cache. */
227 dbf->cache_entry = &dbf->bucket_cache[0];
228 _gdbm_get_bucket (dbf, 0);
229
230 return 0;
231}
Note: See TracBrowser for help on using the repository browser.