src/Palete/ValaSourceCompiler.vala
[app.Builder.js] / src / Palete / ValaSourceCompiler.vala
1
2 // valac TreeBuilder.vala --pkg libvala-0.24 --pkg posix -o /tmp/treebuilder
3
4 /**
5  *  this only deals with the compiling (when builder is run with different args..)
6  * 
7  */
8
9
10 namespace Palete {
11         
12          
13         public class ValaSourceReport  : Vala.Report {
14
15                 public string filepath;
16                 
17                 public string tmpname;
18                 
19                 //public Gee.ArrayList<ValaSourceNotice> notices;
20                 public Json.Object result;
21                  
22                 //public Gee.HashMap<int,string> line_errors;
23                 
24                 public void  compile_notice(string type, string filename, int line, string message) {
25                          
26                          if (!this.result.has_member(type+"-TOTAL")) {
27                                  this.result.set_int_member(type+"-TOTAL", 1);
28                          } else {
29                                 this.result.set_int_member(type+"-TOTAL", 
30                                         this.result.get_int_member(type+"-TOTAL") +1 
31                                 );
32                          }
33                          
34                          
35                          if (!this.result.has_member(type)) {
36                                  this.result.set_object_member(type, new Json.Object());
37                          }
38                          var t = this.result.get_object_member(type);
39                          if (!t.has_member(filename)) {
40                                  t.set_object_member(filename, new Json.Object());
41                          }
42                          var tt = t.get_object_member(filename);
43                          if (!tt.has_member(line.to_string())) {
44                                  tt.set_array_member(line.to_string(), new Json.Array());
45                          }
46                          var tl = tt.get_array_member(line.to_string());
47                          tl.add_string_element(message);
48                          
49                 }
50                 
51                 
52          
53                 public ValaSourceReport(string filepath, string tmpname)
54                 {
55                         base();
56                         this.filepath = filepath;
57                         this.tmpname = tmpname;
58                         this.result = new Json.Object();
59                         this.result.set_boolean_member("success", true);
60                         this.result.set_string_member("message", "");
61                         
62                         
63                         
64                         //this.line_errors = new Gee.HashMap<int,string> ();
65                         //this.notices = new Gee.ArrayList<ValaSourceNotice>();
66                 }
67                 
68                 public override void warn (Vala.SourceReference? source, string message) {
69                          
70                         if (source == null) {
71                                 return;
72                                 //stderr.printf ("My error: %s\n", message);
73                         }
74                         
75                         if (source.file.filename != this.tmpname) {
76                                 this.compile_notice("WARN", source.file.filename , source.begin.line, message);
77                                 return;
78                         }
79                         this.compile_notice("WARN", this.filepath, source.begin.line, message);
80                         
81                 }
82                 public override void depr (Vala.SourceReference? source, string message) {
83                          
84                         if (source == null) {
85                                 return;
86                                 //stderr.printf ("My error: %s\n", message);
87                         }
88                         
89                         if (source.file.filename != this.tmpname) {
90                                 this.compile_notice("DEPR", source.file.filename, source.begin.line, message);
91                                 return;
92                         }
93                         this.compile_notice("DEPR",  this.filepath, source.begin.line, message);
94                         
95                 }
96                 
97                 public override void err (Vala.SourceReference? source, string message) {
98                         errors++;
99                         if (source == null) {
100                                 return;
101                                 //stderr.printf ("My error: %s\n", message);
102                         }
103                         if (source.file.filename != this.tmpname) {
104                                 this.compile_notice("ERR", source.file.filename, source.begin.line, message);
105                                 GLib.debug ("Other file: Got error error: %d:  %s\n", source.begin.line, message);
106                                 return;
107                         }
108                          
109                          
110                         this.compile_notice("ERR", this.filepath, source.begin.line, message);
111                         GLib.debug ("Test file: Got error error: %d: %s\n", source.begin.line, message);
112                 }
113                 /*
114                 public void dump()
115                 {
116                         var iter = this.line_errors.map_iterator();
117                         while (iter.next()) {
118                                 print ("%d : %s\n\n", iter.get_key(), iter.get_value());
119                         }
120                 }
121                 */
122
123         }
124
125         public class ValaSourceCompiler : Object {
126
127                 public static void jerr(string str)
128                 {
129                         var ret = new Json.Object(); 
130                         ret.set_boolean_member("success", false);
131                         ret.set_string_member("message", str);
132                         
133                         var  generator = new Json.Generator ();
134                         var  root = new Json.Node(Json.NodeType.OBJECT);
135                         root.init_object(ret);
136                         generator.set_root (root);
137                          
138                         generator.pretty = true;
139                         generator.indent = 4;
140                  
141
142                         print("%s\n",  generator.to_data (null));
143                         GLib.Process.exit(Posix.EXIT_FAILURE);
144                         
145                 }
146
147                 public static void buildApplication()
148                 {
149                         //print("build based on Application settings\n");
150                         
151                         if (BuilderApplication.opt_compile_target == null) {
152                                 jerr("missing compile target --target");
153                         }
154                         
155                         Project.Project.loadAll();
156                         var proj = Project.Project.getProjectByHash(BuilderApplication.opt_compile_project);
157                         
158                         if (proj == null) {
159                                 jerr("could not load test project %s".printf( BuilderApplication.opt_compile_project));
160                         }
161                         
162                         if (proj.xtype != "Gtk") {
163                                 jerr("%s is not a Gtk Project".printf( BuilderApplication.opt_compile_project));
164                         }
165                         var gproj = (Project.Gtk)proj;
166                         
167                         
168                         if (!gproj.compilegroups.has_key(BuilderApplication.opt_compile_target)) {
169                                 jerr("missing compile target %s".printf(BuilderApplication.opt_compile_target));
170                         }
171                         var skip_file = "";
172                         if (BuilderApplication.opt_compile_skip != null) {
173                                 skip_file = BuilderApplication.opt_compile_skip;
174                         }
175                         var add_file = "";
176                         if (BuilderApplication.opt_compile_add != null) {
177                                 add_file = BuilderApplication.opt_compile_add;
178                         }
179                         
180                         
181                         var vs = new ValaSourceCompiler(gproj,  add_file, BuilderApplication.opt_compile_target,   skip_file);
182                         if (BuilderApplication.opt_compile_output != null) {
183                                 vs.output = BuilderApplication.opt_compile_output;
184                         }
185                         vs.compile();
186                         
187                         
188                 }
189
190                 Vala.CodeContext context;
191                 ValaSourceReport report;
192                 Project.Gtk project;
193                 public string build_module;
194                 public string filepath;
195                 public string original_filepath;
196                 public int line_offset = 0;
197                 public string output;
198                 
199                 // file.project , file.path, file.build_module, ""
200                 public ValaSourceCompiler(Project.Gtk project, string filepath, string build_module, string original_filepath) {
201                         base();
202                         //this.file = file;
203                         this.filepath = filepath;
204                         this.build_module = build_module;
205                         this.original_filepath = original_filepath;
206                         this.project =  project;
207                         this.output = "";
208                         
209                 }
210                 public void dumpCode(string str) 
211                 {
212                         var ls = str.split("\n");
213                         for (var i=0;i < ls.length; i++) {
214                                 print("%d : %s\n", i+1, ls[i]);
215                         }
216                 }
217                 
218                  
219                 
220                 public void compile( )
221                 {
222                         // init context:
223                         var valac = "valac " ;
224                         
225                         context = new Vala.CodeContext ();
226                         Vala.CodeContext.push (context);
227                 
228                         context.experimental = false;
229                         context.experimental_non_null = false;
230 #if VALA_0_30
231                         var ver=30;
232 #elif VALA_0_28
233                         var ver=28;
234 #elif VALA_0_26 
235                         var ver=26;
236 #elif VALA_0_24
237                         var ver=24;
238 #elif VALA_0_22 
239                         var ver=22;
240 #endif
241                         
242                         for (int i = 2; i <= ver; i += 2) {
243                                 context.add_define ("VALA_0_%d".printf (i));
244                         }
245                         
246                         
247                         
248                          
249                         var vapidirs = this.project.vapidirs();
250                         // order is important ...
251                          vapidirs +=  Path.get_dirname (context.get_vapi_path("gee-1.0")) ; //usr/share/vala/vapi 
252                          vapidirs +=  Path.get_dirname (context.get_vapi_path("glib-2.0")) ; // usr/share/vala-XXX/vapi
253                                                         
254                         for(var i =0 ; i < vapidirs.length; i++) {
255                                 valac += " --vapidir=" + vapidirs[i];
256                         }
257                                 
258                         
259                         context.vapi_directories = vapidirs;
260                         context.report.enable_warnings = true;
261                         context.metadata_directories = { };
262                         context.gir_directories = {};
263                         context.thread = true;
264                         valac += " --thread ";
265                          
266                         
267                         this.report = new ValaSourceReport(this.original_filepath, this.filepath);
268                         context.report = this.report;
269                         
270                         //valac += " -b  /tmp ";
271                         context.basedir = Posix.realpath (".");
272                 
273                         context.directory = context.basedir;
274                 
275
276                         // add default packages:
277                         //if (settings.profile == "gobject-2.0" || settings.profile == "gobject" || settings.profile == null) {
278                         context.profile = Vala.Profile.GOBJECT;
279                          
280                         var ns_ref = new Vala.UsingDirective (new Vala.UnresolvedSymbol (null, "GLib", null));
281                         context.root.add_using_directive (ns_ref);
282
283                         var source_file = new Vala.SourceFile (
284                                 context, 
285                                 Vala.SourceFileType.SOURCE, 
286                                         this.filepath 
287                         );
288                         source_file.add_using_directive (ns_ref);
289                         context.add_source_file (source_file);
290                         
291                 // add all the files (except the current one) - this.file.path
292                 var pr = this.project;
293
294                 
295                 if (this.build_module.length > 0) {
296                                 var cg =  pr.compilegroups.get(this.build_module);
297                                 if (this.output.length < 1 && cg.target_bin.length > 0) {
298                                         this.output = cg.target_bin;
299                                 }
300                                 
301
302                                 for (var i = 0; i < cg.sources.size; i++) {
303                                         var path = pr.resolve_path(
304                                                         pr.resolve_path_combine_path(pr.firstPath(),cg.sources.get(i)));
305                                                         
306                                         if (!FileUtils.test(path, FileTest.EXISTS)) {
307                                                 continue;
308                                         }       
309                         // skip thie original
310                                         if (path == this.original_filepath) {
311                                                 valac += " " + path;
312                                                 continue;
313                                         }
314                                         if (FileUtils.test(path, FileTest.IS_DIR)) {
315                                                 continue;
316                                         }
317                                         //print("Add source file %s\n", path);
318                                         
319                                         valac += " " + path;
320                                         
321                                         if (Regex.match_simple("\\.c$", path)) {
322                                                 context.add_c_source_file(path);
323                                                 continue;
324                                         }
325                                         
326                                         
327                                         var xsf = new Vala.SourceFile (
328                                                 context,
329                                                 Vala.SourceFileType.SOURCE, 
330                                                 path
331                                         );
332                                         xsf.add_using_directive (ns_ref);
333                                         context.add_source_file(xsf);
334                                         
335                                 }
336                         }
337                         // default.. packages..
338                         context.add_external_package ("glib-2.0"); 
339                         context.add_external_package ("gobject-2.0");
340                         // user defined ones..
341                         
342                 var dcg = pr.compilegroups.get("_default_");
343                 for (var i = 0; i < dcg.packages.size; i++) {
344                                 valac += " --pkg " + dcg.packages.get(i);
345                                 if (!this.has_vapi(context.vapi_directories, dcg.packages.get(i))) {
346                                         GLib.debug("Skip vapi '%s' - does not exist", dcg.packages.get(i));
347                                         continue;
348                                 }
349                                 
350                                 context.add_external_package (dcg.packages.get(i));
351                         }
352                 
353                          //Vala.Config.PACKAGE_SUFFIX.substring (1)
354                         
355                         // add the modules...
356                         
357                         context.output = this.output == "" ? "/tmp/testrun" : this.output;
358                         valac += " -o " +context.output;
359                         GLib.debug("%s", valac);
360                         
361                         context.target_glib_major = 2;
362                         context.target_glib_minor = 32;
363                         valac += " --target-glib=2.32 ";
364                 
365                         //add_documented_files (context, settings.source_files);
366                 
367                         Vala.Parser parser = new Vala.Parser ();
368                         parser.parse (context);
369                         //gir_parser.parse (context);
370                         if (context.report.get_errors () > 0) {
371                                 Vala.CodeContext.pop ();
372                                 GLib.debug("parse got errors");
373                                 //((ValaSourceReport)context.report).dump();
374                                 this.report.result.set_boolean_member("success", false);
375                                 this.report.result.set_string_member("message", "Parse failed");
376                                 
377                                 this.outputResult();
378                                 return;
379                         }
380
381
382                         
383                         // check context:
384                         context.check ();
385                         if (context.report.get_errors () > 0) {
386                                 Vala.CodeContext.pop ();
387                                 GLib.debug("check got errors");
388                                 //((ValaSourceReport)context.report).dump();
389                                 this.report.result.set_boolean_member("success", false);
390                                 this.report.result.set_string_member("message", "Check failed");
391                                 
392                                 this.outputResult();
393                                 return;
394                         }
395                         
396                         if (this.output == "") {
397                                 Vala.CodeContext.pop ();
398                                 this.outputResult();
399                                 return;
400                         }
401                          
402                         context.codegen = new Vala.GDBusServerModule ();
403                          
404                         
405                         context.codegen.emit (context);
406                         
407                         var ccompiler = new Vala.CCodeCompiler ();
408                         var cc_command = Environment.get_variable ("CC");
409                         
410                         
411                         string [] cc_options = { "-lm" };
412                         
413 #if VALA_0_28
414                         var pkg_config_command = Environment.get_variable ("PKG_CONFIG");
415                         ccompiler.compile (context, cc_command, cc_options, pkg_config_command);
416 #else
417                         ccompiler.compile (context, cc_command, cc_options);
418 #endif
419                 
420                         print("%s\n", valac);
421                         Vala.CodeContext.pop ();
422                         GLib.Process.exit(Posix.EXIT_SUCCESS);
423                         //this.outputResult();
424                 
425                 }
426                 public bool has_vapi(string[] dirs,  string vapi) 
427                 {
428                         for(var i =0 ; i < dirs.length; i++) {
429                                 GLib.debug("check VAPI - %s", dirs[i] + "/" + vapi + ".vapi");
430                                 if (!FileUtils.test( dirs[i] + "/" + vapi + ".vapi", FileTest.EXISTS)) {
431                                         continue;
432                                 }   
433                                 return true;
434                         }
435                         return false;
436                         
437                 }
438                 
439                 public void outputResult()
440                 {
441                         var generator = new Json.Generator ();
442                     generator.indent = 1;
443                     generator.pretty = true;
444                     var node = new Json.Node(Json.NodeType.OBJECT);
445                     node.set_object(this.report.result);
446                     
447                     generator.set_root(node);
448                          
449                         generator.pretty = true;
450                         generator.indent = 4;
451                  
452
453                         print("%s\n",  generator.to_data (null));
454                         GLib.Process.exit(Posix.EXIT_SUCCESS);
455                         
456                          
457                 }
458  
459         }
460 }
461 /*
462 int main (string[] args) {
463
464         var a = new ValaSource(file);
465         a.create_valac_tree();
466         return 0;
467 }
468 */
469
470