blob: ce6d7b80b3ee4293f0a897356c34057deee76e5f [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 Tanous56b81992024-12-02 10:36:37 -080018#include "bmcweb_config.h"
19
Ed Tanous65e4f1f2022-02-08 00:23:54 -080020#include <nlohmann/json.hpp>
21
Nan Zhoud5c80ad2022-07-11 01:16:31 +000022#include <array>
Ed Tanous80f595e2022-02-14 09:32:05 -080023#include <charconv>
Nan Zhoud5c80ad2022-07-11 01:16:31 +000024#include <cstddef>
Ed Tanous56b81992024-12-02 10:36:37 -080025#include <format>
Ed Tanous80f595e2022-02-14 09:32:05 -080026#include <numeric>
Ed Tanousc5ba4c22022-02-07 09:59:55 -080027#include <span>
28#include <string>
29#include <string_view>
Nan Zhoud5c80ad2022-07-11 01:16:31 +000030#include <utility>
31
Ed Tanousfffb8c12022-02-07 23:53:03 -080032namespace redfish::registries
Jason M. Bills70304cb2019-03-27 12:03:59 -070033{
Jason M. Bills351d3062019-03-27 12:58:21 -070034struct Header
35{
36 const char* copyright;
37 const char* type;
Ed Tanous56b81992024-12-02 10:36:37 -080038 unsigned int versionMajor;
39 unsigned int versionMinor;
40 unsigned int versionPatch;
Jason M. Bills351d3062019-03-27 12:58:21 -070041 const char* name;
42 const char* language;
43 const char* description;
44 const char* registryPrefix;
Jason M. Bills351d3062019-03-27 12:58:21 -070045 const char* owningEntity;
46};
Jason M. Bills70304cb2019-03-27 12:03:59 -070047
48struct Message
49{
50 const char* description;
51 const char* message;
Gunnar Millse7808c92020-07-08 21:17:44 -050052 const char* messageSeverity;
Ed Tanous271584a2019-07-09 16:24:22 -070053 const size_t numberOfArgs;
Jason M. Bills70304cb2019-03-27 12:03:59 -070054 std::array<const char*, 5> paramTypes;
55 const char* resolution;
56};
57using MessageEntry = std::pair<const char*, const Message>;
Ed Tanousc5ba4c22022-02-07 09:59:55 -080058
Patrick Williamsbd79bce2024-08-16 15:22:20 -040059inline std::string fillMessageArgs(
60 const std::span<const std::string_view> messageArgs, std::string_view msg)
Ed Tanousc5ba4c22022-02-07 09:59:55 -080061{
Ed Tanous80f595e2022-02-14 09:32:05 -080062 std::string ret;
63 size_t reserve = msg.size();
Ed Tanous26ccae32023-02-16 10:28:44 -080064 for (std::string_view arg : messageArgs)
Ed Tanousc5ba4c22022-02-07 09:59:55 -080065 {
Ed Tanous80f595e2022-02-14 09:32:05 -080066 reserve += arg.size();
Ed Tanousc5ba4c22022-02-07 09:59:55 -080067 }
Ed Tanous80f595e2022-02-14 09:32:05 -080068 ret.reserve(reserve);
69
70 for (size_t stringIndex = msg.find('%'); stringIndex != std::string::npos;
71 stringIndex = msg.find('%'))
72 {
73 ret += msg.substr(0, stringIndex);
74 msg.remove_prefix(stringIndex + 1);
75 size_t number = 0;
76 auto it = std::from_chars(msg.data(), &*msg.end(), number);
77 if (it.ec != std::errc())
78 {
79 return "";
80 }
81 msg.remove_prefix(1);
82 // Redfish message args are 1 indexed.
83 number--;
84 if (number >= messageArgs.size())
85 {
86 return "";
87 }
88 ret += messageArgs[number];
89 }
90 ret += msg;
91 return ret;
Ed Tanousc5ba4c22022-02-07 09:59:55 -080092}
93
Patrick Williamsbd79bce2024-08-16 15:22:20 -040094inline nlohmann::json::object_t getLogFromRegistry(
95 const Header& header, std::span<const MessageEntry> registry, size_t index,
96 std::span<const std::string_view> args)
Ed Tanous65e4f1f2022-02-08 00:23:54 -080097{
98 const redfish::registries::MessageEntry& entry = registry[index];
99 // Intentionally make a copy of the string, so we can append in the
100 // parameters.
Krzysztof Grobelny2e30bc22022-09-09 10:13:41 +0200101 std::string msg =
102 redfish::registries::fillMessageArgs(args, entry.second.message);
Ed Tanous65e4f1f2022-02-08 00:23:54 -0800103 nlohmann::json jArgs = nlohmann::json::array();
Ed Tanous26ccae32023-02-16 10:28:44 -0800104 for (std::string_view arg : args)
Ed Tanous65e4f1f2022-02-08 00:23:54 -0800105 {
106 jArgs.push_back(arg);
107 }
Ed Tanous56b81992024-12-02 10:36:37 -0800108 std::string msgId;
109 if (BMCWEB_REDFISH_USE_3_DIGIT_MESSAGEID)
110 {
111 msgId = std::format("{}.{}.{}.{}.{}", header.registryPrefix,
112 header.versionMajor, header.versionMinor,
113 header.versionPatch, entry.first);
114 }
115 else
116 {
117 msgId =
118 std::format("{}.{}.{}.{}", header.registryPrefix,
119 header.versionMajor, header.versionMinor, entry.first);
120 }
Ed Tanous65e4f1f2022-02-08 00:23:54 -0800121 nlohmann::json::object_t response;
122 response["@odata.type"] = "#Message.v1_1_1.Message";
123 response["MessageId"] = std::move(msgId);
124 response["Message"] = std::move(msg);
125 response["MessageArgs"] = std::move(jArgs);
126 response["MessageSeverity"] = entry.second.messageSeverity;
127 response["Resolution"] = entry.second.resolution;
128 return response;
129}
130
Sui Chend1d411f2022-04-10 23:09:36 -0700131const Message* getMessage(std::string_view messageID);
132
133const Message* getMessageFromRegistry(const std::string& messageKey,
134 std::span<const MessageEntry> registry);
135
Ed Tanousfffb8c12022-02-07 23:53:03 -0800136} // namespace redfish::registries