blob: ecefc9801fbc74281c023d7f950f790f85c15b82 [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 YUfda15a32019-09-19 14:43:02 +080042 for (const auto& key : keys)
Lei YU01539e72019-07-31 10:57:38 +080043 {
Lei YUfda15a32019-09-19 14:43:02 +080044 auto value = key + "=";
45 auto keySize = value.length();
46 if (line.compare(0, keySize, value) == 0)
Lei YU01539e72019-07-31 10:57:38 +080047 {
Lei YUfda15a32019-09-19 14:43:02 +080048 ret.emplace(key, line.substr(keySize));
49 break;
Lei YU01539e72019-07-31 10:57:38 +080050 }
51 }
Lei YU01539e72019-07-31 10:57:38 +080052 }
Lei YUfda15a32019-09-19 14:43:02 +080053 return ret;
Lei YU01539e72019-07-31 10:57:38 +080054}
55
Lei YU58c26e32019-09-27 17:52:06 +080056std::string Version::getValue(const std::string& filePath,
57 const std::string& key)
58{
59 std::string ret;
60 auto values = Version::getValues(filePath, {key});
61 const auto it = values.find(key);
62 if (it != values.end())
63 {
64 ret = it->second;
65 }
66 return ret;
67}
68
Lei YU9edb7332019-09-19 14:46:19 +080069std::map<std::string, std::string>
70 Version::getExtVersionInfo(const std::string& extVersion)
71{
72 // The extVersion shall be key/value pairs separated by comma,
73 // e.g. key1=value1,key2=value2
74 std::map<std::string, std::string> result;
75 std::stringstream ss(extVersion);
76
77 while (ss.good())
78 {
79 std::string substr;
80 getline(ss, substr, ',');
81 auto pos = substr.find('=');
82 if (pos != std::string::npos)
83 {
84 std::string key = substr.substr(0, pos);
85 std::string value = substr.substr(pos + 1);
86 result.emplace(key, value);
87 }
88 }
89 return result;
90}
91
Lei YU01539e72019-07-31 10:57:38 +080092void Delete::delete_()
93{
94 if (version.eraseCallback)
95 {
96 version.eraseCallback(version.getVersionId());
97 }
98}
99
100} // namespace updater
101} // namespace software
102} // namespace phosphor