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