| 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 | DISABLE_LOG_ENTRY_CAPS(); | 
|  | 31 |  | 
|  | 32 | void pelStartup(internal::Manager& logManager) | 
|  | 33 | { | 
| Matt Spinler | c8705e2 | 2019-09-11 12:36:07 -0500 | [diff] [blame] | 34 | std::unique_ptr<DataInterfaceBase> dataIface = | 
|  | 35 | std::make_unique<DataInterface>(logManager.getBus()); | 
|  | 36 |  | 
|  | 37 | manager = std::make_unique<Manager>(logManager, std::move(dataIface)); | 
| Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 38 | } | 
|  | 39 |  | 
|  | 40 | REGISTER_EXTENSION_FUNCTION(pelStartup); | 
|  | 41 |  | 
|  | 42 | void pelCreate(const std::string& message, uint32_t id, uint64_t timestamp, | 
|  | 43 | Entry::Level severity, const AdditionalDataArg& additionalData, | 
|  | 44 | const AssociationEndpointsArg& assocs) | 
|  | 45 | { | 
| Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 46 | manager->create(message, id, timestamp, severity, additionalData, assocs); | 
| Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 47 | } | 
|  | 48 |  | 
|  | 49 | REGISTER_EXTENSION_FUNCTION(pelCreate); | 
|  | 50 |  | 
|  | 51 | void pelDelete(uint32_t id) | 
|  | 52 | { | 
| Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 53 | return manager->erase(id); | 
| Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 54 | } | 
|  | 55 |  | 
|  | 56 | REGISTER_EXTENSION_FUNCTION(pelDelete); | 
|  | 57 |  | 
|  | 58 | void pelDeleteProhibited(uint32_t id, bool& prohibited) | 
|  | 59 | { | 
| Matt Spinler | 4e8078c | 2019-07-09 13:22:32 -0500 | [diff] [blame] | 60 | prohibited = manager->isDeleteProhibited(id); | 
| Matt Spinler | 99c2b40 | 2019-05-23 14:29:16 -0500 | [diff] [blame] | 61 | } | 
|  | 62 |  | 
|  | 63 | REGISTER_EXTENSION_FUNCTION(pelDeleteProhibited); | 
|  | 64 |  | 
|  | 65 | } // namespace pels | 
|  | 66 | } // namespace openpower |