blob: c0a64fa1a83cababb38138257dafe4b6d1c056cc [file] [log] [blame]
Lei YU01539e72019-07-31 10:57:38 +08001#pragma once
2
3#include "config.h"
4
5#include "activation.hpp"
Lei YU7f2a2152019-09-16 16:50:18 +08006#include "association_interface.hpp"
Lei YU91029442019-08-01 15:57:31 +08007#include "types.hpp"
Lei YU5e0dcb32019-08-02 18:04:34 +08008#include "utils.hpp"
Lei YU01539e72019-07-31 10:57:38 +08009#include "version.hpp"
10
Lei YU5e0dcb32019-08-02 18:04:34 +080011#include <phosphor-logging/log.hpp>
Lei YU01539e72019-07-31 10:57:38 +080012#include <sdbusplus/server.hpp>
Lei YU91029442019-08-01 15:57:31 +080013#include <xyz/openbmc_project/Association/Definitions/server.hpp>
Lei YU01539e72019-07-31 10:57:38 +080014#include <xyz/openbmc_project/Collection/DeleteAll/server.hpp>
15
Lei YUf77189f2019-08-07 14:26:30 +080016class TestItemUpdater;
17
Lei YU01539e72019-07-31 10:57:38 +080018namespace phosphor
19{
20namespace software
21{
22namespace updater
23{
24
25class Version;
26
27using ItemUpdaterInherit = sdbusplus::server::object::object<
Lei YU91029442019-08-01 15:57:31 +080028 sdbusplus::xyz::openbmc_project::Association::server::Definitions,
Lei YU01539e72019-07-31 10:57:38 +080029 sdbusplus::xyz::openbmc_project::Collection::server::DeleteAll>;
30namespace MatchRules = sdbusplus::bus::match::rules;
31
32/** @class ItemUpdater
33 * @brief Manages the activation of the PSU version items.
34 */
Lei YU7f2a2152019-09-16 16:50:18 +080035class ItemUpdater : public ItemUpdaterInherit, public AssociationInterface
Lei YU01539e72019-07-31 10:57:38 +080036{
Lei YUf77189f2019-08-07 14:26:30 +080037 friend class ::TestItemUpdater;
38
Lei YU01539e72019-07-31 10:57:38 +080039 public:
40 /** @brief Constructs ItemUpdater
41 *
42 * @param[in] bus - The D-Bus bus object
43 * @param[in] path - The D-Bus path
44 */
45 ItemUpdater(sdbusplus::bus::bus& bus, const std::string& path) :
46 ItemUpdaterInherit(bus, path.c_str()), bus(bus),
47 versionMatch(bus,
48 MatchRules::interfacesAdded() +
49 MatchRules::path(SOFTWARE_OBJPATH),
50 std::bind(std::mem_fn(&ItemUpdater::createActivation),
51 this, std::placeholders::_1))
52 {
Lei YUad90ad52019-08-06 11:19:28 +080053 processPSUImage();
Lei YU01539e72019-07-31 10:57:38 +080054 }
55
56 /** @brief Deletes version
57 *
58 * @param[in] versionId - Id of the version to delete
59 */
60 void erase(std::string versionId);
61
62 /**
63 * @brief Erases any non-active versions.
64 */
65 void deleteAll();
66
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 */
Lei YU7f2a2152019-09-16 16:50:18 +080072 void createActiveAssociation(const std::string& path) override;
Lei YU91029442019-08-01 15:57:31 +080073
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 YU7f2a2152019-09-16 16:50:18 +080079 void addFunctionalAssociation(const std::string& path) override;
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 */
Lei YU7f2a2152019-09-16 16:50:18 +080085 void removeAssociation(const std::string& path) override;
Lei YU91029442019-08-01 15:57:31 +080086
Lei YU7f2a2152019-09-16 16:50:18 +080087 private:
Lei YU01539e72019-07-31 10:57:38 +080088 /** @brief Callback function for Software.Version match.
89 * @details Creates an Activation D-Bus object.
90 *
91 * @param[in] msg - Data associated with subscribed signal
92 */
93 void createActivation(sdbusplus::message::message& msg);
94
Lei YUa2c2cd72019-08-09 15:54:10 +080095 using Properties =
96 std::map<std::string, utils::UtilsInterface::PropertyType>;
97
Lei YUad90ad52019-08-06 11:19:28 +080098 /** @brief Callback function for PSU inventory match.
99 * @details Update an Activation D-Bus object for PSU inventory.
100 *
101 * @param[in] msg - Data associated with subscribed signal
102 */
Lei YUa2c2cd72019-08-09 15:54:10 +0800103 void onPsuInventoryChangedMsg(sdbusplus::message::message& msg);
104
105 /** @brief Callback function for PSU inventory match.
106 * @details Update an Activation D-Bus object for PSU inventory.
107 *
108 * @param[in] psuPath - The PSU inventory path
109 * @param[in] properties - The updated properties
110 */
111 void onPsuInventoryChanged(const std::string& psuPath,
112 const Properties& properties);
Lei YUad90ad52019-08-06 11:19:28 +0800113
Lei YU01539e72019-07-31 10:57:38 +0800114 /** @brief Create Activation object */
115 std::unique_ptr<Activation> createActivationObject(
116 const std::string& path, const std::string& versionId,
117 const std::string& extVersion,
118 sdbusplus::xyz::openbmc_project::Software::server::Activation::
Lei YU91029442019-08-01 15:57:31 +0800119 Activations activationStatus,
120 const AssociationList& assocs);
Lei YU01539e72019-07-31 10:57:38 +0800121
122 /** @brief Create Version object */
123 std::unique_ptr<Version>
124 createVersionObject(const std::string& objPath,
125 const std::string& versionId,
126 const std::string& versionString,
127 sdbusplus::xyz::openbmc_project::Software::server::
128 Version::VersionPurpose versionPurpose,
129 const std::string& filePath);
130
Lei YUbd3b0072019-08-08 13:09:50 +0800131 /** @brief Create Activation and Version object for PSU inventory
132 * @details If the same version exists for multiple PSUs, just add
133 * related association, instead of creating new objects.
134 * */
Lei YUad90ad52019-08-06 11:19:28 +0800135 void createPsuObject(const std::string& psuInventoryPath,
136 const std::string& psuVersion);
137
Lei YUbd3b0072019-08-08 13:09:50 +0800138 /** @brief Remove Activation and Version object for PSU inventory
139 * @details If the same version exists for mutliple PSUs, just remove
140 * related association.
141 * If the version has no association, the Activation and
142 * Version object will be removed
143 */
144 void removePsuObject(const std::string& psuInventoryPath);
145
Lei YUad90ad52019-08-06 11:19:28 +0800146 /**
147 * @brief Create and populate the active PSU Version.
148 */
149 void processPSUImage();
150
Lei YU01539e72019-07-31 10:57:38 +0800151 /** @brief Persistent sdbusplus D-Bus bus connection. */
152 sdbusplus::bus::bus& bus;
153
154 /** @brief Persistent map of Activation D-Bus objects and their
155 * version id */
156 std::map<std::string, std::unique_ptr<Activation>> activations;
157
158 /** @brief Persistent map of Version D-Bus objects and their
159 * version id */
160 std::map<std::string, std::unique_ptr<Version>> versions;
161
Lei YUbd3b0072019-08-08 13:09:50 +0800162 /** @brief The reference map of PSU Inventory objects and the
163 * Activation*/
164 std::map<std::string, const std::unique_ptr<Activation>&>
165 psuPathActivationMap;
166
Lei YUad90ad52019-08-06 11:19:28 +0800167 /** @brief sdbusplus signal match for PSU Software*/
Lei YU01539e72019-07-31 10:57:38 +0800168 sdbusplus::bus::match_t versionMatch;
Lei YU91029442019-08-01 15:57:31 +0800169
Lei YUad90ad52019-08-06 11:19:28 +0800170 /** @brief sdbusplus signal matches for PSU Inventory */
171 std::vector<sdbusplus::bus::match_t> psuMatches;
172
Lei YU91029442019-08-01 15:57:31 +0800173 /** @brief This entry's associations */
174 AssociationList assocs;
Lei YU01539e72019-07-31 10:57:38 +0800175};
176
177} // namespace updater
178} // namespace software
179} // namespace phosphor