1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
#include "bbs.h"
#include <string.h>
#include <unistd.h>
#include <sys/file.h>
#include "his.h"
#include "externs.h"
#include <time.h>
#define DEBUG 1
#undef DEBUG
static datum content, inputkey;
static char dboutput[1025];
static char dbinput[1025];
#if 0
enum {
SUBJECT, FROM, NAME
};
#endif
char *
DBfetch(key)
char *key;
{
char *ptr;
if (key == NULL)
return NULL;
sprintf(dbinput, "%.510s", key);
inputkey.dptr = dbinput;
inputkey.dsize = strlen(dbinput);
content.dptr = dboutput;
ptr = (char *)HISfilesfor(&inputkey, &content);
if (ptr == NULL) {
return NULL;
}
return ptr;
}
int
DBstore(key, paths)
char *key;
char *paths;
{
time_t now;
time(&now);
if (key == NULL)
return -1;
sprintf(dbinput, "%.510s", key);
inputkey.dptr = dbinput;
inputkey.dsize = strlen(dbinput);
if (HISwrite(&inputkey, now, paths) == FALSE) {
return -1;
} else {
return 0;
}
}
int
storeDB(mid, paths)
char *mid;
char *paths;
{
char *ptr;
ptr = DBfetch(mid);
if (ptr != NULL) {
return 0;
} else {
return DBstore(mid, paths);
}
}
int
my_mkdir(idir, mode)
char *idir;
int mode;
{
char buffer[LEN];
char *ptr, *dir = buffer;
struct stat st;
strncpy(dir, idir, LEN - 1);
for (; dir != NULL && *dir;) {
ptr = (char *)strchr(dir, '/');
if (ptr != NULL) {
*ptr = '\0';
}
if (stat(dir, &st) != 0) {
if (mkdir(dir, mode) != 0)
return -1;
}
chdir(dir);
if (ptr != NULL)
dir = ptr + 1;
else
dir = ptr;
}
return 0;
}
|