cleanup
[ptask.git] / src / main.c
1 /*
2  * Copyright (C) 2012-2013 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 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <getopt.h>
23 #include <sys/stat.h>
24
25 #include <json/json.h>
26
27 #include <glib/gi18n.h>
28
29 #include <config.h>
30
31 #include <log.h>
32 #include <note.h>
33 #include <tw.h>
34 #include <ui.h>
35 #include <ui_projecttree.h>
36 #include <ui_taskpanel.h>
37 #include <ui_tasktree.h>
38
39 static const char *program_name;
40 static struct task **tasks;
41 static GtkTreeView *w_treeview;
42 static GSettings *settings;
43
44 enum {
45         COL_ID,
46         COL_DESCRIPTION,
47         COL_PROJECT,
48         COL_UUID,
49         COL_PRIORITY
50 };
51
52 static struct option long_options[] = {
53         {"version", no_argument, 0, 'v'},
54         {"help", no_argument, 0, 'h'},
55         {"debug", required_argument, 0, 'd'},
56         {0, 0, 0, 0}
57 };
58
59 static void print_version()
60 {
61         printf("ptask %s\n", VERSION);
62         printf(_("Copyright (C) %s jeanfi@gmail.com\n"
63                  "License GPLv2: GNU GPL version 2 or later "
64                  "<http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>\n"
65                  "This is free software: you are free to change and "
66                  " redistribute it.\n"
67                  "There is NO WARRANTY, to the extent permitted by law.\n"),
68                "2012-2013");
69 }
70
71 static void print_help()
72 {
73         printf(_("Usage: %s [OPTION]...\n"), program_name);
74
75         puts(_("ptask is a task management user interface based"
76                " on taskwarrior."));
77
78         puts("");
79         puts(_("Options:"));
80         puts(_("  -h, --help          display this help and exit\n"
81                "  -v, --version       display version information and exit"));
82
83         puts("");
84
85         puts(_("  -d, --debug=LEVEL   "
86                "set the debug level, integer between 0 and 3"));
87
88         puts("");
89
90         printf(_("Report bugs to: %s\n"), PACKAGE_BUGREPORT);
91         puts("");
92         printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
93 }
94
95 void refresh()
96 {
97         GtkWidget *dialog;
98         const char *current_prj, *current_uuid;
99         struct task **old_tasks;
100
101         log_fct_enter();
102         ui_taskpanel_update(NULL);
103
104         if (tasks) {
105                 old_tasks = tasks;
106                 current_prj = ui_projecttree_get_project();
107                 current_uuid = ui_tasktree_get_task_uuid();
108                 ui_tasktree_update(NULL, NULL);
109         } else {
110                 old_tasks = NULL;
111                 current_prj = NULL;
112                 current_uuid = NULL;
113         }
114
115         tasks = tw_get_all_tasks(ui_get_status_filter());
116
117         if (tasks) {
118                 ui_projecttree_update(tasks);
119                 ui_tasktree_update(tasks, current_prj);
120                 if (current_uuid)
121                         ui_tasktree_set_selected_task(current_uuid);
122         } else {
123                 dialog = gtk_message_dialog_new(NULL,
124                                                 GTK_DIALOG_DESTROY_WITH_PARENT,
125                                                 GTK_MESSAGE_ERROR,
126                                                 GTK_BUTTONS_CLOSE,
127                                                 _("Error loading tasks, verify "
128                                                   "that a supported version of "
129                                                   "taskwarrior is installed "));
130                 gtk_dialog_run(GTK_DIALOG(dialog));
131                 gtk_widget_destroy(dialog);
132         }
133
134         if (old_tasks)
135                 tw_task_list_free(old_tasks);
136
137         log_fct_exit();
138 }
139
140 static void log_init()
141 {
142         char *home, *path, *dir;
143
144         home = getenv("HOME");
145
146         if (!home)
147                 return ;
148
149         dir = malloc(strlen(home)+1+strlen(".ptask")+1);
150         sprintf(dir, "%s/%s", home, ".ptask");
151         mkdir(dir, 0777);
152
153         path = malloc(strlen(dir)+1+strlen("log")+1);
154         sprintf(path, "%s/%s", dir, "log");
155
156         log_open(path);
157
158         free(dir);
159         free(path);
160 }
161
162 int main(int argc, char **argv)
163 {
164         GtkWindow *window;
165         GtkBuilder *builder;
166         int optc, cmdok, opti;
167
168         program_name = argv[0];
169
170         setlocale(LC_ALL, "");
171
172 #if ENABLE_NLS
173         bindtextdomain(PACKAGE, LOCALEDIR);
174         textdomain(PACKAGE);
175 #endif
176
177         cmdok = 1;
178         while ((optc = getopt_long(argc, argv, "vhd:", long_options,
179                                    &opti)) != -1) {
180                 switch (optc) {
181                 case 'h':
182                         print_help();
183                         exit(EXIT_SUCCESS);
184                 case 'v':
185                         print_version();
186                         exit(EXIT_SUCCESS);
187                 case 'd':
188                         log_level = atoi(optarg);
189                         log_info(_("Enables debug mode."));
190                         break;
191                 default:
192                         cmdok = 0;
193                         break;
194                 }
195         }
196
197         if (!cmdok || optind != argc) {
198                 fprintf(stderr, _("Try `%s --help' for more information.\n"),
199                         program_name);
200                 exit(EXIT_FAILURE);
201         }
202
203         log_init();
204
205         gtk_init(NULL, NULL);
206
207         settings = g_settings_new("ptask");
208
209         builder = gtk_builder_new();
210         gtk_builder_add_from_file
211                 (builder,
212                  PACKAGE_DATA_DIR G_DIR_SEPARATOR_S "ptask.glade",
213                  NULL);
214         window = create_window(builder, settings);
215
216         ui_taskpanel_init(builder);
217         ui_tasktree_init(builder);
218         ui_projecttree_init(builder);
219
220         w_treeview = GTK_TREE_VIEW(gtk_builder_get_object(builder, "tasktree"));
221
222         gtk_builder_connect_signals(builder, NULL);
223
224         g_object_unref(G_OBJECT(builder));
225
226         refresh();
227
228         gtk_widget_show_all(GTK_WIDGET(window));
229
230         gtk_main();
231
232         exit(EXIT_SUCCESS);
233 }