2 * Copyright (C) 1994, Index Data I/S
4 * Sebastian Hammer, Adam Dickmeiss
7 * Revision 1.19 1996-02-05 12:28:58 adam
8 * Removed a LOG_LOG message.
10 * Revision 1.18 1996/01/02 08:59:06 quinn
11 * Changed "commit" setting to "shadow".
13 * Revision 1.17 1995/12/11 09:03:51 adam
14 * New function: cf_unlink.
15 * New member of commit file head: state (0) deleted, (1) hash file.
17 * Revision 1.16 1995/12/08 16:21:13 adam
18 * Work on commit/update.
20 * Revision 1.15 1995/12/01 16:24:28 adam
21 * Commit files use separate meta file area.
23 * Revision 1.14 1995/12/01 11:37:21 adam
24 * Cached/commit files implemented as meta-files.
26 * Revision 1.13 1995/11/30 17:00:49 adam
27 * Several bug fixes. Commit system runs now.
29 * Revision 1.12 1995/11/30 08:33:10 adam
30 * Started work on commit facility.
32 * Revision 1.11 1995/09/04 12:33:21 adam
33 * Various cleanup. YAZ util used instead.
35 * Revision 1.10 1994/08/25 10:15:54 quinn
38 * Revision 1.9 1994/08/24 08:45:48 quinn
41 * Revision 1.8 1994/08/23 15:03:34 quinn
42 * *** empty log message ***
44 * Revision 1.7 1994/08/23 14:25:45 quinn
45 * Added O_CREAT because some geek wanted it. Sheesh.
47 * Revision 1.6 1994/08/23 14:21:38 quinn
50 * Revision 1.5 1994/08/18 08:10:08 quinn
53 * Revision 1.4 1994/08/17 14:27:32 quinn
56 * Revision 1.2 1994/08/17 14:09:32 quinn
57 * Compiles cleanly (still only dummy).
59 * Revision 1.1 1994/08/17 13:55:08 quinn
60 * New blocksystem. dummy only
73 static MFile_area commit_area = NULL;
75 void bf_cache (int enableFlag)
80 if (res_get (common_resource, "shadow"))
81 commit_area = mf_init ("shadow");
84 logf (LOG_FATAL, "Shadow area must be defined if commit"
93 int bf_close (BFile bf)
102 BFile bf_open (const char *name, int block_size, int wflag)
104 BFile tmp = xmalloc(sizeof(BFile_struct));
111 tmp->mf = mf_open (0, name, block_size, 0);
112 tmp->cf = cf_open (tmp->mf, commit_area, name, block_size,
116 outf = fopen ("cache", "a");
117 fprintf (outf, "%s %d\n", name, block_size);
123 tmp->mf = mf_open(0, name, block_size, wflag);
128 logf (LOG_FATAL, "mf_open failed for %s", name);
135 int bf_read (BFile bf, int no, int offset, int num, void *buf)
139 if (bf->cf && (r=cf_read (bf->cf, no, offset, num, buf)) != -1)
141 return mf_read (bf->mf, no, offset, num, buf);
144 int bf_write (BFile bf, int no, int offset, int num, const void *buf)
147 return cf_write (bf->cf, no, offset, num, buf);
148 return mf_write (bf->mf, no, offset, num, buf);
151 int bf_commitExists (void)
155 inf = fopen ("cache", "r");
164 void bf_commitExec (void)
173 assert (commit_area);
174 if (!(inf = fopen ("cache", "r")))
176 logf (LOG_LOG, "No commit file");
179 while (fscanf (inf, "%s %d", path, &block_size) == 2)
181 mf = mf_open (0, path, block_size, 1);
182 cf = cf_open (mf, commit_area, path, block_size, 0, &first_time);
192 void bf_commitClean (void)
208 if (!(inf = fopen ("cache", "r")))
210 while (fscanf (inf, "%s %d", path, &block_size) == 2)
212 mf = mf_open (0, path, block_size, 0);
213 cf = cf_open (mf, commit_area, path, block_size, 1, &firstTime);