blob: 2cccf68e397a0eea6d8f1f66b8f71a37179dea3f [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 YU58c26e32019-09-27 17:52:06 +080011#include <filesystem>
Lei YU5e0dcb32019-08-02 18:04:34 +080012#include <phosphor-logging/log.hpp>
Lei YU01539e72019-07-31 10:57:38 +080013#include <sdbusplus/server.hpp>
Lei YU91029442019-08-01 15:57:31 +080014#include <xyz/openbmc_project/Association/Definitions/server.hpp>
Lei YU01539e72019-07-31 10:57:38 +080015#include <xyz/openbmc_project/Collection/DeleteAll/server.hpp>
16
Lei YUf77189f2019-08-07 14:26:30 +080017class TestItemUpdater;
18
Lei YU01539e72019-07-31 10:57:38 +080019namespace phosphor
20{
21namespace software
22{
23namespace updater
24{
25
26class Version;
27
28using ItemUpdaterInherit = sdbusplus::server::object::object<
Lei YUa5c47bb2019-09-29 11:28:53 +080029 sdbusplus::xyz::openbmc_project::Association::server::Definitions>;
30
Lei YU01539e72019-07-31 10:57:38 +080031namespace MatchRules = sdbusplus::bus::match::rules;
32
Lei YU58c26e32019-09-27 17:52:06 +080033namespace fs = std::filesystem;
34
Lei YU01539e72019-07-31 10:57:38 +080035/** @class ItemUpdater
36 * @brief Manages the activation of the PSU version items.
37 */
Lei YU7f2a2152019-09-16 16:50:18 +080038class ItemUpdater : public ItemUpdaterInherit, public AssociationInterface
Lei YU01539e72019-07-31 10:57:38 +080039{
Lei YUf77189f2019-08-07 14:26:30 +080040 friend class ::TestItemUpdater;
41
Lei YU01539e72019-07-31 10:57:38 +080042 public:
43 /** @brief Constructs ItemUpdater
44 *
45 * @param[in] bus - The D-Bus bus object
46 * @param[in] path - The D-Bus path
47 */
48 ItemUpdater(sdbusplus::bus::bus& bus, const std::string& path) :
49 ItemUpdaterInherit(bus, path.c_str()), bus(bus),
50 versionMatch(bus,
51 MatchRules::interfacesAdded() +
52 MatchRules::path(SOFTWARE_OBJPATH),
53 std::bind(std::mem_fn(&ItemUpdater::createActivation),
54 this, std::placeholders::_1))
55 {
Lei YUad90ad52019-08-06 11:19:28 +080056 processPSUImage();
Lei YU58c26e32019-09-27 17:52:06 +080057 processStoredImage();
Lei YU01539e72019-07-31 10:57:38 +080058 }
59
60 /** @brief Deletes version
61 *
62 * @param[in] versionId - Id of the version to delete
63 */
Lei YUa5c47bb2019-09-29 11:28:53 +080064 void erase(const std::string& versionId);
Lei YU01539e72019-07-31 10:57:38 +080065
Lei YU91029442019-08-01 15:57:31 +080066 /** @brief Creates an active association to the
67 * newly active software image
68 *
69 * @param[in] path - The path to create the association to.
70 */
Lei YU7f2a2152019-09-16 16:50:18 +080071 void createActiveAssociation(const std::string& path) override;
Lei YU91029442019-08-01 15:57:31 +080072
Lei YUad90ad52019-08-06 11:19:28 +080073 /** @brief Add the functional association to the
Lei YU91029442019-08-01 15:57:31 +080074 * new "running" PSU images
75 *
Lei YUad90ad52019-08-06 11:19:28 +080076 * @param[in] path - The path to add the association to.
Lei YU91029442019-08-01 15:57:31 +080077 */
Lei YU7f2a2152019-09-16 16:50:18 +080078 void addFunctionalAssociation(const std::string& path) override;
Lei YU91029442019-08-01 15:57:31 +080079
80 /** @brief Removes the associations from the provided software image path
81 *
82 * @param[in] path - The path to remove the association from.
83 */
Lei YU7f2a2152019-09-16 16:50:18 +080084 void removeAssociation(const std::string& path) override;
Lei YU91029442019-08-01 15:57:31 +080085
Lei YU7f2a2152019-09-16 16:50:18 +080086 private:
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,
Lei YU58c26e32019-09-27 17:52:06 +0800116 const std::string& extVersion, Activation::Status activationStatus,
Lei YU99301372019-09-29 16:27:12 +0800117 const AssociationList& assocs, const std::string& filePath);
Lei YU01539e72019-07-31 10:57:38 +0800118
119 /** @brief Create Version object */
120 std::unique_ptr<Version>
121 createVersionObject(const std::string& objPath,
122 const std::string& versionId,
123 const std::string& versionString,
124 sdbusplus::xyz::openbmc_project::Software::server::
Lei YU99301372019-09-29 16:27:12 +0800125 Version::VersionPurpose versionPurpose);
Lei YU01539e72019-07-31 10:57:38 +0800126
Lei YUbd3b0072019-08-08 13:09:50 +0800127 /** @brief Create Activation and Version object for PSU inventory
128 * @details If the same version exists for multiple PSUs, just add
129 * related association, instead of creating new objects.
130 * */
Lei YUad90ad52019-08-06 11:19:28 +0800131 void createPsuObject(const std::string& psuInventoryPath,
132 const std::string& psuVersion);
133
Lei YUbd3b0072019-08-08 13:09:50 +0800134 /** @brief Remove Activation and Version object for PSU inventory
135 * @details If the same version exists for mutliple PSUs, just remove
136 * related association.
137 * If the version has no association, the Activation and
138 * Version object will be removed
139 */
140 void removePsuObject(const std::string& psuInventoryPath);
141
Lei YUad90ad52019-08-06 11:19:28 +0800142 /**
143 * @brief Create and populate the active PSU Version.
144 */
145 void processPSUImage();
146
Lei YU58c26e32019-09-27 17:52:06 +0800147 /** @brief Create PSU Version from stored images */
148 void processStoredImage();
149
150 /** @brief Scan a directory and create PSU Version from stored images */
151 void scanDirectory(const fs::path& p);
152
Lei YU01539e72019-07-31 10:57:38 +0800153 /** @brief Persistent sdbusplus D-Bus bus connection. */
154 sdbusplus::bus::bus& bus;
155
156 /** @brief Persistent map of Activation D-Bus objects and their
157 * version id */
158 std::map<std::string, std::unique_ptr<Activation>> activations;
159
160 /** @brief Persistent map of Version D-Bus objects and their
161 * version id */
162 std::map<std::string, std::unique_ptr<Version>> versions;
163
Lei YUbd3b0072019-08-08 13:09:50 +0800164 /** @brief The reference map of PSU Inventory objects and the
165 * Activation*/
166 std::map<std::string, const std::unique_ptr<Activation>&>
167 psuPathActivationMap;
168
Lei YUad90ad52019-08-06 11:19:28 +0800169 /** @brief sdbusplus signal match for PSU Software*/
Lei YU01539e72019-07-31 10:57:38 +0800170 sdbusplus::bus::match_t versionMatch;
Lei YU91029442019-08-01 15:57:31 +0800171
Lei YUad90ad52019-08-06 11:19:28 +0800172 /** @brief sdbusplus signal matches for PSU Inventory */
173 std::vector<sdbusplus::bus::match_t> psuMatches;
174
Lei YU91029442019-08-01 15:57:31 +0800175 /** @brief This entry's associations */
176 AssociationList assocs;
Lei YU01539e72019-07-31 10:57:38 +0800177};
178
179} // namespace updater
180} // namespace software
181} // namespace phosphor