757ac469ee9d7b22614df8490a2e859771a17027
[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         GtkTreeModel *model;
99         struct task **tasks_cur;
100         struct task *task;
101         int i;
102         GtkTreeIter iter;
103         const char *project;
104
105         log_fct_enter();
106         ui_taskpanel_update(NULL);
107
108         if (tasks) {
109                 ui_tasktree_update(NULL);
110                 tw_task_list_free(tasks);
111         }
112
113         tasks = tw_get_all_tasks(ui_get_status_filter());
114
115         model = gtk_tree_view_get_model(GTK_TREE_VIEW(w_treeview));
116         gtk_list_store_clear(GTK_LIST_STORE(model));
117
118         if (tasks) {
119                 for (tasks_cur = tasks, i = 0; *tasks_cur; tasks_cur++, i++) {
120                         task = (*tasks_cur);
121
122                         gtk_list_store_append(GTK_LIST_STORE(model), &iter);
123
124                         if (task->project)
125                                 project = task->project;
126                         else
127                                 project = "";
128
129                         gtk_list_store_set(GTK_LIST_STORE(model),
130                                            &iter,
131                                            COL_ID, (*tasks_cur)->id,
132                                            COL_DESCRIPTION,
133                                            (*tasks_cur)->description,
134                                            COL_PROJECT, project,
135                                            COL_UUID, (*tasks_cur)->uuid,
136                                            COL_PRIORITY, (*tasks_cur)->priority,
137                                            -1);
138                 }
139                 ui_projecttree_update(tasks);
140                 ui_tasktree_update(tasks);
141         } else {
142                 dialog = gtk_message_dialog_new(NULL,
143                                                 GTK_DIALOG_DESTROY_WITH_PARENT,
144                                                 GTK_MESSAGE_ERROR,
145                                                 GTK_BUTTONS_CLOSE,
146                                                 _("Error loading tasks, verify "
147                                                   "that a supported version of "
148                                                   "taskwarrior is installed "));
149                 gtk_dialog_run(GTK_DIALOG(dialog));
150                 gtk_widget_destroy(dialog);
151         }
152         log_fct(__func__, "EXIT");
153 }
154
155 static int cursor_changed_cbk(GtkTreeView *treeview, gpointer data)
156 {
157         log_fct_enter();
158
159         ui_taskpanel_update(ui_tasktree_get_selected_task());
160
161         log_fct_exit();
162
163         return FALSE;
164 }
165
166 static void log_init()
167 {
168         char *home, *path, *dir;
169
170         home = getenv("HOME");
171
172         if (!home)
173                 return ;
174
175         dir = malloc(strlen(home)+1+strlen(".ptask")+1);
176         sprintf(dir, "%s/%s", home, ".ptask");
177         mkdir(dir, 0777);
178
179         path = malloc(strlen(dir)+1+strlen("log")+1);
180         sprintf(path, "%s/%s", dir, "log");
181
182         log_open(path);
183
184         free(dir);
185         free(path);
186 }
187
188 int main(int argc, char **argv)
189 {
190         GtkWindow *window;
191         GtkBuilder *builder;
192         int optc, cmdok, opti;
193
194         program_name = argv[0];
195
196         setlocale(LC_ALL, "");
197
198 #if ENABLE_NLS
199         bindtextdomain(PACKAGE, LOCALEDIR);
200         textdomain(PACKAGE);
201 #endif
202
203         cmdok = 1;
204         while ((optc = getopt_long(argc, argv, "vhd:", long_options,
205                                    &opti)) != -1) {
206                 switch (optc) {
207                 case 'h':
208                         print_help();
209                         exit(EXIT_SUCCESS);
210                 case 'v':
211                         print_version();
212                         exit(EXIT_SUCCESS);
213                 case 'd':
214                         log_level = atoi(optarg);
215                         log_info(_("Enables debug mode."));
216                         break;
217                 default:
218                         cmdok = 0;
219                         break;
220                 }
221         }
222
223         if (!cmdok || optind != argc) {
224                 fprintf(stderr, _("Try `%s --help' for more information.\n"),
225                         program_name);
226                 exit(EXIT_FAILURE);
227         }
228
229         log_init();
230
231         gtk_init(NULL, NULL);
232
233         settings = g_settings_new("ptask");
234
235         builder = gtk_builder_new();
236         gtk_builder_add_from_file
237                 (builder,
238                  PACKAGE_DATA_DIR G_DIR_SEPARATOR_S "ptask.glade",
239                  NULL);
240         window = create_window(builder, settings);
241
242         ui_taskpanel_init(builder);
243         ui_tasktree_init(builder);
244         ui_projecttree_init(builder);
245
246         w_treeview = GTK_TREE_VIEW(gtk_builder_get_object(builder, "tasktree"));
247
248         gtk_builder_connect_signals(builder, NULL);
249
250         g_signal_connect(w_treeview,
251                          "cursor-changed", (GCallback)cursor_changed_cbk,
252                          tasks);
253
254         g_object_unref(G_OBJECT(builder));
255
256         refresh();
257
258         gtk_widget_show_all(GTK_WIDGET(window));
259
260         gtk_main();
261
262         exit(EXIT_SUCCESS);
263 }