aboutsummaryrefslogtreecommitdiffstats
path: root/rule.h
blob: 071ad4898100cb12453087c74d34e7325df6429e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef RULE_H_
#define RULE_H_

#include <vector>

#include "loc.h"
#include "log.h"
#include "string_piece.h"

using namespace std;

class Value;

class Rule {
 public:
  Rule();
  void Parse(StringPiece line);

  string DebugString() const;

  vector<StringPiece> outputs;
  vector<StringPiece> inputs;
  vector<StringPiece> order_only_inputs;
  vector<string> output_patterns;
  bool is_double_colon;
  bool is_suffix_rule;
  vector<Value*> cmds;
  Loc loc;
  int cmd_lineno;

 private:
  void Error(const string& msg) {
    ERROR("%s:%d: %s", loc.filename, loc.lineno, msg.c_str());
  }
};

#endif  // RULE_H_