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