blob: b6ca139dd1149c5262e332308f2a39a09c6e0a6b [file] [log] [blame]
Lei YU01539e72019-07-31 10:57:38 +08001#include "version.hpp"
2
3#include "item_updater.hpp"
4
5#include <fstream>
6#include <iostream>
7#include <phosphor-logging/elog-errors.hpp>
8#include <phosphor-logging/log.hpp>
9#include <sstream>
10#include <stdexcept>
11#include <string>
12#include <xyz/openbmc_project/Common/error.hpp>
13
14namespace phosphor
15{
16namespace software
17{
18namespace updater
19{
20
21using namespace sdbusplus::xyz::openbmc_project::Common::Error;
22using namespace phosphor::logging;
23using Argument = xyz::openbmc_project::Common::InvalidArgument;
24
25std::map<std::string, std::string>
Lei YUfda15a32019-09-19 14:43:02 +080026 Version::getValues(const std::string& filePath,
27 const std::vector<std::string>& keys)
Lei YU01539e72019-07-31 10:57:38 +080028{
29 if (filePath.empty())
30 {
31 log<level::ERR>("Error filePath is empty");
32 elog<InvalidArgument>(Argument::ARGUMENT_NAME("FilePath"),
33 Argument::ARGUMENT_VALUE(filePath.c_str()));
34 }
35
Lei YUfda15a32019-09-19 14:43:02 +080036 std::ifstream efile(filePath);
Lei YU01539e72019-07-31 10:57:38 +080037 std::string line;
Lei YUfda15a32019-09-19 14:43:02 +080038 std::map<std::string, std::string> ret;
Lei YU01539e72019-07-31 10:57:38 +080039
Lei YUfda15a32019-09-19 14:43:02 +080040 while (getline(efile, line))
Lei YU01539e72019-07-31 10:57:38 +080041 {
Lei YUd0f8bbb2019-10-18 15:49:31 +080042 if (!line.empty() && line.back() == '\r')
43 {
44 // Remove \r from the end of line
45 line.pop_back();
46 }
Lei YUfda15a32019-09-19 14:43:02 +080047 for (const auto& key : keys)
Lei YU01539e72019-07-31 10:57:38 +080048 {
Lei YUfda15a32019-09-19 14:43:02 +080049 auto value = key + "=";
50 auto keySize = value.length();
51 if (line.compare(0, keySize, value) == 0)
Lei YU01539e72019-07-31 10:57:38 +080052 {
Lei YUfda15a32019-09-19 14:43:02 +080053 ret.emplace(key, line.substr(keySize));
54 break;
Lei YU01539e72019-07-31 10:57:38 +080055 }
56 }
Lei YU01539e72019-07-31 10:57:38 +080057 }
Lei YUfda15a32019-09-19 14:43:02 +080058 return ret;
Lei YU01539e72019-07-31 10:57:38 +080059}
60
Lei YU58c26e32019-09-27 17:52:06 +080061std::string Version::getValue(const std::string& filePath,
62 const std::string& key)
63{
64 std::string ret;
65 auto values = Version::getValues(filePath, {key});
66 const auto it = values.find(key);
67 if (it != values.end())
68 {
69 ret = it->second;
70 }
71 return ret;
72}
73
Lei YU9edb7332019-09-19 14:46:19 +080074std::map<std::string, std::string>
75 Version::getExtVersionInfo(const std::string& extVersion)
76{
77 // The extVersion shall be key/value pairs separated by comma,
78 // e.g. key1=value1,key2=value2
79 std::map<std::string, std::string> result;
80 std::stringstream ss(extVersion);
81
82 while (ss.good())
83 {
84 std::string substr;
85 getline(ss, substr, ',');
86 auto pos = substr.find('=');
87 if (pos != std::string::npos)
88 {
89 std::string key = substr.substr(0, pos);
90 std::string value = substr.substr(pos + 1);
91 result.emplace(key, value);
92 }
93 }
94 return result;
95}
96
Lei YU01539e72019-07-31 10:57:38 +080097void Delete::delete_()
98{
99 if (version.eraseCallback)
100 {
101 version.eraseCallback(version.getVersionId());
102 }
103}
104
105} // namespace updater
106} // namespace software
107} // namespace phosphor