41d388ca58cbfa06dff3e801b5930ba2c10251d7
[platform/upstream/ninja.git] / src / manifest_parser.h
1 // Copyright 2011 Google Inc. All Rights Reserved.
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 #ifndef NINJA_MANIFEST_PARSER_H_
16 #define NINJA_MANIFEST_PARSER_H_
17
18 #include <string>
19
20 using namespace std;
21
22 #include "lexer.h"
23
24 struct BindingEnv;
25 struct EvalString;
26 struct State;
27
28 enum DupeEdgeAction {
29   kDupeEdgeActionWarn,
30   kDupeEdgeActionError,
31 };
32
33 /// Parses .ninja files.
34 struct ManifestParser {
35   struct FileReader {
36     virtual ~FileReader() {}
37     virtual bool ReadFile(const string& path, string* content, string* err) = 0;
38   };
39
40   ManifestParser(State* state, FileReader* file_reader,
41                  DupeEdgeAction dupe_edge_action);
42
43   /// Load and parse a file.
44   bool Load(const string& filename, string* err, Lexer* parent = NULL);
45
46   /// Parse a text string of input.  Used by tests.
47   bool ParseTest(const string& input, string* err) {
48     quiet_ = true;
49     return Parse("input", input, err);
50   }
51
52 private:
53   /// Parse a file, given its contents as a string.
54   bool Parse(const string& filename, const string& input, string* err);
55
56   /// Parse various statement types.
57   bool ParsePool(string* err);
58   bool ParseRule(string* err);
59   bool ParseLet(string* key, EvalString* val, string* err);
60   bool ParseEdge(string* err);
61   bool ParseDefault(string* err);
62
63   /// Parse either a 'subninja' or 'include' line.
64   bool ParseFileInclude(bool new_scope, string* err);
65
66   /// If the next token is not \a expected, produce an error string
67   /// saying "expectd foo, got bar".
68   bool ExpectToken(Lexer::Token expected, string* err);
69
70   State* state_;
71   BindingEnv* env_;
72   FileReader* file_reader_;
73   Lexer lexer_;
74   DupeEdgeAction dupe_edge_action_;
75   bool quiet_;
76 };
77
78 #endif  // NINJA_MANIFEST_PARSER_H_