oops typo
[roobuilder] / src / Application.vala
1
2  
3         public class AppSettings : Object
4         {
5
6                 
7                 
8                 // what are we going to have as settings?
9                 public string roo_html_dir { get; set; }
10
11                 public AppSettings()
12                 {
13                         this.notify.connect(() => {
14                                 this.save();
15                         });
16                 }
17  
18                 public static AppSettings factory()
19                 {
20                          
21                         var setting_file = BuilderApplication.configDirectory() + "/builder.settings";
22                         
23                         if (!FileUtils.test(setting_file, FileTest.EXISTS)) {
24                                  return new AppSettings();
25                         }
26                         string data; 
27                         try { 
28                                 FileUtils.get_contents(setting_file, out data);
29                                 return Json.gobject_from_data (typeof (AppSettings), data) as AppSettings;
30                         } catch (Error e) {
31                         }
32                         return new AppSettings();
33                 }
34                 public void save()
35                 {
36                         var dirname = GLib.Environment.get_home_dir() + "/.Builder";
37                         var setting_file = dirname + "/builder.settings";
38                         string data = Json.gobject_to_data (this, null);
39                         GLib.debug("saving application settings\n");
40                         try {
41                                 FileUtils.set_contents(setting_file,   data);
42                         } catch (Error e) {
43                                 print("Error saving app settings");
44                         }
45                 }
46
47                 
48         }
49         
50         
51         public static BuilderApplication application = null;
52         
53         public class BuilderApplication : Gtk.Application
54         {
55                 
56                 // options - used when builder is run as a compiler
57                 // we have to spawn ourself as a compiler as just running libvala
58                 // as a task to check syntax causes memory leakage..
59                 // 
60                 const OptionEntry[] options = {
61                 
62                         
63                         { "project", 0, 0, OptionArg.STRING, ref opt_compile_project, "select a project", null },
64                         { "target", 0, 0, OptionArg.STRING, ref opt_compile_target, "Target to build", null },
65                         { "skip-linking", 0, 0, OptionArg.NONE, ref opt_skip_linking, "Do not link the files and make a binary - used to do syntax checking", null },
66                         { "skip-file", 0, 0, OptionArg.STRING, ref opt_compile_skip ,"For test compiles do not add this (usually used in conjunction with add-file ", null },
67                         { "add-file", 0, 0, OptionArg.STRING, ref opt_compile_add, "Add this file to compile list", null },
68                         { "output", 0, 0, OptionArg.STRING, ref opt_compile_output, "output binary file path", null },
69                         { "debug", 0, 0, OptionArg.NONE, ref opt_debug, "Show debug messages for non-ui, or crash on warnings for gdb ", null },
70                         { "pull-resources", 0, 0, OptionArg.NONE, ref opt_pull_resources, "Fetch the online resources", null },                 
71             
72             // some testing code.
73             { "list-projects", 0, 0,  OptionArg.NONE, ref opt_list_projects, "List Projects", null },
74             { "list-files", 0, 0,  OptionArg.NONE, ref  opt_list_files, "List Files (in a project", null},
75             { "bjs", 0, 0, OptionArg.STRING, ref opt_bjs_compile, "convert bjs file (use all to convert all of them and compare output)", null },
76             { "bjs-glade", 0, 0, OptionArg.NONE, ref opt_bjs_compile_glade, "output glade", null },
77             { "bjs-test-all", 0, 0, OptionArg.NONE, ref opt_bjs_test, "Test all the BJS files to see if the new parser/writer would change anything", null },            
78             { "bjs-target", 0, 0, OptionArg.STRING, ref opt_bjs_compile_target, "convert bjs file to tareet  : vala / js", null },
79             { "test", 0, 0, OptionArg.STRING, ref opt_test, "run a test use 'help' to list the available tests", null },
80             { "language-server", 0, 0, OptionArg.STRING, ref opt_language_server, "run language server on this file", null },
81             { "drop-list", 0, 0, OptionArg.STRING, ref opt_drop_list, "show droplist / children for a Gtk type (eg. Gtk.Widget)", null },
82             
83             
84                         { null }
85                 };
86                 public static string opt_compile_project;
87                 public static string opt_compile_target;
88                 public static string opt_compile_skip;
89                 public static string opt_compile_add;
90                 public static string opt_compile_output;
91                 public static string opt_bjs_compile;
92                 public static string opt_bjs_compile_target;
93                 public static string opt_test;  
94                 public static string opt_drop_list;
95                 public static string opt_language_server;
96         
97         public static bool opt_skip_linking = false;
98                 public static bool opt_debug = false;
99                 public static bool opt_list_projects = false;
100                 public static bool opt_list_files = false;
101                 public static bool opt_pull_resources = false;
102                 public static bool opt_bjs_compile_glade = false;
103         public static bool opt_bjs_test = false;                
104                 public static string _self;
105                 
106                 public enum Target {
107                     INT32,
108                     STRING,
109                     ROOTWIN
110                 }
111
112 /*
113                 public const Gtk.TargetEntry[] targetList = {
114                     { "INTEGER",    0, Target.INT32 },
115                     { "STRING",     0, Target.STRING },
116                     { "application/json",     0, Target.STRING },                       
117                     { "text/plain", 0, Target.STRING },
118                     { "application/x-rootwindow-drop", 0, Target.ROOTWIN }
119                 };
120                 */
121                 public AppSettings settings = null;
122
123
124
125                 //public static Palete.ValaCompileQueue valacompilequeue;
126
127         
128                 public BuilderApplication (  string[] args)
129                 {
130                         
131                         try {
132                                 _self = FileUtils.read_link("/proc/self/exe");
133                         } catch (Error e) {
134                                 // this should nto happen!!?
135                                 GLib.error("could not read /proc/self/exe");
136                         }
137                         GLib.debug("SELF = %s", _self);
138                         var f =  File.new_for_path(_self);
139                         var dt = "0000";
140                         try {
141                                 var fi = f.query_info("*",0);
142                                 dt = fi.get_creation_date_time().to_unix().to_string();
143                         } catch (GLib.Error e) {
144                                 // skip.
145                         }
146                         
147                         Object(
148                                 application_id: "org.roojs.%s.ver%s".printf( GLib.Path.get_basename(_self),dt),
149                                 flags: ApplicationFlags.FLAGS_NONE
150                         );
151                         BuilderApplication.windows = new        Gee.ArrayList<Xcls_MainWindow>();
152                         //BuilderApplication.valacompilequeue = new Palete.ValaCompileQueue();
153                         
154                         
155                         configDirectory();
156                         this.settings = AppSettings.factory();  
157                         var opt_context = new OptionContext ("Application Builder");
158                         
159                         try {
160                                 opt_context.set_help_enabled (true);
161                                 opt_context.add_main_entries (options, null);
162                                 opt_context.parse (ref args);
163                                  
164                                 
165                         } catch (OptionError e) {
166                                 stdout.printf ("error: %s\n", e.message);
167                                 stdout.printf ("Run '%s --help' to see a full list of available command line options.\n %s", 
168                                                          args[0], opt_context.get_help(true,null));
169                                 GLib.Process.exit(Posix.EXIT_FAILURE);
170                                  
171                         }
172                         this.initDebug();
173                         this.runTests();                        
174                         this.pullResources();
175                         
176                 Project.Project.loadAll();
177                         this.listProjects();
178                         var cur_project = this.compileProject();
179                         this.dropList(cur_project); // --drop-list
180                         this.languageServer(cur_project); // --language-server                  
181                         this.listFiles(cur_project);
182                         this.testBjs(cur_project);
183                         this.languageServer(cur_project);
184                         this.compileBjs(cur_project);
185                         //this.compileVala();
186
187                 }
188
189
190                 
191                 public static BuilderApplication  singleton(  string[]? args)
192                 {
193                         if (application==null && args != null) {
194                                 application = new BuilderApplication(  args);
195  
196                         
197                         }
198                         return application;
199                 }
200
201                 
202                 public static string configDirectory()
203                 {
204                         var dirname = GLib.Environment.get_home_dir() + "/.Builder";
205                 
206                         if (!FileUtils.test(dirname,FileTest.IS_DIR)) {
207                                 var dir = File.new_for_path(dirname);
208                                 try {
209                                         dir.make_directory();   
210                                 } catch (Error e) {
211                                         GLib.error("Failed to make directory %s", dirname);
212                                 } 
213                         }
214                         if (!FileUtils.test(dirname + "/resources",FileTest.IS_DIR)) {
215                                 var dir = File.new_for_path(dirname + "/resources");
216                                 try {
217                                         dir.make_directory();   
218                                 } catch (Error e) {
219                                         GLib.error("Failed to make directory %s", dirname + "/resources");
220                                 } 
221                         }
222
223                 
224                         return dirname;
225                 }
226                 
227                 
228                 // --------------- non static...
229                 
230                 void initDebug() 
231                 {
232                          
233                         
234                         if (BuilderApplication.opt_debug  || BuilderApplication.opt_compile_project == null) {
235                                 GLib.Log.set_default_handler( 
236                                 //      GLib.LogLevelFlags.LEVEL_DEBUG | GLib.LogLevelFlags.LEVEL_WARNING | GLib.LogLevelFlags.LEVEL_CRITICAL, 
237                                         (dom, lvl, msg) => {
238
239                                         print("%s: %s : %s\n", (new DateTime.now_local()).format("%H:%M:%S.%f"), lvl.to_string(), msg);
240                                         
241                                         if (dom== "GtkSourceView") { // seems to be some critical wanrings comming from gtksourceview related to insert?
242                                                 return;
243                                         }
244                                         //if (msg.contains("gdk_popup_present")) { // seems to be problems with the popup present on gtksourceview competion.
245                                         //      return;
246                                         //}
247                                         if (BuilderApplication.opt_debug && lvl ==  GLib.LogLevelFlags.LEVEL_CRITICAL) {
248                                                 GLib.error(msg);
249                                         }
250                                 });
251                         }
252                         
253                         
254                 
255                 }
256                 void listProjects()
257                 {
258                         if (!BuilderApplication.opt_list_projects) {
259                                 return;
260                         }
261                         print("Projects\n %s\n", Project.Project.listAllToString());
262                         GLib.Process.exit(Posix.EXIT_SUCCESS);
263                 
264                 }
265                 Project.Project? compileProject()
266                 {
267                         
268                         if (BuilderApplication.opt_compile_project == null) {
269                                 return null;
270                          }
271                         Project.Project cur_project = null;
272                         cur_project = Project.Project.getProjectByPath( BuilderApplication.opt_compile_project);
273                         
274
275                         
276                         if (cur_project == null) {
277                                 GLib.error("invalid project %s, use --list-projects to show project ids",BuilderApplication.opt_compile_project);
278                         }
279                         cur_project.load();
280
281                         
282
283                         return cur_project;
284                 
285                 }
286                 
287                 void dropList(Project.Project? cur_project) {
288
289
290                         if (cur_project== null || BuilderApplication.opt_drop_list == null) {
291                                 return;
292                         }
293                         
294                         if (BuilderApplication.opt_compile_project == null) {
295                                 GLib.error("need a project %s, to use --drop-list",BuilderApplication.opt_compile_project);
296                          }
297                           if (cur_project.xtype != "Gtk") {
298                                 GLib.error("need a Gtk project %s, to use --drop-list",BuilderApplication.opt_compile_project);
299                          }
300                          var p = (Palete.Gtk) cur_project.palete;
301                         
302                          print("\n\nDropList:\n%s", geeArrayToString(p.getDropList(BuilderApplication.opt_drop_list)));
303                          print("\n\nChildList:\n%s", geeArrayToString(p.getChildList(BuilderApplication.opt_drop_list, false)));
304                          print("\n\nChildList \n(with props): %s", geeArrayToString(p.getChildList(BuilderApplication.opt_drop_list, true)));   
305                          
306                          
307                          print("\n\nPropsList: %s", this.girArrayToString(p.getPropertiesFor( BuilderApplication.opt_drop_list, JsRender.NodePropType.PROP)));
308                          print("\n\nSignalList: %s", this.girArrayToString(p.getPropertiesFor( BuilderApplication.opt_drop_list, JsRender.NodePropType.LISTENER)));
309                          
310                          // ctor.
311                           print("\n\nCtor Values: %s", p.fqnToNode(BuilderApplication.opt_drop_list).toJsonString());
312                          
313                           GLib.Process.exit(Posix.EXIT_SUCCESS);
314                         
315                 }
316                 string geeArrayToString(Gee.ArrayList<string> ar) 
317                 {
318                         var ret = "";
319                         foreach(var n in ar) {
320                                 ret +=   n + "\n";
321                          }
322                          return ret;
323                 }
324                 string girArrayToString(Gee.HashMap<string,Palete.GirObject> map) 
325                 {
326                         var ret = "";
327                         foreach(var gi in map.values) {
328                                  ret += "%s %s (%s)\n".printf(gi.type, gi.name, gi.propertyof);
329                         
330                         }
331                         return ret;
332                 
333                 }
334                  
335                 
336                 void listFiles(Project.Project? cur_project)
337                 {
338                         if (!BuilderApplication.opt_list_files) {
339                                 return;
340                         }
341                         if (cur_project == null) {
342                                 GLib.error("missing project, use --project to select which project");
343                         }
344                         print("Files for %s\n %s\n", cur_project.name, cur_project.listAllFilesToString());
345                         GLib.Process.exit(Posix.EXIT_SUCCESS);
346                         
347                 }
348                 
349                 /**
350                  Test to see if the internal BJS reader/writer still outputs the same files.
351                  -- probably need this for the generator as well.
352                 */
353                 
354                 void testBjs(Project.Project? cur_project)
355                 {
356                         if (!BuilderApplication.opt_bjs_test) {
357                                 return;
358                         }
359                         if (cur_project == null) {
360                                 GLib.error("missing project, use --project to select which project");
361                         }
362                         print("Checking files\n");
363                         try { 
364                                 var ar = cur_project.sortedFiles();
365                                 foreach(var file in ar) {
366                                         string oldstr;
367
368                                         file.loadItems();
369                                         GLib.FileUtils.get_contents(file.path, out oldstr);                             
370                                         var outstr = file.toJsonString();
371                                         if (outstr != oldstr) { 
372                                                 
373                                                 GLib.FileUtils.set_contents("/tmp/" + file.name ,   outstr);
374                                                 print("meld  %s /tmp/%s\n", file.path,  file.name);
375                                                 //GLib.Process.exit(Posix.EXIT_SUCCESS);                
376                                         }
377                                         print("# Files match %s\n", file.name);
378                                         
379                                 }
380                         } catch (FileError e) {
381                                 GLib.debug("Got error %s", e.message);
382                         } catch (Error e) {
383                                 GLib.debug("Got error %s", e.message);
384                         }
385                                 
386                         print("All files pass");
387                         GLib.Process.exit(Posix.EXIT_SUCCESS);
388                 }
389                 
390                 void compileBjs(Project.Project? cur_project)
391                 {
392                         if (BuilderApplication.opt_bjs_compile == null) {
393                                 return;
394                         }
395                         if (cur_project == null) {
396                                 GLib.error("missing project, use --project to select which project");
397                         }
398                         
399                         if (BuilderApplication.opt_bjs_compile == "all") {
400                                 try { 
401                                         var ar = cur_project.sortedFiles();
402                                         
403                                         foreach(var file in ar) {
404                                         
405                                                 if (file is JsRender.PlainFile) {
406                                                         continue;
407                                                 }
408                         
409
410                                                 file.loadItems();
411                                                 var oldfn = file.targetName();
412                                                 
413                                                 print("\n\n\n\nFile : %s\n", oldfn);
414                                                 //GLib.FileUtils.get_contents(oldfn, out oldstr);
415                                                                                 
416                                                 var outstr = file.toSourceCode();
417                                                 var bad = false;
418                                                 // check line numbers:
419                                                 var bits = outstr.split("\n");
420                                                 var end = bits.length;
421                                                 for(var i = 0;i < end; i++) {
422                                                         print("%i : %s\n", i+1 , bits[i]);
423                                                         if (!bad && bits[i].has_prefix("/*") && !bits[i].has_prefix("/*%d*/".printf(i+1))) {
424                                                                 end = i + 5 > bits.length ? bits.length: (i + 5);
425                                                                 print ("^^^^ mismatch\null");
426                                                                 bad = true;
427                                                         }
428
429                                                 
430                                                 }
431                                                 if (bad) {
432                                                         GLib.error("got bad file");
433                                                 }
434                                                 /*
435                                                 if (outstr != oldstr) { 
436                                                         
437                                                         GLib.FileUtils.set_contents("/tmp/" + file.name   + ".out",   outstr);
438                                                         print("meld   %s /tmp/%s\n", oldfn,  file.name + ".out");
439                                                         //GLib.Process.exit(Posix.EXIT_SUCCESS);                
440                                                 }
441 *.*                                             */
442                                                 //print("# Files match %s\n", file.name);
443                                         }               
444                                 } catch (FileError e) {
445                                         GLib.debug("Got error %s", e.message);
446                                 } catch (Error e) {
447                                         GLib.debug("got error %s", e.message);
448                                 }
449                                 
450                                 GLib.Process.exit(Posix.EXIT_SUCCESS);
451                         
452                         }
453                         
454                         
455                         
456                         var file = cur_project.getByRelPath(BuilderApplication.opt_bjs_compile);
457                         if (file == null) {
458                                 // then compile them all, and compare them...
459                                 
460                          
461                         
462                                 GLib.error("missing file %s in project %s", BuilderApplication.opt_bjs_compile, cur_project.name);
463                         }
464                         try {
465                                 file.loadItems();
466                         } catch(Error e) {
467                                 GLib.debug("Load items failed");
468                         }
469                                         
470                         if (BuilderApplication.opt_bjs_compile_glade) {
471                                 var str = file.toGlade();
472                                 print("%s", str);
473                                 GLib.Process.exit(Posix.EXIT_SUCCESS);
474                         }
475                         
476                         //BuilderApplication.compileBjs();
477
478                         var str = file.toSourceCode();
479                           
480                           
481                         if (!BuilderApplication.opt_debug) {
482                                 print("%s", str);
483                                 GLib.Process.exit(Posix.EXIT_SUCCESS);
484                         }
485                         
486                         // dump the node tree
487                         file.tree.dumpProps();
488                         
489                         
490                         
491                         
492                         
493                         var str_ar = str.split("\n");
494                         for(var i =0;i<str_ar.length;i++) {
495                                 var node = file.tree.lineToNode(i+1);
496                                 var prop = node == null ? null : node.lineToProp(i+1);
497                                 print("%d: %s   :  %s\n", 
498                                         i+1, 
499                                         node == null ? "......"  : (prop == null ? "????????" : prop.name),
500                                         str_ar[i]
501                                 );
502                         }
503                         
504                         GLib.Process.exit(Posix.EXIT_SUCCESS);
505                 }
506                 void languageServer(Project.Project? cur_project)
507                 {
508                         if (BuilderApplication.opt_language_server == null) {
509                                 return;
510                         }
511                         if (cur_project == null) {
512                                 GLib.error("missing project, use --project to select which project");
513                         }
514                         var file = cur_project.getByRelPath(BuilderApplication.opt_language_server);
515                         if (file == null) {
516                                 // then compile them all, and compare them...
517                                  GLib.error("missing file %s in project %s", BuilderApplication.opt_language_server, cur_project.name);
518                         }
519                         
520                         var ls = file.getLanguageServer();
521                         if (ls == null) {
522                                 GLib.error("No langauge server returned for file:%s", file.relpath);
523                         }
524                         var loop = new MainLoop();
525                         GLib.Timeout.add_seconds(1, () => {
526                          
527                                 GLib.debug("Sending document_open");
528                                 // it's ready..
529                                  
530                                 ls.document_open(file);
531                                 
532                                 ls.syntax.begin(file, (obj,res) => {
533                                         ls.syntax.end(res);
534                                 
535                                 });
536                                 return false;
537                                 
538                         });
539                         
540                          
541                         loop.run();
542                         GLib.Process.exit(Posix.EXIT_SUCCESS);
543                 }
544                         
545         /*      
546                 void compileVala()
547                 {
548                         if (BuilderApplication.opt_compile_target == null) {
549                                 return;
550                         }
551                         Palete.ValaSourceCompiler.buildApplication();
552                 
553                         GLib.Process.exit(Posix.EXIT_SUCCESS);
554         
555                 }
556                 */
557                 void pullResources()
558                 {
559                         if (!opt_pull_resources) {
560                                 return;
561                         }
562                         var loop = new MainLoop();
563                         Resources.singleton().updateProgress.connect((p,t) => {
564                                 print("Got %d/%d", (int) p,(int)t);
565                                 if (p == t) {
566                                         loop.quit();
567                                 }
568                         });
569                         Resources.singleton().fetchStart();     
570                         loop.run();
571                         GLib.Process.exit(Posix.EXIT_SUCCESS);
572                 }
573                 
574                 
575                 void runTests()
576                 {
577                         if (opt_test == null) {
578                                 return;
579                         }
580                         switch(opt_test) {
581                                 case "help":
582                                         print("""
583 help             - list available tests
584 flutter-project  -  was try and read flutter data (but desnt work.)
585 """);           
586                                         break;
587                                 case "flutter-project":
588                                 Project.Project.loadAll();
589                                         //var p =   Project.Project.factory("Flutter", "/tmp/test-flutter");
590                                         /*var pa = p.palete as Palete.Flutter;
591                                         pa.dumpusage();
592                                          var ar = pa.getChildList("material.Scaffold");
593                                         GLib.debug("childlist for material.Scaffold is %s", 
594                                                 string.joinv( "\n-- ", ar)
595                                         );
596                                         ar = pa.getDropList("material.MaterialApp");
597                                         GLib.debug("droplist for material.MaterialApp is %s", 
598                                                 string.joinv( "\n-- ", ar)
599                                         );
600                                         */
601                                         break;
602                                         
603                                  
604                                         
605                                         
606                                 default:
607                                         print("Invalid test\n");
608                                         break;
609
610
611                         }
612                         GLib.Process.exit(Posix.EXIT_SUCCESS);          
613                 }
614                 
615                 
616                 // move to 'window colletction?
617                 public static Gee.ArrayList<Xcls_MainWindow> windows;
618                 
619                 public static void addWindow(Xcls_MainWindow w)
620                 {
621                          
622                         BuilderApplication.windows.add(w);
623                         BuilderApplication.updateWindows();
624   
625                         
626                 }
627                 
628                 public static void removeWindow(Xcls_MainWindow w)
629                 {
630                         //GLib.debug("remove window before = %d", BuilderApplication.windows.size);
631                         BuilderApplication.windows.remove(w);
632                         BuilderApplication.updateWindows();
633                                 
634                         w.el.hide();
635                         w.el.close();
636                         w.el.destroy();
637                         //GLib.debug("remove window after = %d", BuilderApplication.windows.size);
638                         
639                         
640                 }
641                 public static void updateWindows()
642                 {
643                         foreach(var ww in BuilderApplication.windows) {
644                                 ww.windowbtn.updateMenu();
645                         }
646                 }
647                 public static Xcls_MainWindow? getWindow(JsRender.JsRender file)
648                 {
649                         foreach(var ww in BuilderApplication.windows) {
650                                 if (ww.windowstate != null && ww.windowstate.file != null &&  ww.windowstate.file.path == file.path) {
651                                         return ww;
652                                 }
653                         }
654                         return null;
655                 
656                 }
657                 
658                 public static void newWindow(JsRender.JsRender file, int line)
659                 {
660                     var w = new Xcls_MainWindow();
661                         w.ref();
662                         BuilderApplication.addWindow(w);
663                         w.initChildren();
664                         w.windowstate.fileViewOpen(file, false, line);
665                         w.el.present();
666                          
667                 
668                 }
669                 
670                 static int queue_update_compile_countdown = -1;
671                 static uint queue_update_compile_id = 0;
672                 
673                 public static void updateCompileResults( )
674                 {
675                         queue_update_compile_countdown = 4; // 1 second after last call.
676                         if (queue_update_compile_id == 0) {
677                                 queue_update_compile_id = GLib.Timeout.add(250, () => {
678                                         if (queue_update_compile_countdown < 0) {
679                                                 return true;
680                                         }
681                                         queue_update_compile_countdown--;
682                                         if (queue_update_compile_countdown < 0) {
683                                                 realUpdateCompileResults();
684                                         }
685                                         
686                                         return true;
687                                 });
688                         }
689                 }
690                 
691                 
692                 public static void realUpdateCompileResults( )
693                 {
694                         
695                         
696                         
697                         foreach(var ww in BuilderApplication.windows) {
698                                 if (ww == null || ww.windowstate == null || ww.windowstate.project ==null) {
699                                         continue;
700                                 }
701
702                                 ww.windowstate.updateErrorMarksAll();
703                                  
704                                 GLib.debug("calling udate Errors of window %s", ww.windowstate.file.targetName());
705                                 ww.updateErrors();
706                                 
707                                 
708                         }
709                 
710                 }
711                 
712                 public static void showSpinnerLspLog(Palete.LanguageClientAction action, string message) {
713                         
714                         var msg = action.to_string() + " " + message;
715                         switch(action) {
716                         
717                                         case Palete.LanguageClientAction.INIT:
718                                         case Palete.LanguageClientAction.LAUNCH:
719                                         case Palete.LanguageClientAction.ACCEPT:
720                                                 BuilderApplication.showSpinner( "software-update-available", msg );
721                                                 return;
722                                                 
723                                         case Palete.LanguageClientAction.DIAG:
724                                                 BuilderApplication.showSpinner( "format-justify-fill", msg);                                    
725                                                 return;
726
727                                         case Palete.LanguageClientAction.OPEN:
728                                                 BuilderApplication.showSpinner( "document-open", msg);                                  
729                                                 return;
730                                         case Palete.LanguageClientAction.SAVE:
731                                                 BuilderApplication.showSpinner( "document-save", msg);                                  
732                                                 return;
733                                         case Palete.LanguageClientAction.CLOSE:
734                                                 BuilderApplication.showSpinner( "window.close", msg);                                   
735                                                 return;
736                                         case Palete.LanguageClientAction.CHANGE:
737                                                 BuilderApplication.showSpinner( "format-text-direction-ltr", msg);
738                                                 return;                                         
739                                         case Palete.LanguageClientAction.TERM:
740                                                 BuilderApplication.showSpinner( "media-playback-stop", msg);
741                                                 return;                                         
742                                         case Palete.LanguageClientAction.COMPLETE:
743                                                 BuilderApplication.showSpinner( "mail-send-recieve", msg);
744                                                 return;
745                                         
746                                         case Palete.LanguageClientAction.COMPLETE_REPLY:
747                                                 BuilderApplication.showSpinner( "face-cool", msg);
748                                                 return;
749                                                 
750                                         case Palete.LanguageClientAction.RESTART:
751                                         case Palete.LanguageClientAction.ERROR:
752                                         case Palete.LanguageClientAction.ERROR_START:
753                                         case Palete.LanguageClientAction.ERROR_RPC:
754                                         case Palete.LanguageClientAction.ERROR_REPLY:
755                                                 BuilderApplication.showSpinner( "software-update-urgent", msg );
756                                                 return;
757
758                                         case Palete.LanguageClientAction.EXIT:
759                                                 BuilderApplication.showSpinner( "face-sick", msg);
760                                                 return;
761                                         
762                         
763                         }
764                 }
765                 
766                 public static  void showSpinner(string icon, string tooltip = "")
767                 {
768
769                         // events:
770                         // doc change send: - spinner - 
771                         
772                         
773                         // ?? restart = software-update-urgent - crash?
774
775                         
776                         foreach (var win in BuilderApplication.windows) {
777                                 if (icon != "") {
778                                         win.statusbar_compile_spinner.start(icon, tooltip);
779                                 }  else {
780                                         win.statusbar_compile_spinner.stop();
781                                 }
782                         }
783                 }
784                 
785                 
786                 
787          
788         }
789         
790         
791                 
792
793  
794
795