Add some missing includes
[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         return 1;
63 }
64
65 int tag_add(const char *author, const char *tag, uint64_t record) {
66         char filename[FILENAME_MAX];
67         struct blergref t;
68
69         memset(t.author, 0, 32);
70         strncpy(t.author, author, 32);
71         t.record = record;
72
73         switch(tag[0]) {
74         case '#':
75                 snprintf(filename, FILENAME_MAX, "%s/%s", blergconf.hash_tags_path, tag + 1);
76                 break;
77         case '@':
78                 snprintf(filename, FILENAME_MAX, "%s/%s", blergconf.ref_tags_path, tag + 1);
79                 break;
80         default:
81                 fprintf(stderr, "Invalid tag type: %s\n", tag);
82                 return 0;
83         }
84
85         int tag_fd = open(filename, O_WRONLY | O_APPEND | O_CREAT, 0600);
86         flock(tag_fd, LOCK_EX);
87         if (tag_fd == -1) {
88                 perror("Could not open tag file");
89                 return 0;
90         }
91         int n = write(tag_fd, &t, sizeof(struct blergref));
92         if (n < sizeof(struct blergref)) {
93                 perror("Could not write new tag");
94                 return 0;
95         }
96         flock(tag_fd, LOCK_UN);
97         close(tag_fd);
98
99         return 1;
100 }
101
102 struct blergref * tag_list(const char *tag, uint64_t offset, int *count, int direction) {
103         char filename[FILENAME_MAX];
104         struct stat st;
105         struct blergref *taglist;
106         struct blergref *retlist;
107         uint64_t n_tag_records;
108
109         if (!valid_tag_name(tag + 1))
110                 return NULL;
111
112         if (!(direction == 1 || direction == -1)) {
113                 fprintf(stderr, "Invalid direction: %d\n", direction);
114                 return NULL;
115         }
116         
117         switch(tag[0]) {
118         case '#':
119                 snprintf(filename, FILENAME_MAX, "%s/%s", blergconf.hash_tags_path, tag + 1);
120                 break;
121         case '@':
122                 snprintf(filename, FILENAME_MAX, "%s/%s", blergconf.ref_tags_path, tag + 1);
123                 break;
124         default:
125                 fprintf(stderr, "Invalid tag type: %s\n", tag);
126                 return NULL;
127         }
128
129         int tag_fd = open(filename, O_RDONLY, 0600);
130         if (tag_fd == -1) {
131                 perror("Could not open tag file");
132                 goto tag_list_open_failed;
133         }
134
135         fstat(tag_fd, &st);
136         if (st.st_size == 0) {
137                 goto tag_list_map_failed;
138         }
139         n_tag_records = st.st_size / sizeof(struct blergref);
140         if (*count > n_tag_records - offset)
141                 *count = n_tag_records - offset;
142         if (offset > n_tag_records) {
143                 fprintf(stderr, "Cannot access tag record beyond end\n");
144                 goto tag_list_map_failed;
145         }
146
147         taglist = (struct blergref *) mmap(NULL, st.st_size, PROT_READ, MAP_SHARED, tag_fd, 0);
148         if (taglist == MAP_FAILED) {
149                 perror("Could not mmap tag file");
150                 goto tag_list_map_failed;
151         }
152         retlist = (struct blergref *) malloc(sizeof(struct blergref) * *count);
153         if (retlist == NULL) {
154                 perror("Could not allocate memory for tag list");
155                 goto tag_list_malloc_failed;
156         }
157         switch(direction) {
158         case 1:
159                 memcpy(retlist, taglist + offset, sizeof(struct blergref) * *count);
160                 break;
161         case -1:
162                 memcpy(retlist, taglist + (n_tag_records - *count - offset), sizeof(struct blergref) * *count);
163                 break;
164         }
165
166         munmap(taglist, st.st_size);
167         close(tag_fd);
168         return retlist;
169
170 tag_list_malloc_failed:
171         munmap(taglist, st.st_size);
172 tag_list_map_failed:
173         close(tag_fd);
174 tag_list_open_failed:
175         *count = 0;
176         return NULL;
177 }
178
179 int tag_exists(const char *tag) {
180         char filename[FILENAME_MAX];
181
182         if (!valid_tag_name(tag + 1))
183                 return 0;
184
185         if (!(tag[0] == '@' || tag[0] == '#')) {
186                 fprintf(stderr, "Invalid tag: %s\n", tag);
187                 return 0;
188         }
189
190         switch(tag[0]) {
191         case '#':
192                 snprintf(filename, FILENAME_MAX, "%s/%s", blergconf.hash_tags_path, tag + 1);
193                 break;
194         case '@':
195                 snprintf(filename, FILENAME_MAX, "%s/%s", blergconf.ref_tags_path, tag + 1);
196                 break;
197         default:
198                 fprintf(stderr, "Invalid tag type: %s\n", tag);
199                 return 0;
200         }
201         if (access(filename, F_OK) == -1)
202                 return 0;
203         else
204                 return 1;
205 }