contrib/objcwrapper: collect files that failed parsing
[nit.git] / contrib / objcwrapper / src / objcwrapper.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 # Generator of Nit modules to wrap Objective-C services
16 module objcwrapper
17
18 import nitcc_runtime
19 import opts
20
21 import objc_visitor
22 import objc_model
23 import objc_generator
24 import objc_lexer
25 import objc_parser
26 import preprocessing
27
28 var opt_help = new OptionBool("Show this help message", "-h", "--help")
29
30 var opts = new OptionContext
31 opts.add_option(opt_help, opt_output, opt_init_as_methods, opt_gcc_options)
32 opts.parse args
33
34 if opts.errors.not_empty or opts.rest.is_empty or opt_help.value then
35 if opts.errors.not_empty then print_error opts.errors.join("\n")
36
37 print_error """
38 Usage: objcwrapper [options] input_file [other_input_file [...]]
39 Options:"""
40 opts.usage
41
42 if opt_help.value then exit 0
43 exit 1
44 end
45
46 var v = new ObjcVisitor
47
48 var failed_parsing = new Array[String]
49 for src in opts.rest do
50 # Read input
51 var content = src.preprocess_content
52
53 # Parse
54 var lexer = new Lexer_objc(content)
55 var parser = new Parser_objc
56 var tokens = lexer.lex
57 parser.tokens.add_all(tokens)
58 var root = parser.parse
59
60 # Check for errors
61 if root isa NError then
62 var pos = root.position
63 print_error "Syntax Error: {root.message}, at {pos or else ""}"
64 print_error "in {src}"
65 if pos != null then
66 var lines = content.split("\n")
67 for line in [pos.line_start..pos.line_end] do
68 print_error lines[line-1]
69 end
70
71 var ptr = " "*(pos.col_start-1).max(0) + "^"*(pos.col_end-pos.col_start)
72 print_error ptr
73 end
74 failed_parsing.add src
75 continue
76 end
77
78 # Run analysis
79 v.enter_visit root
80 end
81
82 var g = new CodeGenerator(v.model)
83 g.generate
84
85 if failed_parsing.not_empty then
86 print_error "Failed to parse {failed_parsing.length}/{opts.rest.length} files:"
87 print_error failed_parsing.join(" ")
88 end