Use blergconf for paths
[blerg.git] / database / tags.c
1 /* Blerg is (C) 2011 The Dominion of Awesome, and is distributed under a
2  * BSD-style license.  Please see the COPYING file for details.
3  */
4 #include <string.h>
5 #include <stdlib.h>
6 #include <stdio.h>
7 #include <unistd.h>
8 #include <fcntl.h>
9 #include <sys/types.h>
10 #include <sys/stat.h>
11 #include <sys/file.h>
12 #include <sys/mman.h>
13 #include "tags.h"
14 #include "util.h"
15 #include "database.h"
16 #include "config.h"
17 #include "configuration.h"
18
19
20 int tag_scan(const char *author, const char *data, int len, uint64_t record) {
21         char *taglist[MAX_TAGS_PER_RECORD];
22         char last_char = ' ';
23         int n_tags = 0;
24         int i, j;
25
26         for (i = 0; i < len; i++) {
27 tag_scan_start:
28                 if (WHITESPACE(last_char) && (data[i] == '#' || data[i] == '@')) {
29                         if (n_tags == MAX_TAGS_PER_RECORD) {
30                                 fprintf(stderr, "Too many tags in message\n");
31                                 break;
32                         }
33                         int begin = i;
34                         int start = ++i;
35                         while (i < len && VALID_CHAR(data[i]) && (i - start < MAX_TAG_LENGTH)) {
36                                 i++;
37                         }
38                         if (start - i == 0) continue;
39                         char *tag = calloc(1, MAX_TAG_LENGTH + 2);
40                         memcpy(tag, &data[begin], i - begin);
41                         for (j = 0; j < n_tags; j++) {
42                                 if (!strncmp(tag, taglist[j], MAX_TAG_LENGTH)) {
43                                         // We already have this tag.  Start over.
44                                         free(tag);
45                                         last_char = data[i-1];
46                                         goto tag_scan_start;
47                                 }
48                         }
49                         taglist[n_tags] = tag;
50                         n_tags++;
51                         last_char = data[i-1];
52                         // We goto here so i doesn't get incremented
53                         goto tag_scan_start;
54                 }
55                 last_char = data[i];
56         }
57
58         for (i = 0; i < n_tags; i++) {
59                 tag_add(author, taglist[i], record);
60                 free(taglist[i]);
61         }
62 }
63
64 int tag_add(const char *author, const char *tag, uint64_t record) {
65         char filename[FILENAME_MAX];
66         struct blergref t;
67
68         memset(t.author, 0, 32);
69         strncpy(t.author, author, 32);
70         t.record = record;
71
72         switch(tag[0]) {
73         case '#':
74                 snprintf(filename, FILENAME_MAX, "%s/%s", blergconf.hash_tags_path, tag + 1);
75                 break;
76         case '@':
77                 snprintf(filename, FILENAME_MAX, "%s/%s", blergconf.ref_tags_path, tag + 1);
78                 break;
79         default:
80                 fprintf(stderr, "Invalid tag type: %s\n", tag);
81                 return 0;
82         }
83
84         int tag_fd = open(filename, O_WRONLY | O_APPEND | O_CREAT, 0600);
85         flock(tag_fd, LOCK_EX);
86         if (tag_fd == -1) {
87                 perror("Could not open tag file");
88                 return 0;
89         }
90         int n = write(tag_fd, &t, sizeof(struct blergref));
91         if (n < sizeof(struct blergref)) {
92                 perror("Could not write new tag");
93                 return 0;
94         }
95         flock(tag_fd, LOCK_UN);
96         close(tag_fd);
97
98         return 1;
99 }
100
101 struct blergref * tag_list(const char *tag, uint64_t offset, int *count, int direction) {
102         char filename[FILENAME_MAX];
103         struct stat st;
104         struct blergref *taglist;
105         struct blergref *retlist;
106         uint64_t n_tag_records;
107
108         if (!valid_tag_name(tag + 1))
109                 return NULL;
110
111         if (!(direction == 1 || direction == -1)) {
112                 fprintf(stderr, "Invalid direction: %d\n", direction);
113                 return NULL;
114         }
115         
116         switch(tag[0]) {
117         case '#':
118                 snprintf(filename, FILENAME_MAX, "%s/%s", blergconf.hash_tags_path, tag + 1);
119                 break;
120         case '@':
121                 snprintf(filename, FILENAME_MAX, "%s/%s", blergconf.ref_tags_path, tag + 1);
122                 break;
123         default:
124                 fprintf(stderr, "Invalid tag type: %s\n", tag);
125                 return NULL;
126         }
127
128         int tag_fd = open(filename, O_RDONLY, 0600);
129         if (tag_fd == -1) {
130                 perror("Could not open tag file");
131                 goto tag_list_open_failed;
132         }
133
134         fstat(tag_fd, &st);
135         if (st.st_size == 0) {
136                 goto tag_list_map_failed;
137         }
138         n_tag_records = st.st_size / sizeof(struct blergref);
139         if (*count > n_tag_records - offset)
140                 *count = n_tag_records - offset;
141         if (offset > n_tag_records) {
142                 fprintf(stderr, "Cannot access tag record beyond end\n");
143                 goto tag_list_map_failed;
144         }
145
146         taglist = (struct blergref *) mmap(NULL, st.st_size, PROT_READ, MAP_SHARED, tag_fd, 0);
147         if (taglist == MAP_FAILED) {
148                 perror("Could not mmap tag file");
149                 goto tag_list_map_failed;
150         }
151         retlist = (struct blergref *) malloc(sizeof(struct blergref) * *count);
152         if (retlist == NULL) {
153                 perror("Could not allocate memory for tag list");
154                 goto tag_list_malloc_failed;
155         }
156         switch(direction) {
157         case 1:
158                 memcpy(retlist, taglist + offset, sizeof(struct blergref) * *count);
159                 break;
160         case -1:
161                 memcpy(retlist, taglist + (n_tag_records - *count - offset), sizeof(struct blergref) * *count);
162                 break;
163         }
164
165         munmap(taglist, st.st_size);
166         close(tag_fd);
167         return retlist;
168
169 tag_list_malloc_failed:
170         munmap(taglist, st.st_size);
171 tag_list_map_failed:
172         close(tag_fd);
173 tag_list_open_failed:
174         *count = 0;
175         return NULL;
176 }
177
178 int tag_exists(const char *tag) {
179         char filename[FILENAME_MAX];
180
181         if (!valid_tag_name(tag + 1))
182                 return 0;
183
184         if (!(tag[0] == '@' || tag[0] == '#')) {
185                 fprintf(stderr, "Invalid tag: %s\n", tag);
186                 return 0;
187         }
188
189         switch(tag[0]) {
190         case '#':
191                 snprintf(filename, FILENAME_MAX, "%s/%s", blergconf.hash_tags_path, tag + 1);
192                 break;
193         case '@':
194                 snprintf(filename, FILENAME_MAX, "%s/%s", blergconf.ref_tags_path, tag + 1);
195                 break;
196         default:
197                 fprintf(stderr, "Invalid tag type: %s\n", tag);
198                 return 0;
199         }
200         if (access(filename, F_OK) == -1)
201                 return 0;
202         else
203                 return 1;
204 }