blob: 9ef6708fdb0702334c6913ab79d2c77ad941f8cb [file] [log] [blame]
Shinichiro Hamaji1d545aa2015-06-23 15:29:13 +09001// Copyright 2015 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
Fumitoshi Ukai744bb2b2015-06-25 00:10:52 +090015// +build ignore
16
Shinichiro Hamaji776ca302015-06-06 03:52:48 +090017#include "file.h"
18
19#include <fcntl.h>
20#include <sys/stat.h>
21#include <sys/types.h>
22#include <unistd.h>
23
Shinichiro Hamaji706c27f2016-04-11 18:35:06 +090024#include "fileutil.h"
Shinichiro Hamaji776ca302015-06-06 03:52:48 +090025#include "log.h"
26#include "parser.h"
Shinichiro Hamaji645cca72015-09-24 17:04:21 +090027#include "stmt.h"
Shinichiro Hamaji776ca302015-06-06 03:52:48 +090028
29Makefile::Makefile(const string& filename)
Shinichiro Hamaji07550472016-02-29 19:56:50 +090030 : mtime_(0), filename_(filename), exists_(false) {
Shinichiro Hamaji776ca302015-06-06 03:52:48 +090031 int fd = open(filename.c_str(), O_RDONLY);
32 if (fd < 0) {
33 return;
34 }
35
36 struct stat st;
37 if (fstat(fd, &st) < 0) {
38 PERROR("fstat failed for %s", filename.c_str());
39 }
40
Shinichiro Hamaji07550472016-02-29 19:56:50 +090041 size_t len = st.st_size;
Shinichiro Hamaji776ca302015-06-06 03:52:48 +090042 mtime_ = st.st_mtime;
Shinichiro Hamaji07550472016-02-29 19:56:50 +090043 buf_.resize(len);
44 exists_ = true;
Shinichiro Hamaji706c27f2016-04-11 18:35:06 +090045 ssize_t r = HANDLE_EINTR(read(fd, &buf_[0], len));
Shinichiro Hamaji07550472016-02-29 19:56:50 +090046 if (r != static_cast<ssize_t>(len)) {
Shinichiro Hamaji776ca302015-06-06 03:52:48 +090047 if (r < 0)
48 PERROR("read failed for %s", filename.c_str());
Shinichiro Hamaji07550472016-02-29 19:56:50 +090049 ERROR("Unexpected read length=%zd expected=%zu", r, len);
Shinichiro Hamaji776ca302015-06-06 03:52:48 +090050 }
51
52 if (close(fd) < 0) {
53 PERROR("close failed for %s", filename.c_str());
54 }
55
56 Parse(this);
57}
58
59Makefile::~Makefile() {
Shinichiro Hamaji645cca72015-09-24 17:04:21 +090060 for (Stmt* stmt : stmts_)
61 delete stmt;
Shinichiro Hamaji776ca302015-06-06 03:52:48 +090062}