blob: f7aa32bf1eb572d1b79f2060b27011e061d25b4a [file] [log] [blame]
Jason M. Bills70304cb2019-03-27 12:03:59 -07001/*
Ed Tanous6be832e2024-09-10 11:44:48 -07002Copyright (c) 2019 Intel Corporation
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
Jason M. Bills70304cb2019-03-27 12:03:59 -070015*/
16#pragma once
Ed Tanousc5ba4c22022-02-07 09:59:55 -080017
Ed Tanous65e4f1f2022-02-08 00:23:54 -080018#include <nlohmann/json.hpp>
19
Nan Zhoud5c80ad2022-07-11 01:16:31 +000020#include <array>
Ed Tanous80f595e2022-02-14 09:32:05 -080021#include <charconv>
Nan Zhoud5c80ad2022-07-11 01:16:31 +000022#include <cstddef>
Ed Tanous80f595e2022-02-14 09:32:05 -080023#include <numeric>
Ed Tanousc5ba4c22022-02-07 09:59:55 -080024#include <span>
25#include <string>
26#include <string_view>
Nan Zhoud5c80ad2022-07-11 01:16:31 +000027#include <utility>
28
Ed Tanousfffb8c12022-02-07 23:53:03 -080029namespace redfish::registries
Jason M. Bills70304cb2019-03-27 12:03:59 -070030{
Jason M. Bills351d3062019-03-27 12:58:21 -070031struct Header
32{
33 const char* copyright;
34 const char* type;
35 const char* id;
36 const char* name;
37 const char* language;
38 const char* description;
39 const char* registryPrefix;
40 const char* registryVersion;
41 const char* owningEntity;
42};
Jason M. Bills70304cb2019-03-27 12:03:59 -070043
44struct Message
45{
46 const char* description;
47 const char* message;
Gunnar Millse7808c92020-07-08 21:17:44 -050048 const char* messageSeverity;
Ed Tanous271584a2019-07-09 16:24:22 -070049 const size_t numberOfArgs;
Jason M. Bills70304cb2019-03-27 12:03:59 -070050 std::array<const char*, 5> paramTypes;
51 const char* resolution;
52};
53using MessageEntry = std::pair<const char*, const Message>;
Ed Tanousc5ba4c22022-02-07 09:59:55 -080054
Patrick Williamsbd79bce2024-08-16 15:22:20 -040055inline std::string fillMessageArgs(
56 const std::span<const std::string_view> messageArgs, std::string_view msg)
Ed Tanousc5ba4c22022-02-07 09:59:55 -080057{
Ed Tanous80f595e2022-02-14 09:32:05 -080058 std::string ret;
59 size_t reserve = msg.size();
Ed Tanous26ccae32023-02-16 10:28:44 -080060 for (std::string_view arg : messageArgs)
Ed Tanousc5ba4c22022-02-07 09:59:55 -080061 {
Ed Tanous80f595e2022-02-14 09:32:05 -080062 reserve += arg.size();
Ed Tanousc5ba4c22022-02-07 09:59:55 -080063 }
Ed Tanous80f595e2022-02-14 09:32:05 -080064 ret.reserve(reserve);
65
66 for (size_t stringIndex = msg.find('%'); stringIndex != std::string::npos;
67 stringIndex = msg.find('%'))
68 {
69 ret += msg.substr(0, stringIndex);
70 msg.remove_prefix(stringIndex + 1);
71 size_t number = 0;
72 auto it = std::from_chars(msg.data(), &*msg.end(), number);
73 if (it.ec != std::errc())
74 {
75 return "";
76 }
77 msg.remove_prefix(1);
78 // Redfish message args are 1 indexed.
79 number--;
80 if (number >= messageArgs.size())
81 {
82 return "";
83 }
84 ret += messageArgs[number];
85 }
86 ret += msg;
87 return ret;
Ed Tanousc5ba4c22022-02-07 09:59:55 -080088}
89
Patrick Williamsbd79bce2024-08-16 15:22:20 -040090inline nlohmann::json::object_t getLogFromRegistry(
91 const Header& header, std::span<const MessageEntry> registry, size_t index,
92 std::span<const std::string_view> args)
Ed Tanous65e4f1f2022-02-08 00:23:54 -080093{
94 const redfish::registries::MessageEntry& entry = registry[index];
95 // Intentionally make a copy of the string, so we can append in the
96 // parameters.
Krzysztof Grobelny2e30bc22022-09-09 10:13:41 +020097 std::string msg =
98 redfish::registries::fillMessageArgs(args, entry.second.message);
Ed Tanous65e4f1f2022-02-08 00:23:54 -080099 nlohmann::json jArgs = nlohmann::json::array();
Ed Tanous26ccae32023-02-16 10:28:44 -0800100 for (std::string_view arg : args)
Ed Tanous65e4f1f2022-02-08 00:23:54 -0800101 {
102 jArgs.push_back(arg);
103 }
104 std::string msgId = header.id;
105 msgId += ".";
106 msgId += entry.first;
107
108 nlohmann::json::object_t response;
109 response["@odata.type"] = "#Message.v1_1_1.Message";
110 response["MessageId"] = std::move(msgId);
111 response["Message"] = std::move(msg);
112 response["MessageArgs"] = std::move(jArgs);
113 response["MessageSeverity"] = entry.second.messageSeverity;
114 response["Resolution"] = entry.second.resolution;
115 return response;
116}
117
Sui Chend1d411f2022-04-10 23:09:36 -0700118const Message* getMessage(std::string_view messageID);
119
120const Message* getMessageFromRegistry(const std::string& messageKey,
121 std::span<const MessageEntry> registry);
122
Ed Tanousfffb8c12022-02-07 23:53:03 -0800123} // namespace redfish::registries