// Copyright (C) 2013-2015 Internet Systems Consortium, Inc. ("ISC") // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this // file, You can obtain one at http://mozilla.org/MPL/2.0/. #include #include #include #include #include #include #include #include #include #include using namespace std; namespace isc { namespace hooks { // Constructor HooksManager::HooksManager() { } // Return reference to singleton hooks manager. HooksManager& HooksManager::getHooksManager() { static HooksManager manager; return (manager); } // Are callouts present? bool HooksManager::calloutsPresentInternal(int index) { conditionallyInitialize(); return (callout_manager_->calloutsPresent(index)); } bool HooksManager::calloutsPresent(int index) { return (getHooksManager().calloutsPresentInternal(index)); } // Call the callouts void HooksManager::callCalloutsInternal(int index, CalloutHandle& handle) { conditionallyInitialize(); return (callout_manager_->callCallouts(index, handle)); } void HooksManager::callCallouts(int index, CalloutHandle& handle) { return (getHooksManager().callCalloutsInternal(index, handle)); } // Load the libraries. This will delete the previously-loaded libraries // (if present) and load new ones. bool HooksManager::loadLibrariesInternal(const std::vector& libraries) { // Unload current set of libraries (if any are loaded). unloadLibrariesInternal(); // Create the library manager and load the libraries. lm_collection_.reset(new LibraryManagerCollection(libraries)); bool status = lm_collection_->loadLibraries(); if (status) { // ... and obtain the callout manager for them if successful. callout_manager_ = lm_collection_->getCalloutManager(); } else { // Unable to load libraries, reset to state before this function was // called. lm_collection_.reset(); callout_manager_.reset(); } return (status); } bool HooksManager::loadLibraries(const std::vector& libraries) { return (getHooksManager().loadLibrariesInternal(libraries)); } // Unload the libraries. This just deletes all internal objects which will // cause the libraries to be unloaded. void HooksManager::unloadLibrariesInternal() { // The order of deletion does not matter here, as each library manager // holds its own pointer to the callout manager. However, we may as // well delete the library managers first: if there are no other references // to the callout manager, the second statement will delete it, which may // ease debugging. lm_collection_.reset(); callout_manager_.reset(); } void HooksManager::unloadLibraries() { getHooksManager().unloadLibrariesInternal(); } // Create a callout handle boost::shared_ptr HooksManager::createCalloutHandleInternal() { conditionallyInitialize(); return (boost::shared_ptr( new CalloutHandle(callout_manager_, lm_collection_))); } boost::shared_ptr HooksManager::createCalloutHandle() { return (getHooksManager().createCalloutHandleInternal()); } // Get the list of the names of loaded libraries. std::vector HooksManager::getLibraryNamesInternal() const { return (lm_collection_ ? lm_collection_->getLibraryNames() : std::vector()); } std::vector HooksManager::getLibraryNames() { return (getHooksManager().getLibraryNamesInternal()); } // Perform conditional initialization if nothing is loaded. void HooksManager::performConditionalInitialization() { // Nothing present, so create the collection with any empty set of // libraries, and get the CalloutManager. vector libraries; lm_collection_.reset(new LibraryManagerCollection(libraries)); lm_collection_->loadLibraries(); callout_manager_ = lm_collection_->getCalloutManager(); } // Shell around ServerHooks::registerHook() int HooksManager::registerHook(const std::string& name) { return (ServerHooks::getServerHooks().registerHook(name)); } // Return pre- and post- library handles. isc::hooks::LibraryHandle& HooksManager::preCalloutsLibraryHandleInternal() { conditionallyInitialize(); return (callout_manager_->getPreLibraryHandle()); } isc::hooks::LibraryHandle& HooksManager::preCalloutsLibraryHandle() { return (getHooksManager().preCalloutsLibraryHandleInternal()); } isc::hooks::LibraryHandle& HooksManager::postCalloutsLibraryHandleInternal() { conditionallyInitialize(); return (callout_manager_->getPostLibraryHandle()); } isc::hooks::LibraryHandle& HooksManager::postCalloutsLibraryHandle() { return (getHooksManager().postCalloutsLibraryHandleInternal()); } // Validate libraries std::vector HooksManager::validateLibraries(const std::vector& libraries) { return (LibraryManagerCollection::validateLibraries(libraries)); } } // namespace util } // namespace isc