src/Builder4/Editor.bjs
[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
179     public class Xcls_key_edit : Object
180     {
181         public Gtk.Entry el;
182         private Editor  _this;
183
184
185             // my vars (def)
186
187         // ctor
188         public Xcls_key_edit(Editor _owner )
189         {
190             _this = _owner;
191             _this.key_edit = this;
192             this.el = new Gtk.Entry();
193
194             // my vars (dec)
195
196             // set gobject values
197         }
198
199         // user defined functions
200     }
201
202
203     public class Xcls_RightEditor : Object
204     {
205         public Gtk.ScrolledWindow el;
206         private Editor  _this;
207
208
209             // my vars (def)
210
211         // ctor
212         public Xcls_RightEditor(Editor _owner )
213         {
214             _this = _owner;
215             _this.RightEditor = this;
216             this.el = new Gtk.ScrolledWindow( null, null );
217
218             // my vars (dec)
219
220             // set gobject values
221             var child_0 = new Xcls_view( _this );
222             child_0.ref();
223             this.el.add (  child_0.el  );
224
225             // init method
226
227             this.el.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.AUTOMATIC);
228         }
229
230         // user defined functions
231     }
232     public class Xcls_view : Object
233     {
234         public Gtk.SourceView el;
235         private Editor  _this;
236
237
238             // my vars (def)
239
240         // ctor
241         public Xcls_view(Editor _owner )
242         {
243             _this = _owner;
244             _this.view = this;
245             this.el = new Gtk.SourceView();
246
247             // my vars (dec)
248
249             // set gobject values
250             this.el.auto_indent = true;
251             this.el.indent_width = 4;
252             this.el.show_line_marks = true;
253             this.el.insert_spaces_instead_of_tabs = true;
254             this.el.show_line_numbers = true;
255             this.el.highlight_current_line = true;
256             var child_0 = new Xcls_buffer( _this );
257             child_0.ref();
258             this.el.set_buffer (  child_0.el  );
259
260             // init method
261
262             var description =   Pango.FontDescription.from_string("monospace");
263                 description.set_size(8000);
264                 this.el.override_font(description);
265             
266                 var attrs = new Gtk.SourceMarkAttributes();
267                 var  pink = new Gdk.RGBA();
268                 pink.parse ( "pink");
269                 attrs.set_background ( pink);
270                 attrs.set_icon_name ( "process-stop");    
271                 attrs.query_tooltip_text.connect(( mark) => {
272                     //print("tooltip query? %s\n", mark.name);
273                     return mark.name;
274                 });
275                 
276                 this.el.set_mark_attributes ("error", attrs, 1);
277
278             //listeners
279             this.el.key_release_event.connect( (event) => {
280                 
281                 if (event.keyval == 115 && (event.state & Gdk.ModifierType.CONTROL_MASK ) > 0 ) {
282                     print("SAVE: ctrl-S  pressed");
283                     _this.saveContents();
284                     return false;
285                 }
286                // print(event.key.keyval)
287                 
288                 return false;
289             
290             });
291         }
292
293         // user defined functions
294         public   void load (string str) {
295         
296         // show the help page for the active node..
297            //this.get('/Help').show();
298         
299         
300           // this.get('/BottomPane').el.set_current_page(0);
301             this.el.get_buffer().set_text(str, str.length);
302             var lm = Gtk.SourceLanguageManager.get_default();
303             
304             var lang = _this.file.language;
305             //?? is javascript going to work as js?
306             
307             ((Gtk.SourceBuffer)(this.el.get_buffer())) .set_language(lm.get_language(lang));
308             var buf = this.el.get_buffer();
309              
310             _this.dirty = false;
311             this.el.grab_focus();
312             _this.save_button.el.sensitive = false;
313         }
314     }
315     public class Xcls_buffer : Object
316     {
317         public Gtk.SourceBuffer el;
318         private Editor  _this;
319
320
321             // my vars (def)
322         public bool check_queued;
323         public int error_line;
324         public bool check_running;
325
326         // ctor
327         public Xcls_buffer(Editor _owner )
328         {
329             _this = _owner;
330             _this.buffer = this;
331             this.el = new Gtk.SourceBuffer( null );
332
333             // my vars (dec)
334             this.check_queued = false;
335             this.error_line = -1;
336             this.check_running = false;
337
338             // set gobject values
339
340             //listeners
341             this.el.changed.connect( () => {
342                 // check syntax??
343                 // ??needed..??
344                 _this.save_button.el.sensitive = true;
345                 print("EDITOR CHANGED");
346                 this.checkSyntax();
347                
348                 _this.dirty = true;
349             
350                 // this.get('/LeftPanel.model').changed(  str , false);
351                 return ;
352             });
353         }
354
355         // user defined functions
356         public bool highlightErrors ( Gee.HashMap<int,string> validate_res) {
357                 this.error_line = validate_res.size;
358         
359                 if (this.error_line < 1) {
360                       return true;
361                 }
362                 var tlines = this.el.get_line_count ();
363                 Gtk.TextIter iter;
364                 var valiter = validate_res.map_iterator();
365                 while (valiter.next()) {
366                 
367             //        print("get inter\n");
368                     var eline = valiter.get_key();
369                     if (eline > tlines) {
370                         continue;
371                     }
372                     this.el.get_iter_at_line( out iter, eline);
373                     //print("mark line\n");
374                     this.el.create_source_mark(valiter.get_value(), "error", iter);
375                 }   
376                 return false;
377             }
378         public   string toString () {
379             
380             Gtk.TextIter s;
381             Gtk.TextIter e;
382             this.el.get_start_iter(out s);
383             this.el.get_end_iter(out e);
384             var ret = this.el.get_text(s,e,true);
385             //print("TO STRING? " + ret);
386             return ret;
387         }
388         public   bool checkSyntax () {
389          
390             if (this.check_running) {
391                 print("Check is running\n");
392                 if (this.check_queued) { 
393                     print("Check is already queued");
394                     return true;
395                 }
396                 this.check_queued = true;
397                 print("Adding queued Check ");
398                 GLib.Timeout.add_seconds(1, () => {
399                     this.check_queued = false;
400                     
401                     this.checkSyntax();
402                     return false;
403                 });
404             
405         
406                 return true;
407             }
408            
409            
410             var p = Palete.factory(_this.file.xtype);   
411             
412             var str = this.toString();
413             
414             string res = "";
415             
416             if (this.error_line > 0) {
417                  Gtk.TextIter start;
418                  Gtk.TextIter end;     
419                 this.el.get_bounds (out start, out end);
420         
421                 this.el.remove_source_marks (start, end, null);
422             }
423             
424             if (str.length < 1) {
425                 print("checkSyntax - empty string?\n");
426                 return true;
427             }
428             this.check_running = true;
429             
430             
431             if (_this.file.language == "js") {
432                 this.check_running = false;
433                 print("calling validate javascript\n"); 
434                 return this.highlightErrors(p.validateJavascript(
435                     str, 
436                      _this.key, 
437                     _this.ptype,
438                     _this.file,
439                     _this.node
440                 ));    
441                 
442             }
443                 
444                 
445             print("calling validate vala\n");    
446             // clear the buttons.
447             _this.window.statusbar_errors.el.hide();
448             _this.window.statusbar_warnings.el.hide();
449             _this.window.statusbar_depricated.el.hide();
450             
451             
452             
453             p.validateVala(
454                 str, 
455                  _this.key, 
456                 _this.ptype,
457                 _this.file,
458                 _this.node,
459                 (obj) => {
460                     this.check_running = false;
461                     this.highlightErrorsJson(obj);            
462                     
463                     //var validate_res = p.validateVala.end(res);
464                     //this.highlightErrors(validate_res);
465         
466                 }
467                 
468             );
469              
470             
471             
472             //print("done mark line\n");
473              
474             return true; // at present allow saving - even if it's invalid..
475         }
476         public bool highlightErrorsJson (string type, Json.Object obj) {
477               Gtk.TextIter start;
478              Gtk.TextIter end;     
479                 this.el.get_bounds (out start, out end);
480                 
481                 this.el.remove_source_marks (start, end, type);
482                          
483              
484              // we should highlight other types of errors..
485             
486             if (!obj.has_member(type)) {
487                 print("Return has no errors\n");
488                 return true;
489             }
490             var err = obj.get_object_member(type);
491             
492             
493             
494             if (!err.has_member(_this.file.path)) {
495                 print("File path has no errors\n");
496                 return true;
497             }
498         
499             var lines = err.get_object_member(_this.file.path);
500             
501             var offset = 1;
502             if (obj.has_member("line_offset")) {
503                 offset = (int)obj.get_int_member("line_offset") + 1;
504             }
505              
506             
507             var tlines = this.el.get_line_count () +1;
508             
509             lines.foreach_member((obj, line, node) => {
510                 
511                      Gtk.TextIter iter;
512             //        print("get inter\n");
513                     var eline = int.parse(line) - offset;
514                     print("GOT ERROR on line %s -- converted to %d\n", line,eline);
515                     
516                     
517                     if (eline > tlines || eline < 0) {
518                         return;
519                     }
520                     this.el.get_iter_at_line( out iter, eline);
521                     //print("mark line\n");
522                     var msg  = "Line: %d".printf(eline+1);
523                     var ar = lines.get_array_member(line);
524                     for (var i = 0 ; i < ar.get_length(); i++) {
525                             msg += (msg.length > 0) ? "\n" : "";
526                             msg += ar.get_string_element(i);
527                     }
528                     
529                     
530                     this.el.create_source_mark(msg, "error", iter);
531                 } );
532                 return false;
533             
534         
535         
536         
537         
538         }
539     }
540
541
542
543 }