]> arthur.barton.de Git - netatalk.git/blob - libatalk/cnid/cnid_close.c
Edmund Lam's compilation patches for non-CNID support
[netatalk.git] / libatalk / cnid / cnid_close.c
1 /*
2  * $Id: cnid_close.c,v 1.6 2001-08-31 14:58:48 rufustfirefly Exp $
3  */
4
5 #ifdef HAVE_CONFIG_H
6 #include "config.h"
7 #endif /* HAVE_CONFIG_H */
8
9 #ifdef CNID_DB
10 #ifdef HAVE_UNISTD_H
11 #include <unistd.h>
12 #endif /* HAVE_UNISTD_H */
13 #ifdef HAVE_FCNTL_H
14 #include <fcntl.h>
15 #endif /* HAVE_FCNTL_H */
16 #include <stdlib.h>
17 #include <syslog.h>
18 #include <db.h>
19 #include <errno.h>
20 #include <string.h>
21
22 #include <atalk/cnid.h>
23
24 #include "cnid_private.h"
25
26 void cnid_close(void *CNID)
27 {
28   CNID_private *db;
29
30   if (!(db = CNID))
31     return;
32
33   /* flush the transaction log and delete the log file if we can. */
34   if ((db->lockfd > -1) && ((db->flags & CNIDFLAG_DB_RO) == 0)) {
35     struct flock lock;
36
37     lock.l_type = F_WRLCK;
38     lock.l_whence = SEEK_SET;
39     lock.l_start = lock.l_len = 0;
40     if (fcntl(db->lockfd, F_SETLK, &lock) == 0) {
41       char **list, **first;
42
43       errno = txn_checkpoint(db->dbenv, 0, 0, 0);
44       while (errno == DB_INCOMPLETE)
45                 errno = txn_checkpoint(db->dbenv, 0, 0, 0);
46
47       /* we've checkpointed, so clean up the log files.
48        * NOTE: any real problems will make log_archive return an error. */
49       chdir(db->dbenv->db_log_dir ? db->dbenv->db_log_dir : db->dbenv->db_home);
50       if (!log_archive(db->dbenv, &first, DB_ARCH_LOG, NULL)) {
51         list = first;
52         while (*list) {
53           if (truncate(*list, 0) < 0)
54             syslog(LOG_INFO, "cnid_close: failed to truncate %s: %s",
55                    *list, strerror(errno));
56           list++;
57         }
58         free(first); 
59       }
60     }
61   }
62
63   db->db_didname->close(db->db_didname, 0);
64   db->db_devino->close(db->db_devino, 0);
65   db->db_cnid->close(db->db_cnid, 0);
66   db->dbenv->close(db->dbenv, 0);
67   
68   if (db->lockfd > -1)
69     close(db->lockfd); /* this will also close any lock we have. */
70
71   free(db);
72 }
73 #endif /* CNID_DB */