This repository has been archived by the owner on Jun 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
smd-applet.vala
1025 lines (908 loc) · 31.4 KB
/
smd-applet.vala
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Released under the terms of GPLv3 or at your option any later version.
// No warranties.
// Copyright Enrico Tassi <[email protected]>
errordomain Exit { ABORT }
bool verbose = false;
void debug(string message) {
if (verbose) stderr.printf("DEBUG: %s\n",message);
}
// minimalistic NetworkManager interface
[DBus (name = "org.freedesktop.NetworkManager")]
interface NetworkManager : Object {
public signal void state_changed(uint state); // throws IOErrror;
public abstract uint state { owned get; }
}
const string NM_SERVICE = "org.freedesktop.NetworkManager";
const string NM_PATH = "/org/freedesktop/NetworkManager";
// Checks if there is a connection
// 70 is NM_STATE_CONNECTED_GLOBAL in NetworkManager >= 0.9
// 3 is NM_STATE_CONNECTED in NetworkManager < 0.9
// We may want to check for >= 50 or 60, since they are respectively LOCAL
// and SITE connections.
static bool is_nm_connected(uint code) {
return code == 3 || code == 70;
}
// a simple class to pass data from the child process to the
// notifier
class Event {
public string message = null;
public string message_icon = "gtk-about";
public bool enter_network_error_mode = false;
public bool enter_error_mode = false;
public bool transient_error_message = false;
// fields meaningful for the error mode only
public string context = null;
public string cause = null;
public string permissions = null;
public string mail_name = null;
public string mail_body = null;
public Gee.ArrayList<string> commands = null;
// constructors
public static Event error(string account, string host,
string context, string cause, string? permissions, string? mail_name,
string? mail_body, Gee.ArrayList<string> commands) {
var e = new Event();
e.message = "An error occurred, click on the icon for more details";
e.message_icon = "error";
e.enter_error_mode = true;
e.cause = cause;
e.context = context;
e.permissions = permissions;
e.mail_name = mail_name;
e.mail_body = mail_body;
e.commands = commands;
return e;
}
public static Event generic_error(string cause) {
var e = new Event();
e.message = "A failure occurred: "+cause;
e.message_icon = "dialog-warning";
e.transient_error_message = true;
return e;
}
public static Event network_error() {
var e = new Event();
e.message = "A persistent network failure occurred";
e.message_icon = "dialog-warning";
e.enter_network_error_mode = true;
return e;
}
public static Event stats(
string account,string host,int new_mails,int del_mails)
{
string preamble = "Synchronize with %s:\n".printf(account);
var e = new Event();
if (new_mails > 0 && del_mails > 0) {
e.message = "%s%d new messages\n%d deleted messages".
printf(preamble,new_mails,del_mails);
} else if (new_mails > 0) {
e.message = "%s%d new messages".printf(preamble,new_mails);
} else {
e.message = "%s%d deleted messages".printf(preamble,del_mails);
}
return e;
}
public bool is_error_event() {
return (this.enter_error_mode ||
this.enter_network_error_mode ||
this.transient_error_message);
}
}
static const string SMD_LOOP = "/bin/smd-loop";
static const string SMD_PUSH = "/bin/smd-push";
static const string SMD_APPLET_UI = "/share/syncmaildir-applet/smd-applet.ui";
static const string SMD_APPLET_DESKTOP = "/share/applications/smd-applet.desktop";
static const string GNOME_AUTOSTART_DISABLED ="X-GNOME-Autostart-enabled=false";
static string SMD_LOGS_DIR;
static string SMD_LOOP_CFG;
static string SMD_PP_DEF_CFG;
static string XDG_AUTORUN_FILE;
// the main class containing all the data smd-applet will use
class smdApplet : Gtk.Application {
// =================== the constants ===============================
// settings keys
static const string key_newmail = "notify-new-mail";
// paths, set by main() to something that depends on the
// installation path
public static string smd_loop_cmd = null;
public static string smd_applet_ui = null;
public static string smd_push_cmd = null;
public static string smd_applet_desktop = null;
// =================== the data =====================================
// The builder
Gtk.Builder builder = null;
// main widgets
Gtk.StatusIcon si = null;
Gtk.Window win = null;
Gtk.Window err_win = null;
Gtk.Notebook notebook = null;
Gtk.Switch sync_active = null;
// Stuff for logs display
Gtk.ComboBoxText cblogs = null;
Gee.ArrayList<string> lognames = null;
// the gsettings entry point
GLib.Settings settings = null;
// the thread to manage the child smd-loop instance
GLib.Thread<void *> thread = null;
bool thread_die = false;
GLib.Pid pid; // smd-loop pid, initially set to 0
// communication structure between the child process (managed by a thread
// and the notifier timeout handler).
Mutex events_lock = Mutex();
Gee.ArrayList<Event> events = null;
// if the program is stuck
bool error_mode = false;
bool network_error_mode = false;
bool config_wait_mode;
GLib.HashTable<Gtk.Widget,string> command_hash = null;
// dbus connection to NetworkManager
NetworkManager net_manager = null;
// last persistent notification, to avoid its garbage collection
// so that the callback is called when the button is clicked
Notify.Notification notification = null;
bool notification_server_has_persistence = false;
static string menu_ui = """
<interface>
<menu id='app-menu'>
<section>
<item>
<attribute name='label' translatable='yes'>_Quit</attribute>
<attribute name='action'>app.quit</attribute>
</item>
</section>
</menu>
</interface>
""";
// ======================= constructor ================================
// initialize data structures and build gtk+ widgets
public smdApplet() throws Exit {
set_application_id("org.syncmaildir");
try { register(); }
catch (GLib.Error e) { stderr.printf("%s\n",e.message); };
// load the ui file
builder = new Gtk.Builder ();
try { builder.add_from_file (smd_applet_ui); }
catch (GLib.Error e) {
stderr.printf("%s\n",e.message);
throw new Exit.ABORT("Unable to load the ui file");
}
try { builder.add_from_string (menu_ui, menu_ui.length); }
catch (GLib.Error e) {
stderr.printf("%s\n",e.message);
throw new Exit.ABORT("Unable to load the menu ui string");
}
// events queue and mutex
events = new Gee.ArrayList<Event>();
// gsettings
settings = new Settings("org.syncmaildir.applet");
// connect to dbus
try {
net_manager=Bus.get_proxy_sync(BusType.SYSTEM,NM_SERVICE,NM_PATH);
net_manager.state_changed.connect((s) => {
if (is_nm_connected(s)) sync_active.set_active(true);
else sync_active.set_active(false);
});
} catch (GLib.Error e) {
stderr.printf("%s\n",e.message);
net_manager=null;
}
// load widgets and attach callbacks
var simple_mainwin = builder.get_object("wMain") as Gtk.Window;
win = new Gtk.ApplicationWindow(this);
simple_mainwin.get_child().reparent(win);
var w = 0;
var h = 0;
simple_mainwin.get_size_request(out w, out h);
win.set_size_request(w,h);
win.set_title(simple_mainwin.get_title());
err_win = builder.get_object("wError") as Gtk.Window;
var lcopyright = builder.get_object("lCopyright") as Gtk.Label;
lcopyright.set_text("Copyright " + SMDConf.COPYRIGHT);
var logs_vb = builder.get_object("vbLog") as Gtk.Grid;
cblogs = new Gtk.ComboBoxText();
lognames = new Gee.ArrayList<string>();
logs_vb.attach(cblogs,0,0,1,1);
cblogs.show();
update_logcontents();
var bnotify = builder.get_object("sNotify") as Gtk.Switch;
bnotify.set_active(settings.get_boolean(key_newmail));
bnotify.notify["active"].connect(() => {
settings.set_boolean(key_newmail,bnotify.active);
});
var bautostart = builder.get_object("sAutostart") as Gtk.Switch;
try { string content;
if (GLib.FileUtils.get_contents(XDG_AUTORUN_FILE,out content)){
if (GLib.Regex.match_simple(GNOME_AUTOSTART_DISABLED,content))
bautostart.set_active(false);
else bautostart.set_active(true);
} else bautostart.set_active(false);
} catch (FileError e) { stderr.printf("%s\n",e.message); }
bautostart.notify["active"].connect(() => {
if (bautostart.active) {
string content;
try {
GLib.FileUtils.get_contents(smd_applet_desktop,out content);
GLib.FileUtils.set_contents(XDG_AUTORUN_FILE,content);
} catch (FileError e) { stderr.printf("%s\n",e.message); }
} else {
GLib.FileUtils.remove(XDG_AUTORUN_FILE);
}
});
var bc = builder.get_object("bClose") as Gtk.Button;
bc.clicked.connect(close_err_action);
var bel = builder.get_object("bEditLoopCfg") as Gtk.Button;
bel.clicked.connect((b) => {
// if not existent, create the template first
try {
if (!is_smd_loop_configured()){
GLib.Process.spawn_command_line_sync(
"%s -t".printf(smd_loop_cmd));
}
string cmd = "gnome-open %s".printf(SMD_LOOP_CFG);
GLib.Process.spawn_command_line_async(cmd);
is_smd_loop_configured();
} catch (GLib.SpawnError e) {
stderr.printf("%s\n",e.message);
}
});
var bepp = builder.get_object("bEditPushPullCfg") as Gtk.Button;
bepp.clicked.connect((b) => {
// if not existent, create the template first
try {
if (!is_smd_pushpull_configured()){
GLib.Process.spawn_command_line_sync(
"%s -t".printf(smd_push_cmd));
}
string cmd = "gnome-open %s".printf(SMD_PP_DEF_CFG);
GLib.Process.spawn_command_line_async(cmd);
is_smd_pushpull_configured();
} catch (GLib.SpawnError e) {
stderr.printf("%s\n",e.message);
}
});
// menu popped up when the user clicks on the notification area
sync_active = builder.get_object("sSyncActive") as Gtk.Switch;
sync_active.notify["active"].connect(() => {
if (sync_active.get_active()) unpause();
else pause();
});
notebook = builder.get_object("nMain") as Gtk.Notebook;
update_loglist();
GLib.Timeout.add(2000,(() => {
if (win.visible) {
update_loglist(); update_logcontents();
}
return true; }));
// status icon
si = new Gtk.StatusIcon.from_icon_name("mail-send-receive");
si.set_visible(true);
si.set_tooltip_text("smd-applet is running");
si.activate.connect((s) => {
if ( error_mode )
err_win.reshow_with_initial_size();
else {
win.show();
if ( config_wait_mode ) notebook.page = 1;
else notebook.page = 0;
}
});
add_window(win);
activate.connect(() => { });
var quit = new SimpleAction("quit", null);
var menu = builder.get_object("app-menu") as MenuModel;
set_app_menu(menu);
add_action(quit);
quit.activate.connect(() => {
thread_die = true;
if ((int)pid != 0) {
debug("sending SIGTERM to %d".printf(-(int)pid));
Posix.kill((Posix.pid_t)(-(int)pid),Posix.SIGTERM);
}
this.quit();
});
// notification system
List<string> l = Notify.get_server_caps();
notification_server_has_persistence = (0 <= l.index("persistence"));
// error mode data
command_hash = new GLib.HashTable<Gtk.Widget,string>(
GLib.direct_hash,GLib.str_equal);
}
// ===================== smd-loop handling ============================
// This thread fills the event queue, parsing the
// stdout of a child process
private void *smdThread() {
bool rc = true;
while(rc && !thread_die){
debug("(re)starting smd-loop");
try { rc = run_smd_loop(); }
catch (Exit e) { rc = false; } // unrecoverable error
}
return null;
}
// force starts the thread even if there is no connection
private void start_smdThread(bool force = false) {
// if no network, we do not start the thread and enter pause mode
// immediately
if (!force && net_manager != null && !is_nm_connected(net_manager.state)) {
sync_active.set_active(false);
si.set_from_stock("gtk-media-pause");
} else {
// the thread fills the event queue
thread = new GLib.Thread<void *>(null, smdThread);
}
}
private bool eval_smd_loop_error_message(
string args, string account, string host) throws GLib.RegexError{
var context = new GLib.Regex("context\\(([^\\)]+)\\)");
var cause = new GLib.Regex("probable-cause\\(([^\\)]+)\\)");
var human = new GLib.Regex("human-intervention\\(([^\\)]+)\\)");
var actions=new GLib.Regex("suggested-actions\\((.*)\\) *$");
GLib.MatchInfo i_ctx=null, i_cause=null, i_human=null, i_act=null;
if (! context.match(args,0,out i_ctx)){
stderr.printf("smd-loop error with no context: %s\n",args);
return true;
}
if (! cause.match(args,0,out i_cause)){
stderr.printf("smd-loop error with no cause: %s\n",args);
return true;
}
if (! human.match(args,0,out i_human)){
stderr.printf("smd-loop error with no human: %s\n",args);
return true;
}
var has_actions = actions.match(args,0,out i_act);
if ( i_human.fetch(1) != "necessary" && i_cause.fetch(1) == "network"){
events_lock.lock();
events.insert(events.size, Event.network_error());
events_lock.unlock();
return true;
}
if ( i_human.fetch(1) != "necessary" ){
stderr.printf("smd-loop giving an avoidable error: %s\n", args);
events_lock.lock();
events.insert(events.size, Event.generic_error(i_cause.fetch(1)));
events_lock.unlock();
return true;
}
string permissions = null;
string mail_name = null;
string mail_body = null;
var commands = new Gee.ArrayList<string>(
Gee.Functions.get_equal_func_for(typeof(string)));
if (has_actions) {
string acts = i_act.fetch(1);
var r_perm = new GLib.Regex("display-permissions\\(([^\\)]+)\\)");
var r_mail = new GLib.Regex("display-mail\\(([^\\)]+)\\)");
var r_cmd = new GLib.Regex("run\\(([^\\)]+)\\)");
int from = 0;
for (;acts != null && acts.length > 0;){
MatchInfo i_cmd = null;
if ( r_perm.match(acts,0,out i_cmd) ){
i_cmd.fetch_pos(0,null,out from);
string file = i_cmd.fetch(1);
string output = null;
string err = null;
try {
GLib.Process.spawn_command_line_sync(
"ls -ld " + file, out output, out err);
permissions = output + err;
} catch (GLib.SpawnError e) {
stderr.printf("Spawning ls: %s\n",e.message);
}
} else if ( r_mail.match(acts,0,out i_cmd) ){
i_cmd.fetch_pos(0,null,out from);
string file = i_cmd.fetch(1);
string output = "";
string err = null;
try {
mail_name = file;
GLib.Process.spawn_command_line_sync(
"cat " + file, out output, out err);
mail_body = output + err;
} catch (GLib.SpawnError e) {
stderr.printf("Spawning ls: %s\n",e.message);
}
} else if ( r_cmd.match(acts,0,out i_cmd) ){
string command = i_cmd.fetch(1);
i_cmd.fetch_pos(0,null,out from);
commands.insert(commands.size,command);
} else {
stderr.printf("Unrecognized action: %s\n",acts);
break;
}
acts = acts.substring(from);
}
}
events_lock.lock();
events.insert(events.size, Event.error(
account,host,i_ctx.fetch(1), i_cause.fetch(1),
permissions, mail_name, mail_body, commands));
events_lock.unlock();
return false;
}
// return true if successful, false to stop due to an error
private bool eval_smd_loop_message(string s){
try {
GLib.MatchInfo info = null;
var r_tags = new GLib.Regex(
"^([^:]+): smd-(client|server|loop|push|pull|pushpull)@([^:]+): TAGS:(.*)$");
var r_skip = new GLib.Regex(
"^([^:]+): smd-(client|server)@([^:]+): ERROR");
if (r_skip.match(s,0,null)) { return true; }
if (!r_tags.match(s,0,out info)) {
debug("unhandled smd-loop message: %s".printf(s));
return true;
}
var account = info.fetch(1);
var host = info.fetch(3);
var tags = info.fetch(4);
GLib.MatchInfo i_args = null;
var r_stats = new GLib.Regex(" stats::(.*)$");
var r_error = new GLib.Regex(" error::(.*)$");
if (r_stats.match(tags,0,out i_args)) {
var r_neW = new GLib.Regex("new-mails\\(([0-9]+)\\)");
var r_del = new GLib.Regex("del-mails\\(([0-9]+)\\)");
GLib.MatchInfo i_new = null, i_del = null;
var args = i_args.fetch(1);
// check if matches
var has_new = r_neW.match(args,0,out i_new);
var has_del = r_del.match(args,0,out i_del);
int new_mails = 0;
if (has_new) { new_mails = int.parse(i_new.fetch(1)); }
int del_mails = 0;
if (has_del) { del_mails = int.parse(i_del.fetch(1)); }
if (host == "localhost" && (new_mails > 0 || del_mails > 0)) {
events_lock.lock();
events.insert(events.size,
Event.stats(account,host,new_mails, del_mails));
events_lock.unlock();
} else {
// we skip non-error messages from the remote host
}
return true;
} else if (r_error.match(tags,0,out i_args)) {
var args = i_args.fetch(1);
return eval_smd_loop_error_message(args,account,host);
} else {
stderr.printf("unhandled smd-loop message: %s\n",s);
return true;
}
} catch (GLib.RegexError e) { stderr.printf("%s\n",e.message); }
return true;
}
// runs smd loop once, returns true if it stopped
// with a recoverable error and thus should be restarted
private bool run_smd_loop() throws Exit {
string[] cmd = { smd_loop_cmd, "-v" };
int child_in;
int child_out;
int child_err;
char[] buff = new char[10240];
GLib.SpawnFlags flags = 0;
bool rc;
debug("spawning %s\n".printf(smd_loop_cmd));
try {
rc = GLib.Process.spawn_async_with_pipes(
null,cmd,null,flags,() => {
// create a new session
Posix.setpgid(0,0);
},
out pid, out child_in, out child_out, out child_err);
} catch (GLib.Error e) {
stderr.printf("Unable to execute "+
smd_loop_cmd+": "+e.message+"\n");
throw new Exit.ABORT("Unable to run smd-loop");
}
if (rc) {
var input = GLib.FileStream.fdopen(child_out,"r");
string s = null;
bool goon = true;
while ( goon && (s = input.gets(buff)) != null && !thread_die) {
debug("smd-loop outputs: %s".printf(s));
goon = eval_smd_loop_message(s);
debug("eval_smd_loop_message returned %d".printf((int)goon));
}
if ( s != null ) {
// smd-loop prints the error tag as its last action
if ( (s = input.gets(buff)) != null ){
stderr.printf("smd-loop gave error tag but not died\n");
stderr.printf("smd-loop has pid %d and prints %s\n",
(int)pid, s);
}
}
GLib.Process.close_pid(pid);
Posix.kill((Posix.pid_t) (-(int)pid),Posix.SIGTERM);
return goon; // maybe true, if s == null
} else {
stderr.printf("Unable to execute "+smd_loop_cmd+"\n");
throw new Exit.ABORT("Unable to run smd-loop");
}
}
// process an event in the events queue by notifying the user
// with its message
bool eat_event() {
Event e = null;
// in error mode no events are processed
if ( error_mode ) return true;
// fetch the event
events_lock.lock();
if ( events.size > 0) {
e = events.first();
events.remove_at(0);
}
events_lock.unlock();
// notification
if ( e != null && e.message != null) {
bool notify_on_newail = false;
notify_on_newail = settings.get_boolean(key_newmail);
if (e.enter_network_error_mode && network_error_mode) {
// we avoid notifying the network problem more than once
} else if ((!e.is_error_event() && notify_on_newail) ||
(e.is_error_event() && e.enter_network_error_mode)) {
notification = new Notify.Notification(
"Syncmaildir",e.message,e.message_icon);
notification.set_hint("transient",new Variant.boolean(true));
try { notification.show(); }
catch (GLib.Error e) { stderr.printf("%s\n",e.message); }
} else if (e.is_error_event()) {
notification = new Notify.Notification(
"Syncmaildir",e.message,e.message_icon);
notification.set_timeout(0);
notification.add_action("clicked","Handle error",
(not, action) => { err_win.reshow_with_initial_size(); });
try { notification.show(); }
catch (GLib.Error e) { stderr.printf("%s\n",e.message); }
}
}
// behavioural changes, like entering error mode
if ( e != null && e.enter_error_mode ) {
// {{{ error notification and widget setup
si.set_from_icon_name("error");
si.set_tooltip_text("smd-applet encountered an error");
error_mode = true;
if (!notification_server_has_persistence) si.set_visible(true);
var l_ctx = builder.get_object("lContext") as Gtk.Label;
var l_cause = builder.get_object("lCause") as Gtk.Label;
l_ctx.set_text(e.context);
l_cause.set_text(e.cause);
command_hash.remove_all();
var vb = builder.get_object("vbRun") as Gtk.Grid;
foreach(Gtk.Widget w in vb.get_children()){ vb.remove(w); }
if (e.permissions != null) {
var l = builder.get_object("lPermissions") as Gtk.Label;
l.set_text(e.permissions);
}
if (e.mail_name != null) {
var fn = builder.get_object("eMailName") as Gtk.Entry;
fn.set_text(e.mail_name);
var l = builder.get_object("tvMail") as Gtk.TextView;
Gtk.TextBuffer b = l.get_buffer();
b.set_text(e.mail_body,-1);
Gtk.TextIter it,subj;
b.get_start_iter(out it);
if (it.forward_search("Subject:",
Gtk.TextSearchFlags.TEXT_ONLY, out subj,null,null)){
var insert = b.get_insert();
b.select_range(subj,subj);
l.scroll_to_mark(insert,0.0,true,0.0,0.0);
}
}
if (e.commands != null) {
foreach (string command in e.commands) {
var hb = new Gtk.Grid();
hb.set_column_homogeneous(false);
hb.set_column_spacing(10);
string nice_command;
try {
GLib.MatchInfo i_mailto;
var mailto_rex = new GLib.Regex("^gnome-open..mailto:");
if ( mailto_rex.match(command,0,out i_mailto)) {
nice_command =
GLib.Uri.unescape_string(command).
substring(12,70) + "...";
} else {
nice_command = command;
}
} catch (GLib.RegexError e) {
nice_command = command;
}
var lbl = new Gtk.Label(nice_command);
lbl.set_alignment(0.0f,0.5f);
var but = new Gtk.Button.from_stock("gtk-execute");
command_hash.insert(but,command);
but.clicked.connect((b) => {
int cmd_status;
string output;
string error;
debug("executing: %s\n".printf(command_hash.lookup(b)));
//XXX take host into account
try{
GLib.Process.spawn_command_line_sync(
command_hash.lookup(b),
out output,out error,out cmd_status);
if (GLib.Process.if_exited(cmd_status) &&
0==GLib.Process.exit_status(cmd_status)){
// OK!
b.set_sensitive(false);
} else {
var w = new Gtk.MessageDialog(err_win,
Gtk.DialogFlags.MODAL, Gtk.MessageType.ERROR,
Gtk.ButtonsType.CLOSE,
"An error occurred:\n%s\n%s",output,error);
w.run();
w.destroy();
}
} catch (GLib.SpawnError e) {
stderr.printf("Spawning: %s\n",e.message);
}
});
hb.attach(lbl,1,0,1,1);
hb.attach(but,0,0,1,1);
vb.add(hb);
hb.show_all();
}
}
var x = builder.get_object("fDisplayPermissions") as Gtk.Widget;
x.visible = (e.permissions != null);
x = builder.get_object("fDisplayMail") as Gtk.Widget;
x.visible = (e.mail_name != null);
x = builder.get_object("fRun") as Gtk.Widget;
x.visible = (e.commands.size > 0);
// }}}
} else if (e != null && e.enter_network_error_mode ) {
// network error warning
network_error_mode = true;
si.set_from_icon_name("dialog-warning");
si.set_tooltip_text("Network error");
} else if (e != null) {
// no error
network_error_mode = false;
si.set_from_icon_name("mail-send-receive");
si.set_tooltip_text("smd-applet is running");
}
return true; // re-schedule me please
}
// ===================== named signal handlers =======================
// these are just wrappers for close_err
private void close_err_action(Gtk.Button b){ reset_to_regular_run(); }
private bool close_err_event(Gdk.EventAny e){
reset_to_regular_run();
return true;
}
private void reset_to_regular_run(bool force = false) {
err_win.hide();
error_mode = false;
si.set_tooltip_text("smd-applet is running");
si.set_from_icon_name("mail-send-receive");
debug("joining smdThread");
if (thread != null) thread.join();
thread_die = false;
debug("starting smdThread");
start_smdThread(force);
}
// these are just wrappers for close_prefs
private bool close_prefs_event(Gdk.EventAny e){
close_prefs();
return true;
}
// close the prefs button, eventually start the theread if exiting
// config_wait_mode
private void close_prefs(){
win.hide();
if (is_smd_stack_configured() && config_wait_mode) {
config_wait_mode = false;
// restore the default icon
si.set_from_icon_name("mail-send-receive");
// start the thread (if connected)
debug("starting smdThread since smd stack is configured");
start_smdThread();
}
}
// pause/unpause the program
private void pause() {
debug("enter pause mode");
if ((int)pid != 0) {
debug("sending SIGTERM to %d".printf(-(int)pid));
Posix.kill((Posix.pid_t)(-(int)pid),Posix.SIGTERM);
}
thread_die = true;
si.set_from_stock("gtk-media-pause");
si.set_tooltip_text("smd-applet is paused");
}
private void unpause() {
debug("exit pause mode");
reset_to_regular_run(true);
}
// ======================== config check ===========================
private bool is_smd_loop_configured() {
bool rc = GLib.FileUtils.test(SMD_LOOP_CFG,GLib.FileTest.EXISTS);
var l = builder.get_object("bErrLoop") as Gtk.Box;
if (!rc) l.show();
else l.hide();
return rc;
}
private bool is_smd_pushpull_configured() {
bool rc = GLib.FileUtils.test(SMD_PP_DEF_CFG,GLib.FileTest.EXISTS);
var l = builder.get_object("bErrPushPull") as Gtk.Box;
if (!rc) l.show();
else l.hide();
return rc;
}
private bool is_smd_stack_configured() {
var a = is_smd_loop_configured();
var b = is_smd_pushpull_configured();
return a && b;
}
// ======================== log window ================================
private void update_loglist(){
var tv = builder.get_object("tvLog") as Gtk.TextView;
var b = tv.get_buffer();
try {
Dir d = GLib.Dir.open(SMD_LOGS_DIR);
string file;
var new_lognames = new Gee.ArrayList<string>(
Gee.Functions.get_equal_func_for(typeof(string)));
while ( (file = d.read_name()) != null ){
new_lognames.add(file);
}
if (!new_lognames.contains_all(lognames) ||
!lognames.contains_all(new_lognames)) {
((Gtk.ListStore)cblogs.get_model()).clear();
lognames.clear();
foreach (string f in new_lognames) {
lognames.add(f);
cblogs.append_text(f);
}
if (lognames.size == 0) {
b.set_text("No logs in %s".printf(SMD_LOGS_DIR),-1);
} else {
cblogs.set_title("Choose log file");
cblogs.set_active(0);
}
}
} catch (GLib.FileError e) {
b.set_text("Unable to list directory %s".printf(SMD_LOGS_DIR),-1);
}
}
void update_logcontents() {
int selected = cblogs.get_active();
if (selected >= 0) {
string file = lognames.get(selected);
string content;
try {
if (GLib.FileUtils.get_contents(
SMD_LOGS_DIR+file,out content)){
var tv = builder.get_object("tvLog") as Gtk.TextView;
var b = tv.get_buffer();
Gtk.TextIter end_iter, start_iter;
b.get_end_iter(out end_iter);
b.get_start_iter(out start_iter);
if (content != b.get_text(start_iter,end_iter,false)) {
b.set_text(content,-1);
b.get_end_iter(out end_iter);
tv.scroll_to_iter(end_iter, 0.0, true, 0.0, 0.0);
}
} else {
stderr.printf("Unable to read %s\n",SMD_LOGS_DIR+file);
}
} catch (GLib.FileError e) {
stderr.printf("Unable to read %s: %s\n",
SMD_LOGS_DIR+file, e.message);
}
}
}
// ====================== public methods ==============================
// starts the thread and the timeout handler
public void start() throws Exit {
// the timout function that will eventually notify the user
GLib.Timeout.add(1000, eat_event);
// before running, we need the whole smd stack
// to be configured
if (is_smd_stack_configured()) {
start_smdThread();
} else {
config_wait_mode = true;
}
// windows will last for the whole execution,
// so the (x) button should just hide them
win.delete_event.connect(close_prefs_event);
err_win.delete_event.connect(close_err_event);
// we show the icon if we have to.
// this is performed here and not in the constructor
// since if we passed --configure the icon has not
// to be shown
if ( config_wait_mode ) {
while ( Gtk.events_pending() ) Gtk.main_iteration();
si.set_visible(false);
// we wait a bit, hopefully the gnome bar will be drawn in the
// meanwhile
Posix.sleep(5);
// we draw the icon
si.set_visible(true);
si.set_from_icon_name("error");
// we process events to have the icon before the notification baloon
while ( Gtk.events_pending() ) Gtk.main_iteration();
// we do the notification
notification = new Notify.Notification(
"Syncmaildir","Syncmaildir is not configured properly.",
"dialog-error");
notification.set_hint("transient",new Variant.boolean(true));
notification.add_action("configure","Configure now",((n,a) =>
{ si.activate(); }));
try { notification.show(); }
catch (GLib.Error e) { stderr.printf("%s\n",e.message); }
}
base.run();
if (thread != null) thread.join();
}
} // class end
// =================== main =====================================
static int main(string[] args){
string PREFIX = SMDConf.PREFIX;
// handle prefix
if (! GLib.FileUtils.test(PREFIX + SMD_APPLET_UI,GLib.FileTest.EXISTS)) {
stderr.printf("error: file not found: %s + %s\n",
PREFIX, SMD_APPLET_UI);
smdApplet.smd_loop_cmd = "./smd-loop";
stderr.printf("smd-applet not installed, " +
"assuming smd-loop is: %s\n", smdApplet.smd_loop_cmd);
smdApplet.smd_applet_ui = "./smd-applet.ui";
stderr.printf("smd-applet not installed, " +
"assuming smd-applet.ui is: %s\n", smdApplet.smd_applet_ui);
smdApplet.smd_push_cmd = "./smd-push";
stderr.printf("smd-applet not installed, " +
"assuming smd-push is: %s\n", smdApplet.smd_push_cmd);
smdApplet.smd_applet_desktop = "./smd-applet.desktop";
stderr.printf("smd-applet not installed, " +
"assuming smd-applet.desktop is: %s\n",
smdApplet.smd_applet_desktop);
} else {
smdApplet.smd_loop_cmd = PREFIX + SMD_LOOP;
smdApplet.smd_push_cmd = PREFIX + SMD_PUSH;
smdApplet.smd_applet_ui = PREFIX + SMD_APPLET_UI;
smdApplet.smd_applet_desktop = PREFIX + SMD_APPLET_DESKTOP;
}
var homedir = GLib.Environment.get_home_dir();
SMD_LOGS_DIR = homedir+"/.smd/log/";
SMD_LOOP_CFG = homedir+"/.smd/loop";
SMD_PP_DEF_CFG = homedir+"/.smd/config.default";
var conf_home = GLib.Environment.get_variable("XDG_CONFIG_HOME");
if (conf_home != null)
XDG_AUTORUN_FILE = conf_home+"/autostart/smd-applet.desktop";
else
XDG_AUTORUN_FILE = homedir + "/.config/autostart/smd-applet.desktop";
GLib.DirUtils.create_with_parents(
GLib.Path.get_dirname(XDG_AUTORUN_FILE),0700);
// we init gtk+ and notify
Gtk.init (ref args);
Notify.init("smd-applet");
GLib.OptionEntry[] oe = {
GLib.OptionEntry () {
long_name = "verbose", short_name = 'v',
flags = 0, arg = GLib.OptionArg.NONE,
arg_data = &verbose,
description = "verbose output, for debugging only",
arg_description = null },
GLib.OptionEntry () {
long_name = "smd-loop", short_name = 'l',