/*============================================================================= Library: CppMicroServices Copyright (c) The CppMicroServices developers. See the COPYRIGHT file at the top-level directory of this distribution and at https://github.com/CppMicroServices/CppMicroServices/COPYRIGHT . Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =============================================================================*/ #ifndef US_BUNDLE_NAME # error Missing US_BUNDLE_NAME preprocessor define #endif #ifndef CPPMICROSERVICES_BUNDLEINITIALIZATION_H # define CPPMICROSERVICES_BUNDLEINITIALIZATION_H # include "cppmicroservices/GlobalConfig.h" # include namespace cppmicroservices { class BundleContextPrivate; } /** * \ingroup MicroServices * \ingroup gr_macros * * \brief Creates initialization code for a bundle. * * Each bundle which wants to register itself with the CppMicroServices library * has to put a call to this macro in one of its source files. Further, the bundle's * source files must be compiled with the \c US_BUNDLE_NAME pre-processor definition * set to a bundle-unique identifier. * * Calling the #CPPMICROSERVICES_INITIALIZE_BUNDLE macro will initialize the bundle for use with * the CppMicroServices library. * * \rststar * .. hint:: * * If you are using CMake, consider using the provided CMake macro * :cmake:command:`usFunctionGenerateBundleInit`. * \endrststar */ # define CPPMICROSERVICES_INITIALIZE_BUNDLE \ std::atomic US_CTX_INS( \ US_BUNDLE_NAME){}; \ \ extern "C" cppmicroservices::BundleContextPrivate* US_GET_CTX_FUNC( \ US_BUNDLE_NAME)() \ { \ return US_CTX_INS(US_BUNDLE_NAME).load(); \ } \ \ extern "C" US_ABI_EXPORT void US_SET_CTX_FUNC(US_BUNDLE_NAME)( \ cppmicroservices::BundleContextPrivate * ctx) \ { \ US_CTX_INS(US_BUNDLE_NAME).store(ctx); \ } #endif // CPPMICROSERVICES_BUNDLEINITIALIZATION_H