// Copyright 2014 The Chromium OS Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include #include #include #include #include namespace brillo { void OsReleaseReader::Load() { Load(base::FilePath("/")); } bool OsReleaseReader::GetString(const std::string& key, std::string* value) const { CHECK(initialized_) << "OsReleaseReader.Load() must be called first."; return store_.GetString(key, value); } void OsReleaseReader::LoadTestingOnly(const base::FilePath& root_dir) { Load(root_dir); } void OsReleaseReader::Load(const base::FilePath& root_dir) { base::FilePath osrelease = root_dir.Append("etc").Append("os-release"); if (!store_.Load(osrelease)) { // /etc/os-release might not be present (cros deploying a new configuration // or no fields set at all). Just print a debug message and continue. DLOG(INFO) << "Could not load fields from " << osrelease.value(); } base::FilePath osreleased = root_dir.Append("etc").Append("os-release.d"); base::FileEnumerator enumerator( osreleased, false, base::FileEnumerator::FILES); for (base::FilePath path = enumerator.Next(); !path.empty(); path = enumerator.Next()) { std::string content; if (!base::ReadFileToString(path, &content)) { PLOG(ERROR) << "Could not read " << path.value(); continue; } // There might be a trailing new line. Strip it to keep only the first line // of the file. content = brillo::string_utils::SplitAtFirst(content, "\n", true).first; store_.SetString(path.BaseName().value(), content); } initialized_ = true; } std::vector OsReleaseReader::GetKeys() const { CHECK(initialized_) << "OsReleaseReader.Load() must be called first."; return store_.GetKeys(); } } // namespace brillo