fix windows build after depslog
[platform/upstream/ninja.git] / src / deps_log.cc
1 // Copyright 2012 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 #include "deps_log.h"
16
17 #include <assert.h>
18 #include <stdio.h>
19 #include <errno.h>
20 #include <string.h>
21 #ifndef _WIN32
22 #include <unistd.h>
23 #endif
24
25 #include "graph.h"
26 #include "metrics.h"
27 #include "state.h"
28 #include "util.h"
29
30 // The version is stored as 4 bytes after the signature and also serves as a
31 // byte order mark. Signature and version combined are 16 bytes long.
32 const char kFileSignature[] = "# ninjadeps\n";
33 const int kCurrentVersion = 1;
34
35 DepsLog::~DepsLog() {
36   Close();
37 }
38
39 bool DepsLog::OpenForWrite(const string& path, string* err) {
40   file_ = fopen(path.c_str(), "ab");
41   if (!file_) {
42     *err = strerror(errno);
43     return false;
44   }
45   SetCloseOnExec(fileno(file_));
46
47   // Opening a file in append mode doesn't set the file pointer to the file's
48   // end on Windows. Do that explicitly.
49   fseek(file_, 0, SEEK_END);
50
51   if (ftell(file_) == 0) {
52     if (fwrite(kFileSignature, sizeof(kFileSignature) - 1, 1, file_) < 1) {
53       *err = strerror(errno);
54       return false;
55     }
56     if (fwrite(&kCurrentVersion, 4, 1, file_) < 1) {
57       *err = strerror(errno);
58       return false;
59     }
60   }
61
62   return true;
63 }
64
65 bool DepsLog::RecordDeps(Node* node, TimeStamp mtime,
66                          const vector<Node*>& nodes) {
67   return RecordDeps(node, mtime, nodes.size(),
68                     nodes.empty() ? NULL : (Node**)&nodes.front());
69 }
70
71 bool DepsLog::RecordDeps(Node* node, TimeStamp mtime,
72                          int node_count, Node** nodes) {
73   // Track whether there's any new data to be recorded.
74   bool made_change = false;
75
76   // Assign ids to all nodes that are missing one.
77   if (node->id() < 0) {
78     RecordId(node);
79     made_change = true;
80   }
81   for (int i = 0; i < node_count; ++i) {
82     if (nodes[i]->id() < 0) {
83       RecordId(nodes[i]);
84       made_change = true;
85     }
86   }
87
88   // See if the new data is different than the existing data, if any.
89   if (!made_change) {
90     Deps* deps = GetDeps(node);
91     if (!deps ||
92         deps->mtime != mtime ||
93         deps->node_count != node_count) {
94       made_change = true;
95     } else {
96       for (int i = 0; i < node_count; ++i) {
97         if (deps->nodes[i] != nodes[i]) {
98           made_change = true;
99           break;
100         }
101       }
102     }
103   }
104
105   // Don't write anything if there's no new info.
106   if (!made_change)
107     return true;
108
109   uint16_t size = 4 * (1 + 1 + (uint16_t)node_count);
110   size |= 0x8000;  // Deps record: set high bit.
111   fwrite(&size, 2, 1, file_);
112   int id = node->id();
113   fwrite(&id, 4, 1, file_);
114   int timestamp = mtime;
115   fwrite(&timestamp, 4, 1, file_);
116   for (int i = 0; i < node_count; ++i) {
117     id = nodes[i]->id();
118     fwrite(&id, 4, 1, file_);
119   }
120
121   return true;
122 }
123
124 void DepsLog::Close() {
125   if (file_)
126     fclose(file_);
127   file_ = NULL;
128 }
129
130 bool DepsLog::Load(const string& path, State* state, string* err) {
131   METRIC_RECORD(".ninja_deps load");
132   char buf[32 << 10];
133   FILE* f = fopen(path.c_str(), "rb");
134   if (!f) {
135     if (errno == ENOENT)
136       return true;
137     *err = strerror(errno);
138     return false;
139   }
140
141   if (!fgets(buf, sizeof(buf), f)) {
142     *err = strerror(errno);
143     return false;
144   }
145   int version = 0;
146   if (fread(&version, 4, 1, f) < 1) {
147     *err = strerror(errno);
148     return false;
149   }
150   if (version != kCurrentVersion) {
151     *err = "bad deps log signature or version; starting over";
152     fclose(f);
153     unlink(path.c_str());
154     // Don't report this as a failure.  An empty deps log will cause
155     // us to rebuild the outputs anyway.
156     return true;
157   }
158
159   for (;;) {
160     uint16_t size;
161     if (fread(&size, 2, 1, f) < 1)
162       break;
163     bool is_deps = (size >> 15) != 0;
164     size = size & 0x7FFF;
165
166     if (fread(buf, size, 1, f) < 1)
167       break;
168
169     if (is_deps) {
170       assert(size % 4 == 0);
171       int* deps_data = reinterpret_cast<int*>(buf);
172       int out_id = deps_data[0];
173       int mtime = deps_data[1];
174       deps_data += 2;
175       int deps_count = (size / 4) - 2;
176
177       Deps* deps = new Deps;
178       deps->mtime = mtime;
179       deps->node_count = deps_count;
180       deps->nodes = new Node*[deps_count];
181       for (int i = 0; i < deps_count; ++i) {
182         assert(deps_data[i] < (int)nodes_.size());
183         assert(nodes_[deps_data[i]]);
184         deps->nodes[i] = nodes_[deps_data[i]];
185       }
186
187       if (out_id >= (int)deps_.size())
188         deps_.resize(out_id + 1);
189       if (deps_[out_id]) {
190         ++dead_record_count_;
191         delete deps_[out_id];
192       }
193       deps_[out_id] = deps;
194     } else {
195       StringPiece path(buf, size);
196       Node* node = state->GetNode(path);
197       assert(node->id() < 0);
198       node->set_id(nodes_.size());
199       nodes_.push_back(node);
200     }
201   }
202   if (ferror(f)) {
203     *err = strerror(ferror(f));
204     return false;
205   }
206   fclose(f);
207   return true;
208 }
209
210 DepsLog::Deps* DepsLog::GetDeps(Node* node) {
211   if (node->id() < 0)
212     return NULL;
213   return deps_[node->id()];
214 }
215
216 bool DepsLog::Recompact(const string& path, string* err) {
217   METRIC_RECORD(".ninja_deps recompact");
218   printf("Recompacting deps...\n");
219
220   string temp_path = path + ".recompact";
221   DepsLog new_log;
222   if (!new_log.OpenForWrite(temp_path, err))
223     return false;
224
225   // Clear all known ids so that new ones can be reassigned.
226   for (vector<Node*>::iterator i = nodes_.begin();
227        i != nodes_.end(); ++i) {
228     (*i)->set_id(-1);
229   }
230
231   // Write out all deps again.
232   for (int old_id = 0; old_id < (int)deps_.size(); ++old_id) {
233     Deps* deps = deps_[old_id];
234     if (!new_log.RecordDeps(nodes_[old_id], deps->mtime,
235                             deps->node_count, deps->nodes)) {
236       new_log.Close();
237       return false;
238     }
239   }
240
241   new_log.Close();
242
243   if (unlink(path.c_str()) < 0) {
244     *err = strerror(errno);
245     return false;
246   }
247
248   if (rename(temp_path.c_str(), path.c_str()) < 0) {
249     *err = strerror(errno);
250     return false;
251   }
252
253   return true;
254 }
255
256 bool DepsLog::RecordId(Node* node) {
257   uint16_t size = (uint16_t)node->path().size();
258   fwrite(&size, 2, 1, file_);
259   fwrite(node->path().data(), node->path().size(), 1, file_);
260
261   node->set_id(nodes_.size());
262   nodes_.push_back(node);
263
264   return true;
265 }