blob: f6fefffede57d85c72bbd1e641d0e6a077d44bbb [file] [log] [blame]
Lei YU01539e72019-07-31 10:57:38 +08001#pragma once
2
3#include "config.h"
4
5#include "activation.hpp"
Lei YU91029442019-08-01 15:57:31 +08006#include "types.hpp"
Lei YU5e0dcb32019-08-02 18:04:34 +08007#include "utils.hpp"
Lei YU01539e72019-07-31 10:57:38 +08008#include "version.hpp"
9
Lei YU5e0dcb32019-08-02 18:04:34 +080010#include <phosphor-logging/log.hpp>
Lei YU01539e72019-07-31 10:57:38 +080011#include <sdbusplus/server.hpp>
Lei YU91029442019-08-01 15:57:31 +080012#include <xyz/openbmc_project/Association/Definitions/server.hpp>
Lei YU01539e72019-07-31 10:57:38 +080013#include <xyz/openbmc_project/Collection/DeleteAll/server.hpp>
14
Lei YUf77189f2019-08-07 14:26:30 +080015class TestItemUpdater;
16
Lei YU01539e72019-07-31 10:57:38 +080017namespace phosphor
18{
19namespace software
20{
21namespace updater
22{
23
24class Version;
25
26using ItemUpdaterInherit = sdbusplus::server::object::object<
Lei YU91029442019-08-01 15:57:31 +080027 sdbusplus::xyz::openbmc_project::Association::server::Definitions,
Lei YU01539e72019-07-31 10:57:38 +080028 sdbusplus::xyz::openbmc_project::Collection::server::DeleteAll>;
29namespace MatchRules = sdbusplus::bus::match::rules;
30
31/** @class ItemUpdater
32 * @brief Manages the activation of the PSU version items.
33 */
34class ItemUpdater : public ItemUpdaterInherit
35{
Lei YUf77189f2019-08-07 14:26:30 +080036 friend class ::TestItemUpdater;
37
Lei YU01539e72019-07-31 10:57:38 +080038 public:
39 /** @brief Constructs ItemUpdater
40 *
41 * @param[in] bus - The D-Bus bus object
42 * @param[in] path - The D-Bus path
43 */
44 ItemUpdater(sdbusplus::bus::bus& bus, const std::string& path) :
45 ItemUpdaterInherit(bus, path.c_str()), bus(bus),
46 versionMatch(bus,
47 MatchRules::interfacesAdded() +
48 MatchRules::path(SOFTWARE_OBJPATH),
49 std::bind(std::mem_fn(&ItemUpdater::createActivation),
50 this, std::placeholders::_1))
51 {
Lei YUad90ad52019-08-06 11:19:28 +080052 processPSUImage();
Lei YU01539e72019-07-31 10:57:38 +080053 }
54
55 /** @brief Deletes version
56 *
57 * @param[in] versionId - Id of the version to delete
58 */
59 void erase(std::string versionId);
60
61 /**
62 * @brief Erases any non-active versions.
63 */
64 void deleteAll();
65
66 private:
Lei YU91029442019-08-01 15:57:31 +080067 /** @brief Creates an active association to the
68 * newly active software image
69 *
70 * @param[in] path - The path to create the association to.
71 */
72 void createActiveAssociation(const std::string& path);
73
Lei YUad90ad52019-08-06 11:19:28 +080074 /** @brief Add the functional association to the
Lei YU91029442019-08-01 15:57:31 +080075 * new "running" PSU images
76 *
Lei YUad90ad52019-08-06 11:19:28 +080077 * @param[in] path - The path to add the association to.
Lei YU91029442019-08-01 15:57:31 +080078 */
Lei YUad90ad52019-08-06 11:19:28 +080079 void addFunctionalAssociation(const std::string& path);
Lei YU91029442019-08-01 15:57:31 +080080
81 /** @brief Removes the associations from the provided software image path
82 *
83 * @param[in] path - The path to remove the association from.
84 */
85 void removeAssociation(const std::string& path);
86
Lei YU01539e72019-07-31 10:57:38 +080087 /** @brief Callback function for Software.Version match.
88 * @details Creates an Activation D-Bus object.
89 *
90 * @param[in] msg - Data associated with subscribed signal
91 */
92 void createActivation(sdbusplus::message::message& msg);
93
Lei YUa2c2cd72019-08-09 15:54:10 +080094 using Properties =
95 std::map<std::string, utils::UtilsInterface::PropertyType>;
96
Lei YUad90ad52019-08-06 11:19:28 +080097 /** @brief Callback function for PSU inventory match.
98 * @details Update an Activation D-Bus object for PSU inventory.
99 *
100 * @param[in] msg - Data associated with subscribed signal
101 */
Lei YUa2c2cd72019-08-09 15:54:10 +0800102 void onPsuInventoryChangedMsg(sdbusplus::message::message& msg);
103
104 /** @brief Callback function for PSU inventory match.
105 * @details Update an Activation D-Bus object for PSU inventory.
106 *
107 * @param[in] psuPath - The PSU inventory path
108 * @param[in] properties - The updated properties
109 */
110 void onPsuInventoryChanged(const std::string& psuPath,
111 const Properties& properties);
Lei YUad90ad52019-08-06 11:19:28 +0800112
Lei YU01539e72019-07-31 10:57:38 +0800113 /** @brief Create Activation object */
114 std::unique_ptr<Activation> createActivationObject(
115 const std::string& path, const std::string& versionId,
116 const std::string& extVersion,
117 sdbusplus::xyz::openbmc_project::Software::server::Activation::
Lei YU91029442019-08-01 15:57:31 +0800118 Activations activationStatus,
119 const AssociationList& assocs);
Lei YU01539e72019-07-31 10:57:38 +0800120
121 /** @brief Create Version object */
122 std::unique_ptr<Version>
123 createVersionObject(const std::string& objPath,
124 const std::string& versionId,
125 const std::string& versionString,
126 sdbusplus::xyz::openbmc_project::Software::server::
127 Version::VersionPurpose versionPurpose,
128 const std::string& filePath);
129
Lei YUbd3b0072019-08-08 13:09:50 +0800130 /** @brief Create Activation and Version object for PSU inventory
131 * @details If the same version exists for multiple PSUs, just add
132 * related association, instead of creating new objects.
133 * */
Lei YUad90ad52019-08-06 11:19:28 +0800134 void createPsuObject(const std::string& psuInventoryPath,
135 const std::string& psuVersion);
136
Lei YUbd3b0072019-08-08 13:09:50 +0800137 /** @brief Remove Activation and Version object for PSU inventory
138 * @details If the same version exists for mutliple PSUs, just remove
139 * related association.
140 * If the version has no association, the Activation and
141 * Version object will be removed
142 */
143 void removePsuObject(const std::string& psuInventoryPath);
144
Lei YUad90ad52019-08-06 11:19:28 +0800145 /**
146 * @brief Create and populate the active PSU Version.
147 */
148 void processPSUImage();
149
Lei YU01539e72019-07-31 10:57:38 +0800150 /** @brief Persistent sdbusplus D-Bus bus connection. */
151 sdbusplus::bus::bus& bus;
152
153 /** @brief Persistent map of Activation D-Bus objects and their
154 * version id */
155 std::map<std::string, std::unique_ptr<Activation>> activations;
156
157 /** @brief Persistent map of Version D-Bus objects and their
158 * version id */
159 std::map<std::string, std::unique_ptr<Version>> versions;
160
Lei YUbd3b0072019-08-08 13:09:50 +0800161 /** @brief The reference map of PSU Inventory objects and the
162 * Activation*/
163 std::map<std::string, const std::unique_ptr<Activation>&>
164 psuPathActivationMap;
165
166 /** @brief A struct to hold the PSU present status and version */
167 struct psuStatus
168 {
169 bool present;
170 std::string version;
171 };
172
173 /** @brief The map of PSU inventory path and the psuStatus */
174 std::map<std::string, psuStatus> psuStatusMap;
175
Lei YUad90ad52019-08-06 11:19:28 +0800176 /** @brief sdbusplus signal match for PSU Software*/
Lei YU01539e72019-07-31 10:57:38 +0800177 sdbusplus::bus::match_t versionMatch;
Lei YU91029442019-08-01 15:57:31 +0800178
Lei YUad90ad52019-08-06 11:19:28 +0800179 /** @brief sdbusplus signal matches for PSU Inventory */
180 std::vector<sdbusplus::bus::match_t> psuMatches;
181
Lei YU91029442019-08-01 15:57:31 +0800182 /** @brief This entry's associations */
183 AssociationList assocs;
Lei YU01539e72019-07-31 10:57:38 +0800184};
185
186} // namespace updater
187} // namespace software
188} // namespace phosphor