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 bool spawnExecute(JsRender.JsRender file)
197                 {
198                         // race condition..
199                         if (this.compiler != null) { 
200                                 return false;
201                         }
202                         
203                         this.file = file;
204                         this.line_offset = 0;
205                           
206                         string[] args = {};
207                         args += BuilderApplication._self;
208                         args += "--project";
209                         args += this.file.project.fn;
210                         args += "--target";
211                         args += this.file.build_module;
212                          
213                          
214                         
215                         
216                         try {
217                             this.compiler = new Spawn("/tmp", args);
218                             this.compiler.complete.connect(spawnResult);
219                         
220                             this.compiler.run(); 
221                         
222                          
223                         } catch (GLib.Error e) {
224                             GLib.debug(e.message);
225                             this.compiler = null;
226                             return false;
227                         }
228                         return true;
229                          
230                 }
231                 
232                 
233                 /**
234                 * Used to compile a non builder file..
235                 */
236                  
237                 public bool checkPlainFileSpawn(  JsRender.JsRender file, string contents )
238                 {
239                         // race condition..
240                         if (this.compiler != null) { 
241                                 return false;
242                         }
243                         var pr = (Project.Gtk)(file.project);
244                         
245                         var m = pr.firstBuildModule();
246                         var cg = pr.compilegroups.get(m);
247                         var foundit = false;
248                         for (var i = 0; i < cg.sources.size; i++) {
249                             var path = pr.resolve_path(
250                                     pr.resolve_path_combine_path(pr.firstPath(),cg.sources.get(i)));
251                             if (path == file.path) {
252                                 foundit = true;
253                                 break;
254                                         }
255                         
256                         }
257                         if (!foundit) {
258                           
259                             this.compiler = null;
260                         
261                             return false; // do not run the compile..
262                         }
263                         // is the file in the module?
264                         
265                         
266                         FileIOStream iostream;
267                         var tmpfile = File.new_tmp ("test-XXXXXX.vala", out iostream);
268                         tmpfile.ref();
269
270                         OutputStream ostream = iostream.output_stream;
271                         DataOutputStream dostream = new DataOutputStream (ostream);
272                         dostream.put_string (contents);
273                         
274                         
275                         this.file = null;
276                         this.line_offset = 0;
277                           
278                         string[] args = {};
279                         args += BuilderApplication._self;
280                         args += "--project";
281                         args +=  file.project.fn;
282                         args += "--target";
283                         args += pr.firstBuildModule();
284                         args += "--add-file";
285                         args +=  tmpfile.get_path();
286                         args += "--skip-file";
287                         args += file.path;
288                          
289                         
290                         
291                         
292                         try {
293                             this.compiler = new Spawn("/tmp", args);
294                             this.compiler.complete.connect(spawnResult);
295                             this.compiler.run(); 
296                         } catch (GLib.Error e) {
297                             
298                             this.compiler = null;
299                             return false;
300                         }
301                         return true;
302                          
303                 }
304                 
305                 
306                 public void spawnResult(int res, string output, string stderr)
307                 {
308                          
309                                 
310                         try { 
311                                 //GLib.debug("GOT output %s", output);
312                                 
313                                 var pa = new Json.Parser();
314                                 pa.load_from_data(output);
315                                 var node = pa.get_root();
316
317                                 if (node.get_node_type () != Json.NodeType.OBJECT) {
318                                         var ret = new Json.Object();
319                                         ret.set_boolean_member("success", false);
320                                         ret.set_string_member("message", 
321                                                 "Compiler returned Unexpected element type %s".printf( 
322                                                         node.type_name ()
323                                                 )
324                                         );
325                                         this.compiled(ret);
326                                         this.compiler = null;
327                                 }
328                                 var ret = node.get_object ();
329                                 ret.set_int_member("line_offset", this.line_offset);
330                                 
331                                 this.compiled(ret);
332                                 
333                                 
334                         } catch (GLib.Error e) {
335                                 var ret = new Json.Object();
336                                 ret.set_boolean_member("success", false);
337                                 ret.set_string_member("message", e.message);
338                                 this.compiled(ret);
339                         }
340                         this.compiler = null;
341                         //compiler.unref();
342                         //tmpfile.unref();
343                          
344                         
345                         
346                 }
347         }
348                  
349 }
350 /*
351 int main (string[] args) {
352
353         var a = new ValaSource(file);
354         a.create_valac_tree();
355         return 0;
356 }
357 */
358
359