Fix #7982 - roo javascript completion
[roobuilder] / src / Application.vala
index 2772a56..7584337 100644 (file)
                const OptionEntry[] options = {
                
                        
-                       { "project", 0, 0, OptionArg.STRING, ref opt_compile_project, "Compile a project", null },
+                       { "project", 0, 0, OptionArg.STRING, ref opt_compile_project, "select a project", null },
                        { "target", 0, 0, OptionArg.STRING, ref opt_compile_target, "Target to build", null },
+                       { "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 },
                        { "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 },
                        { "add-file", 0, 0, OptionArg.STRING, ref opt_compile_add, "Add this file to compile list", null },
                        { "output", 0, 0, OptionArg.STRING, ref opt_compile_output, "output binary file path", null },
-                       { "debug", 0, 0, OptionArg.NONE, ref opt_debug, "Show debug messages", null },
+                       { "debug", 0, 0, OptionArg.NONE, ref opt_debug, "Show debug messages for non-ui, or crash on warnings for gdb ", null },
                        { "pull-resources", 0, 0, OptionArg.NONE, ref opt_pull_resources, "Fetch the online resources", null },                 
             
             // some testing code.
@@ -76,6 +77,9 @@
             { "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 },            
             { "bjs-target", 0, 0, OptionArg.STRING, ref opt_bjs_compile_target, "convert bjs file to tareet  : vala / js", null },
             { "test", 0, 0, OptionArg.STRING, ref opt_test, "run a test use 'help' to list the available tests", null },
+            { "language-server", 0, 0, OptionArg.STRING, ref opt_language_server, "run language server on this file", null },
+            { "drop-list", 0, 0, OptionArg.STRING, ref opt_drop_list, "show droplist / children for a Gtk type (eg. Gtk.Widget)", null },
+            
             
                        { null }
                };
                public static string opt_compile_skip;
                public static string opt_compile_add;
                public static string opt_compile_output;
-        public static string opt_bjs_compile;
-
-        public static string opt_bjs_compile_target;
-        public static string opt_test;        
+               public static string opt_bjs_compile;
+               public static string opt_bjs_compile_target;
+               public static string opt_test;  
+               public static string opt_drop_list;
+               public static string opt_language_server;
+        
+        public static bool opt_skip_linking = false;
                public static bool opt_debug = false;
                public static bool opt_list_projects = false;
                public static bool opt_list_files = false;
                    ROOTWIN
                }
 
-
+/*
                public const Gtk.TargetEntry[] targetList = {
                    { "INTEGER",    0, Target.INT32 },
                    { "STRING",     0, Target.STRING },
                    { "text/plain", 0, Target.STRING },
                    { "application/x-rootwindow-drop", 0, Target.ROOTWIN }
                };
+               */
                public AppSettings settings = null;
 
 
 
-               public static Palete.ValaSource valasource;
+               //public static Palete.ValaCompileQueue valacompilequeue;
 
        
                public BuilderApplication (  string[] args)
                                GLib.error("could not read /proc/self/exe");
                        }
                        GLib.debug("SELF = %s", _self);
+                       var f =  File.new_for_path(_self);
+                       var dt = "0000";
+                       try {
+                               var fi = f.query_info("*",0);
+                               dt = fi.get_creation_date_time().to_unix().to_string();
+                       } catch (GLib.Error e) {
+                               // skip.
+                       }
                        
                        Object(
-                              application_id: "org.roojs.app-builder",
+                               application_id: "org.roojs.%s.ver%s".printf( GLib.Path.get_basename(_self),dt),
                                flags: ApplicationFlags.FLAGS_NONE
                        );
                        BuilderApplication.windows = new        Gee.ArrayList<Xcls_MainWindow>();
-                       BuilderApplication.valasource = new Palete.ValaSource();
+                       //BuilderApplication.valacompilequeue = new Palete.ValaCompileQueue();
                        
                        
                        configDirectory();
                Project.Project.loadAll();
                        this.listProjects();
                        var cur_project = this.compileProject();
+                       this.dropList(cur_project); // --drop-list
+                       this.languageServer(cur_project); // --language-server                  
                        this.listFiles(cur_project);
                        this.testBjs(cur_project);
+                       this.languageServer(cur_project);
                        this.compileBjs(cur_project);
-                       this.compileVala();
+                       //this.compileVala();
 
                }
 
 
                
-               public static BuilderApplication  singleton(  string[] args)
+               public static BuilderApplication  singleton(  string[]? args)
                {
-                       if (application==null) {
+                       if (application==null && args != null) {
                                application = new BuilderApplication(  args);
  
                        
                
                void initDebug() 
                {
-               
+                        
+                       
                        if (BuilderApplication.opt_debug  || BuilderApplication.opt_compile_project == null) {
-                               GLib.Log.set_handler(null, 
-                                       GLib.LogLevelFlags.LEVEL_DEBUG | GLib.LogLevelFlags.LEVEL_WARNING
+                               GLib.Log.set_default_handler( 
+                               //      GLib.LogLevelFlags.LEVEL_DEBUG | GLib.LogLevelFlags.LEVEL_WARNING | GLib.LogLevelFlags.LEVEL_CRITICAL
                                        (dom, lvl, msg) => {
-                                       print("%s: %s\n", dom, msg);
+
+                                       print("%s: %s : %s\n", (new DateTime.now_local()).format("%H:%M:%S.%f"), lvl.to_string(), msg);
+                                       
+                                       if (dom== "GtkSourceView") { // seems to be some critical wanrings comming from gtksourceview related to insert?
+                                               return;
+                                       }
+                                       //if (msg.contains("gdk_popup_present")) { // seems to be problems with the popup present on gtksourceview competion.
+                                       //      return;
+                                       //}
+                                       if (BuilderApplication.opt_debug && lvl ==  GLib.LogLevelFlags.LEVEL_CRITICAL) {
+                                               GLib.error(msg);
+                                       }
                                });
                        }
                        
+                       
                
                }
                void listProjects()
                                return null;
                         }
                        Project.Project cur_project = null;
-                       cur_project = Project.Project.getProjectByHash( BuilderApplication.opt_compile_project);
+                       cur_project = Project.Project.getProjectByPath( BuilderApplication.opt_compile_project);
+                       
+
                        
                        if (cur_project == null) {
                                GLib.error("invalid project %s, use --list-projects to show project ids",BuilderApplication.opt_compile_project);
                        }
-                       cur_project.scanDirs();
-                               
+                       cur_project.load();
+
+                       
+
                        return cur_project;
                
                }
+               
+               void dropList(Project.Project? cur_project) {
+
+
+                       if (cur_project== null || BuilderApplication.opt_drop_list == null) {
+                               return;
+                       }
+                       
+                       if (BuilderApplication.opt_compile_project == null) {
+                               GLib.error("need a project %s, to use --drop-list",BuilderApplication.opt_compile_project);
+                        }
+                         if (cur_project.xtype != "Gtk") {
+                               GLib.error("need a Gtk project %s, to use --drop-list",BuilderApplication.opt_compile_project);
+                        }
+                        var p = (Palete.Gtk) cur_project.palete;
+                       
+                        print("\n\nDropList:\n%s", geeArrayToString(p.getDropList(BuilderApplication.opt_drop_list)));
+                        print("\n\nChildList:\n%s", geeArrayToString(p.getChildList(BuilderApplication.opt_drop_list, false)));
+                        print("\n\nChildList \n(with props): %s", geeArrayToString(p.getChildList(BuilderApplication.opt_drop_list, true)));   
+                        
+                        
+                        print("\n\nPropsList: %s", this.girArrayToString(p.getPropertiesFor( BuilderApplication.opt_drop_list, JsRender.NodePropType.PROP)));
+                        print("\n\nSignalList: %s", this.girArrayToString(p.getPropertiesFor( BuilderApplication.opt_drop_list, JsRender.NodePropType.LISTENER)));
+                        
+                        // ctor.
+                         print("\n\nCtor Values: %s", p.fqnToNode(BuilderApplication.opt_drop_list).toJsonString());
+                        
+                         GLib.Process.exit(Posix.EXIT_SUCCESS);
+                       
+               }
+               string geeArrayToString(Gee.ArrayList<string> ar) 
+               {
+                       var ret = "";
+                       foreach(var n in ar) {
+                               ret +=   n + "\n";
+                        }
+                        return ret;
+               }
+               string girArrayToString(Gee.HashMap<string,Palete.GirObject> map) 
+               {
+                       var ret = "";
+                       foreach(var gi in map.values) {
+                                ret += "%s %s (%s)\n".printf(gi.type, gi.name, gi.propertyof);
+                       
+                       }
+                       return ret;
+               
+               }
+                
+               
                void listFiles(Project.Project? cur_project)
                {
                        if (!BuilderApplication.opt_list_files) {
                                        var ar = cur_project.sortedFiles();
                                        
                                        foreach(var file in ar) {
-                                               string oldstr;
+                                       
+                                               if (file is JsRender.PlainFile) {
+                                                       continue;
+                                               }
+                       
 
                                                file.loadItems();
                                                var oldfn = file.targetName();
-                                               GLib.FileUtils.get_contents(oldfn, out oldstr);
+                                               
+                                               print("\n\n\n\nFile : %s\n", oldfn);
+                                               //GLib.FileUtils.get_contents(oldfn, out oldstr);
                                                                                
                                                var outstr = file.toSourceCode();
+                                               var bad = false;
+                                               // check line numbers:
+                                               var bits = outstr.split("\n");
+                                               var end = bits.length;
+                                               for(var i = 0;i < end; i++) {
+                                                       print("%i : %s\n", i+1 , bits[i]);
+                                                       if (!bad && bits[i].has_prefix("/*") && !bits[i].has_prefix("/*%d*/".printf(i+1))) {
+                                                               end = i + 5 > bits.length ? bits.length: (i + 5);
+                                                               print ("^^^^ mismatch\null");
+                                                               bad = true;
+                                                       }
+
+                                               
+                                               }
+                                               if (bad) {
+                                                       GLib.error("got bad file");
+                                               }
+                                               /*
                                                if (outstr != oldstr) { 
                                                        
                                                        GLib.FileUtils.set_contents("/tmp/" + file.name   + ".out",   outstr);
                                                        print("meld   %s /tmp/%s\n", oldfn,  file.name + ".out");
                                                        //GLib.Process.exit(Posix.EXIT_SUCCESS);                
                                                }
-                                               print("# Files match %s\n", file.name);
+*.*                                            */
+                                               //print("# Files match %s\n", file.name);
                                        }               
                                } catch (FileError e) {
                                        GLib.debug("Got error %s", e.message);
                        
                        
                        
-                       var file = cur_project.getByName(BuilderApplication.opt_bjs_compile);
+                       var file = cur_project.getByRelPath(BuilderApplication.opt_bjs_compile);
                        if (file == null) {
                                // then compile them all, and compare them...
                                
-                       
-                       
-                       
-                       
+                        
                        
                                GLib.error("missing file %s in project %s", BuilderApplication.opt_bjs_compile, cur_project.name);
                        }
                                var prop = node == null ? null : node.lineToProp(i+1);
                                print("%d: %s   :  %s\n", 
                                        i+1, 
-                                       node == null ? "......"  : (prop == null ? "????????" : prop),
+                                       node == null ? "......"  : (prop == null ? "????????" : prop.name),
                                        str_ar[i]
                                );
                        }
                        
                        GLib.Process.exit(Posix.EXIT_SUCCESS);
                }
-               
+               void languageServer(Project.Project? cur_project)
+               {
+                       if (BuilderApplication.opt_language_server == null) {
+                               return;
+                       }
+                       if (cur_project == null) {
+                               GLib.error("missing project, use --project to select which project");
+                       }
+                       var file = cur_project.getByRelPath(BuilderApplication.opt_language_server);
+                       if (file == null) {
+                               // then compile them all, and compare them...
+                                GLib.error("missing file %s in project %s", BuilderApplication.opt_language_server, cur_project.name);
+                       }
+                       
+                       var ls = file.getLanguageServer();
+                       if (ls == null) {
+                               GLib.error("No langauge server returned for file:%s", file.relpath);
+                       }
+                       var loop = new MainLoop();
+                       GLib.Timeout.add_seconds(1, () => {
+                        
+                               GLib.debug("Sending document_open");
+                               // it's ready..
+                                
+                               ls.document_open(file);
+                               
+                               ls.syntax.begin(file, (obj,res) => {
+                                       ls.syntax.end(res);
+                               
+                               });
+                               return false;
+                               
+                       });
+                       
+                        
+                       loop.run();
+                       GLib.Process.exit(Posix.EXIT_SUCCESS);
+               }
+                       
+       /*      
                void compileVala()
                {
                        if (BuilderApplication.opt_compile_target == null) {
                        GLib.Process.exit(Posix.EXIT_SUCCESS);
        
                }
+               */
                void pullResources()
                {
                        if (!opt_pull_resources) {
                                case "help":
                                        print("""
 help             - list available tests
-flutter-project  - create a flutter project in /tmp/test-flutter
+flutter-project  -  was try and read flutter data (but desnt work.)
 """);          
                                        break;
                                case "flutter-project":
@@ -452,6 +600,9 @@ flutter-project  - create a flutter project in /tmp/test-flutter
                                        */
                                        break;
                                        
+                                
+                                       
+                                       
                                default:
                                        print("Invalid test\n");
                                        break;
@@ -461,6 +612,8 @@ flutter-project  - create a flutter project in /tmp/test-flutter
                        GLib.Process.exit(Posix.EXIT_SUCCESS);          
                }
                
+               
+               // move to 'window colletction?
                public static Gee.ArrayList<Xcls_MainWindow> windows;
                
                public static void addWindow(Xcls_MainWindow w)
@@ -474,11 +627,14 @@ flutter-project  - create a flutter project in /tmp/test-flutter
                
                public static void removeWindow(Xcls_MainWindow w)
                {
-               
+                       //GLib.debug("remove window before = %d", BuilderApplication.windows.size);
                        BuilderApplication.windows.remove(w);
                        BuilderApplication.updateWindows();
-                       BuilderApplication.valasource.compiled.disconnect(w.windowstate.showCompileResult);
-                       BuilderApplication.valasource.compile_output.disconnect(w.windowstate.compile_results.addLine);                 
+                               
+                       w.el.hide();
+                       w.el.close();
+                       w.el.destroy();
+                       //GLib.debug("remove window after = %d", BuilderApplication.windows.size);
                        
                        
                }
@@ -504,13 +660,129 @@ flutter-project  - create a flutter project in /tmp/test-flutter
                    var w = new Xcls_MainWindow();
                        w.ref();
                        BuilderApplication.addWindow(w);
-                       w.el.show_all();
                        w.initChildren();
-                       w.windowstate. fileViewOpen(file, false, line);
+                       w.windowstate.fileViewOpen(file, false, line);
+                       w.el.present();
                         
                
                }
                
+               static int queue_update_compile_countdown = -1;
+               static uint queue_update_compile_id = 0;
+               
+               public static void updateCompileResults( )
+               {
+                       queue_update_compile_countdown = 4; // 1 second after last call.
+                       if (queue_update_compile_id == 0) {
+                               queue_update_compile_id = GLib.Timeout.add(250, () => {
+                                       if (queue_update_compile_countdown < 0) {
+                                               return true;
+                                       }
+                                       queue_update_compile_countdown--;
+                                       if (queue_update_compile_countdown < 0) {
+                                               realUpdateCompileResults();
+                                       }
+                                       
+                                       return true;
+                               });
+                       }
+               }
+               
+               
+               public static void realUpdateCompileResults( )
+               {
+                       
+                       
+                       
+                       foreach(var ww in BuilderApplication.windows) {
+                               if (ww == null || ww.windowstate == null || ww.windowstate.project ==null) {
+                                       continue;
+                               }
+
+                               ww.windowstate.updateErrorMarksAll();
+                                
+                               GLib.debug("calling udate Errors of window %s", ww.windowstate.file.targetName());
+                               ww.updateErrors();
+                               
+                               
+                       }
+               
+               }
+               
+               public static void showSpinnerLspLog(Palete.LanguageClientAction action, string message) {
+                       
+                       var msg = action.to_string() + " " + message;
+                       switch(action) {
+                       
+                                       case Palete.LanguageClientAction.INIT:
+                                       case Palete.LanguageClientAction.LAUNCH:
+                                       case Palete.LanguageClientAction.ACCEPT:
+                                               BuilderApplication.showSpinner( "software-update-available", msg );
+                                               return;
+                                               
+                                       case Palete.LanguageClientAction.DIAG:
+                                               BuilderApplication.showSpinner( "format-justify-fill", msg);                                    
+                                               return;
+
+                                       case Palete.LanguageClientAction.OPEN:
+                                               BuilderApplication.showSpinner( "document-open", msg);                                  
+                                               return;
+                                       case Palete.LanguageClientAction.SAVE:
+                                               BuilderApplication.showSpinner( "document-save", msg);                                  
+                                               return;
+                                       case Palete.LanguageClientAction.CLOSE:
+                                               BuilderApplication.showSpinner( "window.close", msg);                                   
+                                               return;
+                                       case Palete.LanguageClientAction.CHANGE:
+                                               BuilderApplication.showSpinner( "format-text-direction-ltr", msg);
+                                               return;                                         
+                                       case Palete.LanguageClientAction.TERM:
+                                               BuilderApplication.showSpinner( "media-playback-stop", msg);
+                                               return;                                         
+                                       case Palete.LanguageClientAction.COMPLETE:
+                                               BuilderApplication.showSpinner( "mail-send-recieve", msg);
+                                               return;
+                                       
+                                       case Palete.LanguageClientAction.COMPLETE_REPLY:
+                                               BuilderApplication.showSpinner( "face-cool", msg);
+                                               return;
+                                               
+                                       case Palete.LanguageClientAction.RESTART:
+                                       case Palete.LanguageClientAction.ERROR:
+                                       case Palete.LanguageClientAction.ERROR_START:
+                                       case Palete.LanguageClientAction.ERROR_RPC:
+                                       case Palete.LanguageClientAction.ERROR_REPLY:
+                                               BuilderApplication.showSpinner( "software-update-urgent", msg );
+                                               return;
+
+                                       case Palete.LanguageClientAction.EXIT:
+                                               BuilderApplication.showSpinner( "face-sick", msg);
+                                               return;
+                                       
+                       
+                       }
+               }
+               
+               public static  void showSpinner(string icon, string tooltip = "")
+               {
+
+                       // events:
+                       // doc change send: - spinner - 
+                       
+                       
+                       // ?? restart = software-update-urgent - crash?
+
+                       
+                       foreach (var win in BuilderApplication.windows) {
+                               if (icon != "") {
+                                       win.statusbar_compile_spinner.start(icon, tooltip);
+                               }  else {
+                                       win.statusbar_compile_spinner.stop();
+                               }
+                       }
+               }
+               
+               
                
         
        }