2a6dccfd07672e922172b02e49602bd7bf91fe19
[app.Builder.js] / src / Builder4 / Editor.vala
1 static Editor  _Editor;
2
3 public class Editor : Object 
4 {
5     public Gtk.VBox el;
6     private Editor  _this;
7
8     public static Editor singleton()
9     {
10         if (_Editor == null) {
11             _Editor= new Editor();
12         }
13         return _Editor;
14     }
15     public Xcls_save_button save_button;
16     public Xcls_key_edit key_edit;
17     public Xcls_RightEditor RightEditor;
18     public Xcls_view view;
19     public Xcls_buffer buffer;
20
21         // my vars (def)
22     public Xcls_MainWindow window;
23     public string activeEditor;
24     public int pos_root_x;
25     public int pos_root_y;
26     public string ptype;
27     public string key;
28     public JsRender.JsRender file;
29     public bool pos;
30     public bool dirty;
31     public signal void save ();
32     public JsRender.Node node;
33
34     // ctor 
35     public Editor()
36     {
37         _this = this;
38         this.el = new Gtk.VBox( false, 0 );
39
40         // my vars (dec)
41         this.window = null;
42         this.activeEditor = "";
43         this.ptype = "";
44         this.key = "";
45         this.file = null;
46         this.pos = false;
47         this.dirty = false;
48         this.node = null;
49
50         // set gobject values
51         var child_0 = new Xcls_HBox2( _this );
52         child_0.ref();
53         this.el.pack_start (  child_0.el , false,true );
54         var child_1 = new Xcls_RightEditor( _this );
55         child_1.ref();
56         this.el.add (  child_1.el  );
57     }
58
59     // user defined functions 
60     public   bool saveContents ()  {
61         
62         
63         
64         
65         
66         
67         
68        
69          
70          var str = _this.buffer.toString();
71          
72           
73          
74          
75          if (!_this.buffer.checkSyntax()) {
76              print("check syntax failed");
77              //this.get('/StandardErrorDialog').show("Fix errors in code and save.."); 
78              //return false;
79          }
80          
81          // LeftPanel.model.changed(  str , false);
82          _this.dirty = false;
83          _this.save_button.el.sensitive = false;
84          
85          
86             
87          
88         // find the text for the node..
89         if (ptype == "listener") {
90             this.node.listeners.set(key,str);
91         
92         } else {
93              this.node.props.set(key,str);
94         }
95     
96          
97         
98         // call the signal..
99         this.save();
100         
101         return true;
102     
103     }
104     public   void show (JsRender.JsRender file, JsRender.Node node, string ptype, string key)
105     {
106         this.ptype = ptype;
107         this.key  = key;
108         this.node = node;
109         this.file = file;
110         
111        string val = "";
112         // find the text for the node..
113         if (ptype == "listener") {
114             val = node.listeners.get(key);
115         
116         } else {
117             val = node.props.get(key);
118         }
119         this.view.load(val);
120         this.key_edit.el.text = key;    
121     
122     }
123     public class Xcls_HBox2 : Object 
124     {
125         public Gtk.HBox el;
126         private Editor  _this;
127
128
129             // my vars (def)
130
131         // ctor 
132         public Xcls_HBox2(Editor _owner )
133         {
134             _this = _owner;
135             this.el = new Gtk.HBox( false, 0 );
136
137             // my vars (dec)
138
139             // set gobject values
140             var child_0 = new Xcls_save_button( _this );
141             child_0.ref();
142             this.el.pack_start (  child_0.el , false,false );
143             var child_1 = new Xcls_key_edit( _this );
144             child_1.ref();
145             this.el.pack_end (  child_1.el , true,true );
146         }
147
148         // user defined functions 
149     }
150     public class Xcls_save_button : Object 
151     {
152         public Gtk.Button el;
153         private Editor  _this;
154
155
156             // my vars (def)
157
158         // ctor 
159         public Xcls_save_button(Editor _owner )
160         {
161             _this = _owner;
162             _this.save_button = this;
163             this.el = new Gtk.Button();
164
165             // my vars (dec)
166
167             // set gobject values
168             this.el.label = "Save";
169
170             // listeners 
171             this.el.clicked.connect( () => { 
172                 _this.saveContents();
173             });
174         }
175
176         // user defined functions 
177     }
178     public class Xcls_key_edit : Object 
179     {
180         public Gtk.Entry el;
181         private Editor  _this;
182
183
184             // my vars (def)
185
186         // ctor 
187         public Xcls_key_edit(Editor _owner )
188         {
189             _this = _owner;
190             _this.key_edit = this;
191             this.el = new Gtk.Entry();
192
193             // my vars (dec)
194
195             // set gobject values
196         }
197
198         // user defined functions 
199     }
200     public class Xcls_RightEditor : Object 
201     {
202         public Gtk.ScrolledWindow el;
203         private Editor  _this;
204
205
206             // my vars (def)
207
208         // ctor 
209         public Xcls_RightEditor(Editor _owner )
210         {
211             _this = _owner;
212             _this.RightEditor = this;
213             this.el = new Gtk.ScrolledWindow( null, null );
214
215             // my vars (dec)
216
217             // set gobject values
218             var child_0 = new Xcls_view( _this );
219             child_0.ref();
220             this.el.add (  child_0.el  );
221
222             // init method 
223
224             this.el.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);
225         }
226
227         // user defined functions 
228     }
229     public class Xcls_view : Object 
230     {
231         public Gtk.SourceView el;
232         private Editor  _this;
233
234
235             // my vars (def)
236
237         // ctor 
238         public Xcls_view(Editor _owner )
239         {
240             _this = _owner;
241             _this.view = this;
242             this.el = new Gtk.SourceView();
243
244             // my vars (dec)
245
246             // set gobject values
247             this.el.auto_indent = true;
248             this.el.indent_width = 4;
249             this.el.show_line_marks = true;
250             this.el.insert_spaces_instead_of_tabs = true;
251             this.el.show_line_numbers = true;
252             this.el.highlight_current_line = true;
253             var child_0 = new Xcls_buffer( _this );
254             child_0.ref();
255             this.el.set_buffer (  child_0.el  );
256
257             // init method 
258
259             var description =   Pango.FontDescription.from_string("monospace");
260                 description.set_size(8000);
261                 this.el.override_font(description);
262             
263                 var attrs = new Gtk.SourceMarkAttributes();
264                 var  pink = new Gdk.RGBA();
265                 pink.parse ( "pink");
266                 attrs.set_background ( pink);
267                 attrs.set_icon_name ( "process-stop");    
268                 attrs.query_tooltip_text.connect(( mark) => {
269                     //print("tooltip query? %s\n", mark.name);
270                     return mark.name;
271                 });
272                 
273                 this.el.set_mark_attributes ("error", attrs, 1);
274
275             // listeners 
276             this.el.key_release_event.connect( (event) => {
277                 
278                 if (event.keyval == 115 && (event.state & Gdk.ModifierType.CONTROL_MASK ) > 0 ) {
279                     print("SAVE: ctrl-S  pressed");
280                     _this.saveContents();
281                     return false;
282                 }
283                // print(event.key.keyval)
284                 
285                 return false;
286             
287             });
288         }
289
290         // user defined functions 
291         public   void load (string str) {
292         
293         // show the help page for the active node..
294            //this.get('/Help').show();
295         
296         
297           // this.get('/BottomPane').el.set_current_page(0);
298             this.el.get_buffer().set_text(str, str.length);
299             var lm = Gtk.SourceLanguageManager.get_default();
300             
301             var lang = _this.file.language;
302             //?? is javascript going to work as js?
303             
304             ((Gtk.SourceBuffer)(this.el.get_buffer())) .set_language(lm.get_language(lang));
305             var buf = this.el.get_buffer();
306             
307             /* -- what does all this do? */
308             /*
309             var cursor = buf.get_mark("insert");
310             Gtk.TextIter iter;
311             buf.get_iter_at_mark(out iter, cursor);
312             iter.set_line(1);
313             iter.set_line_offset(4);
314             buf.move_mark(cursor, iter);
315             
316             
317             cursor = buf.get_mark("selection_bound");
318             //iter= new Gtk.TextIter;
319             buf.get_iter_at_mark(out iter, cursor);
320             iter.set_line(1);
321             iter.set_line_offset(4);
322             buf.move_mark(cursor, iter);
323             
324             */
325             
326             _this.dirty = false;
327             this.el.grab_focus();
328             _this.save_button.el.sensitive = false;
329         }
330     }
331     public class Xcls_buffer : Object 
332     {
333         public Gtk.SourceBuffer el;
334         private Editor  _this;
335
336
337             // my vars (def)
338         public bool check_queued;
339         public int error_line;
340         public bool check_running;
341
342         // ctor 
343         public Xcls_buffer(Editor _owner )
344         {
345             _this = _owner;
346             _this.buffer = this;
347             this.el = new Gtk.SourceBuffer( null );
348
349             // my vars (dec)
350             this.check_queued = false;
351             this.error_line = -1;
352             this.check_running = false;
353
354             // set gobject values
355
356             // listeners 
357             this.el.changed.connect( () => {
358                 // check syntax??
359                 // ??needed..??
360                 _this.save_button.el.sensitive = true;
361                 print("EDITOR CHANGED");
362                 this.checkSyntax();
363                
364                 _this.dirty = true;
365             
366                 // this.get('/LeftPanel.model').changed(  str , false);
367                 return ;
368             });
369         }
370
371         // user defined functions 
372         public bool highlightErrors ( Gee.HashMap<int,string> validate_res) {
373                 this.error_line = validate_res.size;
374         
375                 if (this.error_line < 1) {
376                       return true;
377                 }
378                 var tlines = this.el.get_line_count ();
379                 Gtk.TextIter iter;
380                 var valiter = validate_res.map_iterator();
381                 while (valiter.next()) {
382                 
383             //        print("get inter\n");
384                     var eline = valiter.get_key();
385                     if (eline > tlines) {
386                         continue;
387                     }
388                     this.el.get_iter_at_line( out iter, eline);
389                     //print("mark line\n");
390                     this.el.create_source_mark(valiter.get_value(), "error", iter);
391                 }   
392                 return false;
393             }
394         public   string toString () {
395             
396             Gtk.TextIter s;
397             Gtk.TextIter e;
398             this.el.get_start_iter(out s);
399             this.el.get_end_iter(out e);
400             var ret = this.el.get_text(s,e,true);
401             //print("TO STRING? " + ret);
402             return ret;
403         }
404         public   bool checkSyntax () {
405          
406             if (this.check_running) {
407                 print("Check is running\n");
408                 if (this.check_queued) { 
409                     print("Check is already queued");
410                     return true;
411                 }
412                 this.check_queued = true;
413                 print("Adding queued Check ");
414                 GLib.Timeout.add_seconds(1, () => {
415                     this.check_queued = false;
416                     
417                     this.checkSyntax();
418                     return false;
419                 });
420             
421         
422                 return true;
423             }
424            
425            
426             var p = Palete.factory(_this.file.xtype);   
427             
428             var str = this.toString();
429             
430             string res = "";
431             
432             if (this.error_line > 0) {
433                  Gtk.TextIter start;
434                  Gtk.TextIter end;     
435                 this.el.get_bounds (out start, out end);
436         
437                 this.el.remove_source_marks (start, end, null);
438             }
439             
440             if (str.length < 1) {
441                 print("checkSyntax - empty string?\n");
442                 return true;
443             }
444             this.check_running = true;
445             
446             
447             if (_this.file.language == "js") {
448                 this.check_running = false;
449                 print("calling validate javascript\n"); 
450                 return this.highlightErrors(p.validateJavascript(
451                     str, 
452                      _this.key, 
453                     _this.ptype,
454                     _this.file,
455                     _this.node
456                 ));    
457                 
458             }
459                 
460                 
461             print("calling validate vala\n");    
462             // clear the buttons.
463             _this.window.statusbar_errors.el.hide();
464             _this.window.statusbar_errors.el.hide();
465             _this.window.statusbar_errors.el.hide();
466             
467             
468             
469             p.validateVala(
470                 str, 
471                  _this.key, 
472                 _this.ptype,
473                 _this.file,
474                 _this.node,
475                 (obj) => {
476                     this.check_running = false;
477                     this.highlightErrorsJson(obj);            
478                     
479                     //var validate_res = p.validateVala.end(res);
480                     //this.highlightErrors(validate_res);
481         
482                 }
483                 
484             );
485              
486             
487             
488             //print("done mark line\n");
489              
490             return true; // at present allow saving - even if it's invalid..
491         }
492         public bool highlightErrorsJson (Json.Object obj) {
493               Gtk.TextIter start;
494              Gtk.TextIter end;     
495                 this.el.get_bounds (out start, out end);
496                 
497                 this.el.remove_source_marks (start, end, null);
498                         
499             if (!obj.has_member("ERR")) {
500                 print("Return has no errors\n");
501                 return true;
502             }
503             var err = obj.get_object_member("ERR");
504             
505             if (!err.has_member(_this.file.path)) {
506                 print("File path has no errors\n");
507                 return true;
508             }
509         
510             var lines = err.get_object_member(_this.file.path);
511             
512             var offset = 0;
513             if (obj.has_member("line_offset")) {
514                 offset = (int)obj.get_int_member("line_offset");
515             }
516              
517             
518             var tlines = this.el.get_line_count ();
519             
520             lines.foreach_member((obj, line, node) => {
521                 
522                      Gtk.TextIter iter;
523             //        print("get inter\n");
524                     var eline = int.parse(line) - offset;
525                     print("GOT ERROR on line %s -- converted to %d\n", line,eline);
526                     
527                     
528                     if (eline > tlines || eline < 0) {
529                         return;
530                     }
531                     this.el.get_iter_at_line( out iter, eline);
532                     //print("mark line\n");
533                     var msg  = "Line: %d".printf(eline+1);
534                     var ar = lines.get_array_member(line);
535                     for (var i = 0 ; i < ar.get_length(); i++) {
536                             msg += (msg.length > 0) ? "\n" : "";
537                             msg += ar.get_string_element(i);
538                     }
539                     
540                     
541                     this.el.create_source_mark(msg, "error", iter);
542                 } );
543                 return false;
544             
545         
546         
547         
548         
549         }
550     }
551 }