Matt Spinler | 711d51d | 2019-11-06 09:36:51 -0600 | [diff] [blame] | 1 | /** |
| 2 | * Copyright © 2019 IBM Corporation |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
Matt Spinler | c8705e2 | 2019-09-11 12:36:07 -0500 | [diff] [blame] | 16 | #include "data_interface.hpp" |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 17 | #include "elog_entry.hpp" |
| 18 | #include "extensions.hpp" |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 19 | #include "manager.hpp" |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 20 | |
| 21 | namespace openpower |
| 22 | { |
| 23 | namespace pels |
| 24 | { |
| 25 | |
| 26 | using namespace phosphor::logging; |
| 27 | |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 28 | std::unique_ptr<Manager> manager; |
| 29 | |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 30 | void pelStartup(internal::Manager& logManager) |
| 31 | { |
Matt Spinler | c8705e2 | 2019-09-11 12:36:07 -0500 | [diff] [blame] | 32 | std::unique_ptr<DataInterfaceBase> dataIface = |
| 33 | std::make_unique<DataInterface>(logManager.getBus()); |
| 34 | |
| 35 | manager = std::make_unique<Manager>(logManager, std::move(dataIface)); |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | REGISTER_EXTENSION_FUNCTION(pelStartup); |
| 39 | |
| 40 | void pelCreate(const std::string& message, uint32_t id, uint64_t timestamp, |
| 41 | Entry::Level severity, const AdditionalDataArg& additionalData, |
| 42 | const AssociationEndpointsArg& assocs) |
| 43 | { |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 44 | manager->create(message, id, timestamp, severity, additionalData, assocs); |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 45 | } |
| 46 | |
| 47 | REGISTER_EXTENSION_FUNCTION(pelCreate); |
| 48 | |
| 49 | void pelDelete(uint32_t id) |
| 50 | { |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 51 | return manager->erase(id); |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | REGISTER_EXTENSION_FUNCTION(pelDelete); |
| 55 | |
| 56 | void pelDeleteProhibited(uint32_t id, bool& prohibited) |
| 57 | { |
Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 58 | prohibited = manager->isDeleteProhibited(id); |
Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | REGISTER_EXTENSION_FUNCTION(pelDeleteProhibited); |
| 62 | |
| 63 | } // namespace pels |
| 64 | } // namespace openpower |