src/Palete/ValaSource.vala
[app.Builder.js] / src / Palete / ValaSource.vala
1
2 // valac TreeBuilder.vala --pkg libvala-0.24 --pkg posix -o /tmp/treebuilder
3
4 /**
5  * 
6  *  This just deals with spawning the compiler and getting the results.
7  * 
8  *  each window should have one of these...
9  * 
10  *  x = new ValaSource();
11  *  x.connect.compiled(... do something with results... );
12  *  
13  * x.
14  * 
15  */
16
17 namespace Palete {
18         
19         public errordomain ValaSourceError {
20                 INVALID_FORMAT 
21         }
22         
23         //public delegate  void ValaSourceResult(Json.Object res);
24         
25          
26
27         public class ValaSource : Object {
28  
29                 
30                 public signal void compiled(Json.Object res);
31
32                 
33                 JsRender.JsRender file;
34                 public int line_offset = 0;
35                 
36                 public ValaSource( ) 
37                 {
38                         base();
39                         this.compiler = null;
40                 }
41                 public void dumpCode(string str) 
42                 {
43                         var ls = str.split("\n");
44                         for (var i=0;i < ls.length; i++) {
45                                 print("%d : %s\n", i+1, ls[i]);
46                         }
47                 }
48                 
49                 //public Gee.HashMap<int,string> checkFile()
50                 //{
51                 //      return this.checkString(JsRender.NodeToVala.mungeFile(this.file));
52                 //}
53
54                 public bool checkFileWithNodePropChange(
55                   
56                                         JsRender.JsRender file,
57                                         JsRender.Node node, 
58                                         string prop,
59                                         string ptype,
60                                         string val
61                                  )
62                 {
63                         this.file = file;
64                         
65                         if (this.compiler != null) {
66                                 return false;
67                         }
68                         
69                          
70                         var hash = ptype == "listener" ? node.listeners : node.props;
71                         
72                         // untill we get a smarter renderer..
73                         // we have some scenarios where changing the value does not work
74                         if (prop == "* xns" || prop == "xtype") {
75                                 return  false;
76                         }
77                                 
78                         
79                         var old = hash.get(prop);
80                         var newval = "/*--VALACHECK-START--*/ " + val ;
81                         
82                         hash.set(prop, newval);
83                         var tmpstring = JsRender.NodeToVala.mungeFile(file);
84                         hash.set(prop, old);
85                         //print("%s\n", tmpstring);
86                         var bits = tmpstring.split("/*--VALACHECK-START--*/");
87                         var offset =0;
88                         if (bits.length > 0) {
89                                 offset = bits[0].split("\n").length +1;
90                         }
91                         
92                         this.line_offset = offset;
93                         
94                         //this.dumpCode(tmpstring);
95                         //print("offset %d\n", offset);
96                         return this.checkStringSpawn(tmpstring );
97                         
98                         // modify report
99                         
100                         
101                         
102                 }
103                 Spawn compiler;
104                  
105                 public bool checkStringSpawn(
106                                 string contents 
107                         )
108                 {
109                         
110                         if (this.compiler != null) {
111                                 return false;
112                         }
113                         
114                         FileIOStream iostream;
115                         var tmpfile = File.new_tmp ("test-XXXXXX.vala", out iostream);
116                         tmpfile.ref();
117
118                         OutputStream ostream = iostream.output_stream;
119                         DataOutputStream dostream = new DataOutputStream (ostream);
120                         dostream.put_string (contents);
121                         
122                         var valafn = "";
123                         try {             
124                            var  regex = new Regex("\\.bjs$");
125                         
126                                 valafn = regex.replace(this.file.path,this.file.path.length , 0 , ".vala");
127                          } catch (GLib.RegexError e) {
128                                  
129                             return false;
130                         }   
131                         
132                         string[] args = {};
133                         args += BuilderApplication._self;
134                         args += "--project";
135                         args += this.file.project.fn;
136                         args += "--target";
137                         args += this.file.build_module;
138                         args += "--add-file";
139                         args +=  tmpfile.get_path();
140                         args += "--skip-file";
141                         args += valafn;
142                         
143                          
144                         
145                         this.compiler = new Spawn("/tmp", args);
146                         this.compiler.complete.connect(spawnResult);
147                         
148                         try {
149                                 this.compiler.run(); 
150                         } catch (GLib.SpawnError e) {
151                                 GLib.debug(e.message);
152                                 this.compiler = null;
153                                 return false;
154
155                         }
156                         return true;
157                          
158                 }
159                 
160                 public bool checkFileSpawn(JsRender.JsRender file )
161                 {
162                         // race condition..
163                         if (this.compiler != null) { 
164                                 return false;
165                         }
166                         
167                         this.file = file;
168                         this.line_offset = 0;
169                           
170                         string[] args = {};
171                         args += BuilderApplication._self;
172                         args += "--project";
173                         args += this.file.project.fn;
174                         args += "--target";
175                         args += this.file.build_module;
176                          
177                          
178                         
179                         
180                         try {
181                             this.compiler = new Spawn("/tmp", args);
182                             this.compiler.complete.connect(spawnResult);
183                         
184                             this.compiler.run(); 
185                         
186                          
187                         } catch (GLib.Error e) {
188                             GLib.debug(e.message);
189                             this.compiler = null;
190                             return false;
191                         }
192                         return true;
193                          
194                 }
195                 
196                 public void spawnExecute(JsRender.JsRender file)
197                 {
198                         // race condition..
199                         if (this.compiler != null) { 
200                                 return;
201                         }
202                         var pr = (Project.Gtk)(file.project);
203                         
204                         
205                         this.file = file;
206                         this.line_offset = 0;
207                           
208                         string[] args = {};
209                         args += BuilderApplication._self;
210                         args += "--project";
211                         args += this.file.project.fn;
212                         args += "--target";
213                         if (this.file.build_module.length > 0 ) {
214                             args += this.file.build_module;
215                         } else {
216                             args += pr.firstBuildModule();
217                         }
218                         args += "--output";
219                         args += "/tmp/testrun";
220                         
221                          
222                         try {
223                             this.compiler = new Spawn(pr.firstPath(), args);
224                             this.compiler.complete.connect(spawnResult);
225                             this.compiler.run(); 
226                         
227                          
228                         } catch (GLib.Error e) {
229                             GLib.debug(e.message);
230                             this.compiler = null;
231
232                         }
233                         return;
234                          
235                 }
236                 
237                 
238                 /**
239                 * Used to compile a non builder file..
240                 */
241                  
242                 public bool checkPlainFileSpawn(  JsRender.JsRender file, string contents )
243                 {
244                         // race condition..
245                         if (this.compiler != null) { 
246                                 return false;
247                         }
248                         var pr = (Project.Gtk)(file.project);
249                         
250                         var m = pr.firstBuildModule();
251                         var cg = pr.compilegroups.get(m);
252                         var foundit = false;
253                         for (var i = 0; i < cg.sources.size; i++) {
254                             var path = pr.resolve_path(
255                                     pr.resolve_path_combine_path(pr.firstPath(),cg.sources.get(i)));
256                             if (path == file.path) {
257                                 foundit = true;
258                                 break;
259                                         }
260                         
261                         }
262                         if (!foundit) {
263                           
264                             this.compiler = null;
265                         
266                             return false; // do not run the compile..
267                         }
268                         // is the file in the module?
269                         
270                         
271                         FileIOStream iostream;
272                         var tmpfile = File.new_tmp ("test-XXXXXX.vala", out iostream);
273                         tmpfile.ref();
274
275                         OutputStream ostream = iostream.output_stream;
276                         DataOutputStream dostream = new DataOutputStream (ostream);
277                         dostream.put_string (contents);
278                         
279                         
280                         this.file = null;
281                         this.line_offset = 0;
282                           
283                         string[] args = {};
284                         args += BuilderApplication._self;
285                         args += "--project";
286                         args +=  file.project.fn;
287                         args += "--target";
288                         args += pr.firstBuildModule();
289                         args += "--add-file";
290                         args +=  tmpfile.get_path();
291                         args += "--skip-file";
292                         args += file.path;
293                          
294                         
295                         
296                         
297                         try {
298                             this.compiler = new Spawn("/tmp", args);
299                             this.compiler.complete.connect(spawnResult);
300                             this.compiler.run(); 
301                         } catch (GLib.Error e) {
302                             
303                             this.compiler = null;
304                             return false;
305                         }
306                         return true;
307                          
308                 }
309                 
310                 
311                 public void spawnResult(int res, string output, string stderr)
312                 {
313                          
314                                 
315                         try { 
316                                 //GLib.debug("GOT output %s", output);
317                                 
318                                 var pa = new Json.Parser();
319                                 pa.load_from_data(output);
320                                 var node = pa.get_root();
321
322                                 if (node.get_node_type () != Json.NodeType.OBJECT) {
323                                         var ret = new Json.Object();
324                                         ret.set_boolean_member("success", false);
325                                         ret.set_string_member("message", 
326                                                 "Compiler returned Unexpected element type %s".printf( 
327                                                         node.type_name ()
328                                                 )
329                                         );
330                                         this.compiled(ret);
331                                         this.compiler = null;
332                                 }
333                                 var ret = node.get_object ();
334                                 ret.set_int_member("line_offset", this.line_offset);
335                                 
336                                 this.compiled(ret);
337                                 
338                                 
339                         } catch (GLib.Error e) {
340                                 var ret = new Json.Object();
341                                 ret.set_boolean_member("success", false);
342                                 ret.set_string_member("message", e.message);
343                                 this.compiled(ret);
344                         }
345                         this.compiler = null;
346                         //compiler.unref();
347                         //tmpfile.unref();
348                          
349                         
350                         
351                 }
352         }
353                  
354 }
355 /*
356 int main (string[] args) {
357
358         var a = new ValaSource(file);
359         a.create_valac_tree();
360         return 0;
361 }
362 */
363
364