release 0.0.2
[ptask.git] / src / note.c
1 /*
2  * Copyright (C) 2010-2012 jeanfi@gmail.com
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA
18  */
19
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <sys/stat.h>
24 #include <sys/types.h>
25
26 #include <note.h>
27
28 static char *get_path(const char *uuid)
29 {
30         char *home, *dir, *path;
31
32         home = getenv("HOME");
33
34         if (!home) {
35                 fprintf(stderr, "HOME environment variable not defined\n");
36                 return NULL;
37         }
38
39         dir = malloc(strlen(home) + 1 + strlen(".task") + 1);
40         sprintf(dir, "%s/%s", home, ".task");
41         mkdir(dir, 0777);
42
43         path = malloc(strlen(dir) + 1 + strlen(uuid) + strlen(".note") + 1);
44         sprintf(path, "%s/%s.note", dir, uuid);
45
46         free(dir);
47
48         return path;
49 }
50
51 void note_put(const char *uuid, const char *note)
52 {
53         char *path;
54         FILE *f;
55
56         path = get_path(uuid);
57
58         if (!path)
59                 return ;
60
61         printf("note_put %s %s %s\n", path, uuid, note);
62
63         f = fopen(path, "w");
64
65         if (f) {
66                 fwrite(note, 1, strlen(note), f);
67                 fclose(f);
68         } else {
69                 fprintf(stderr, "Failed to open %s\n", path);
70         }
71
72         free(path);
73 }
74
75 char *note_get(const char *uuid)
76 {
77         char *str, *tmp, *path;
78         FILE *f;
79         char buf[1024];
80         size_t s;
81
82         path = get_path(uuid);
83
84         if (!path)
85                 return NULL;
86
87         str = strdup("");
88
89         f = fopen(path, "r");
90
91         if (f) {
92                 while ((s = fread(buf, 1, 1024, f))) {
93                         tmp = malloc(strlen(str) + s + (size_t)1);
94                         memcpy(tmp, str, strlen(str));
95                         memcpy(tmp + strlen(str), buf, s);
96                         tmp[strlen(str) + s] = '\0';
97                         free(str);
98                         str = tmp;
99                 }
100                 fclose(f);
101         } else {
102                 fprintf(stderr, "Failed to open %s\n", path);
103         }
104
105         return str;
106 }