From 83a50c341e016c3c5cf74a95775ae50e4f12d2ae Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Wed, 4 Jan 2012 16:49:41 -0800 Subject: Switch build log to use tabs as field separators, to support outputs with spaces. --- src/build_log.cc | 15 +++++++++------ src/build_log_test.cc | 19 +++++++++++++++++++ 2 files changed, 28 insertions(+), 6 deletions(-) diff --git a/src/build_log.cc b/src/build_log.cc index e3e96e5..b4435ba 100644 --- a/src/build_log.cc +++ b/src/build_log.cc @@ -33,7 +33,7 @@ namespace { const char kFileSignature[] = "# ninja log v%d\n"; -const int kCurrentVersion = 3; +const int kCurrentVersion = 4; } // namespace @@ -123,8 +123,11 @@ bool BuildLog::Load(const string& path, string* err) { if (sscanf(buf, kFileSignature, &log_version) > 0) continue; } + + char field_separator = log_version >= 4 ? '\t' : ' '; + char* start = buf; - char* end = strchr(start, ' '); + char* end = strchr(start, field_separator); if (!end) continue; *end = 0; @@ -141,7 +144,7 @@ bool BuildLog::Load(const string& path, string* err) { start_time = atoi(start); start = end + 1; - char* end = strchr(start, ' '); + char* end = strchr(start, field_separator); if (!end) continue; *end = 0; @@ -151,7 +154,7 @@ bool BuildLog::Load(const string& path, string* err) { if (log_version >= 3) { // In v3 we log the restat mtime. - char* end = strchr(start, ' '); + char* end = strchr(start, field_separator); if (!end) continue; *end = 0; @@ -159,7 +162,7 @@ bool BuildLog::Load(const string& path, string* err) { start = end + 1; } - end = strchr(start, ' '); + end = strchr(start, field_separator); if (!end) continue; string output = string(start, end - start); @@ -212,7 +215,7 @@ BuildLog::LogEntry* BuildLog::LookupByOutput(const string& path) { } void BuildLog::WriteEntry(FILE* f, const LogEntry& entry) { - fprintf(f, "%d %d %ld %s %s\n", + fprintf(f, "%d\t%d\t%ld\t%s\t%s\n", entry.start_time, entry.end_time, (long) entry.restat_mtime, entry.output.c_str(), entry.command.c_str()); } diff --git a/src/build_log_test.cc b/src/build_log_test.cc index cf31c1d..f8c8ec3 100644 --- a/src/build_log_test.cc +++ b/src/build_log_test.cc @@ -134,3 +134,22 @@ TEST_F(BuildLogTest, UpgradeV2) { ASSERT_EQ(0, e->restat_mtime); ASSERT_EQ("command", e->command); } + +TEST_F(BuildLogTest, SpacesInOutputV4) { + FILE* f = fopen(kTestFilename, "wb"); + fprintf(f, "# ninja log v4\n"); + fprintf(f, "123\t456\t456\tout with space\tcommand\n"); + fclose(f); + + string err; + BuildLog log; + EXPECT_TRUE(log.Load(kTestFilename, &err)); + ASSERT_EQ("", err); + + BuildLog::LogEntry* e = log.LookupByOutput("out with space"); + ASSERT_TRUE(e); + ASSERT_EQ(123, e->start_time); + ASSERT_EQ(456, e->end_time); + ASSERT_EQ(456, e->restat_mtime); + ASSERT_EQ("command", e->command); +} -- cgit v0.12