aboutsummaryrefslogtreecommitdiffstats
path: root/file.h
blob: a0530736289703f725e517c5331c219e4505a3f2 (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 FILE_H_
#define FILE_H_

#include <stdint.h>

#include <string>
#include <vector>

#include "string_pool.h"

using namespace std;

class AST;

class Makefile {
 public:
  explicit Makefile(const string& filename);
  ~Makefile();

  const char* buf() const { return buf_; }
  size_t len() const { return len_; }
  const string& filename() const { return filename_; }

  StringPool* mutable_pool() { return &pool_; }
  const vector<AST*>& asts() const { return asts_; }
  vector<AST*>* mutable_asts() { return &asts_; }

 private:
  char* buf_;
  size_t len_;
  uint64_t mtime_;
  string filename_;
  StringPool pool_;
  vector<AST*> asts_;
};

#endif  // FILE_H_