Files
Li, Xun d10cabebb5 Linux 2.5 Open Source Gold Release
Added new APIs in sgx_uae_service.h and sgx_ukey_exchange.h to support ECDSA quote based remote attestation.
  The set of legacy APIs supports EPID only and the set of new APIs supports ECDSA quotes.
Enhanced Edger8r with structure deep-copy feature.
Fixed bugs.

Signed-off-by: Li, Xun <xun.li@intel.com>
2019-04-02 13:26:58 +08:00

232 lines
8.3 KiB
C++

/*=============================================================================
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 CPPMICROSERVICES_SERVICEREGISTRATIONBASE_H
#define CPPMICROSERVICES_SERVICEREGISTRATIONBASE_H
#include "cppmicroservices/ServiceProperties.h"
#include "cppmicroservices/ServiceReference.h"
namespace cppmicroservices {
class BundlePrivate;
class ServiceRegistrationBasePrivate;
class Properties;
/**
* \ingroup MicroServices
* \ingroup gr_serviceregistration
*
* A registered service.
*
* The framework returns a <code>ServiceRegistrationBase</code> object when a
* <code>BundleContext#RegisterService()</code> method invocation is successful.
* The <code>ServiceRegistrationBase</code> object is for the private use of the
* registering bundle and should not be shared with other bundles.
*
* The <code>ServiceRegistrationBase</code> object may be used to update the
* properties of the service or to unregister the service.
*
* \rststar
* .. note::
* This class is provided as public API for low-level service management only.
* In almost all cases you should use the template ServiceRegistration instead.
* \endrststar
*
* @see BundleContext#RegisterService()
*/
class US_Framework_EXPORT ServiceRegistrationBase
{
public:
ServiceRegistrationBase(const ServiceRegistrationBase& reg);
ServiceRegistrationBase(ServiceRegistrationBase&& reg);
/**
* A boolean conversion operator converting this ServiceRegistrationBase object
* to \c true if it is valid and to \c false otherwise. A ServiceRegistrationBase
* object is invalid if it was default-constructed or was invalidated by
* assigning 0 to it.
*
* \see operator=(std::nullptr_t)
*
* \return \c true if this ServiceRegistrationBase object is valid, \c false
* otherwise.
*/
explicit operator bool() const;
/**
* Releases any resources held or locked by this
* <code>ServiceRegistrationBase</code> and renders it invalid.
*
* \return This ServiceRegistrationBase object.
*/
ServiceRegistrationBase& operator=(std::nullptr_t);
~ServiceRegistrationBase();
/**
* Returns a <code>ServiceReferenceBase</code> object for a service being
* registered.
* <p>
* The <code>ServiceReferenceBase</code> object may be shared with other
* bundles.
*
* @throws std::logic_error If this
* <code>ServiceRegistrationBase</code> object has already been
* unregistered or if it is invalid.
* @return <code>ServiceReference</code> object.
*/
ServiceReferenceBase GetReference(
const std::string& interfaceId = std::string()) const;
/**
* Updates the properties associated with a service.
*
* <p>
* The Constants#OBJECTCLASS and Constants#SERVICE_ID keys
* cannot be modified by this method. These values are set by the framework
* when the service is registered in the environment.
*
* <p>
* The following steps are taken to modify service properties:
* <ol>
* <li>The service's properties are replaced with the provided properties.
* <li>A service event of type ServiceEvent#SERVICE_MODIFIED is fired.
* </ol>
*
* @param properties The properties for this service. See {@link ServiceProperties}
* for a list of standard service property keys. Changes should not
* be made to this object after calling this method. To update the
* service's properties this method should be called again.
*
* @throws std::logic_error If this <code>ServiceRegistrationBase</code>
* object has already been unregistered or if it is invalid.
* @throws std::invalid_argument If <code>properties</code> contains
* case variants of the same key name or if the number of the keys
* of <code>properties</code> exceeds the value returned by
* std::numeric_limits<int>::max().
*/
void SetProperties(const ServiceProperties& properties);
/**
* Unregisters a service. Remove a <code>ServiceRegistrationBase</code> object
* from the framework service registry. All <code>ServiceRegistrationBase</code>
* objects associated with this <code>ServiceRegistrationBase</code> object
* can no longer be used to interact with the service once unregistration is
* complete.
*
* <p>
* The following steps are taken to unregister a service:
* <ol>
* <li>The service is removed from the framework service registry so that
* it can no longer be obtained.
* <li>A service event of type ServiceEvent#SERVICE_UNREGISTERING is fired
* so that bundles using this service can release their use of the service.
* Once delivery of the service event is complete, the
* <code>ServiceRegistrationBase</code> objects for the service may no longer be
* used to get a service object for the service.
* <li>For each bundle whose use count for this service is greater than
* zero: <br>
* The bundle's use count for this service is set to zero. <br>
* If the service was registered with a ServiceFactory object, the
* <code>ServiceFactory#UngetService</code> method is called to release
* the service object for the bundle.
* </ol>
*
* @throws std::logic_error If this
* <code>ServiceRegistrationBase</code> object has already been
* unregistered or if it is invalid.
*/
void Unregister();
/**
* Compare two ServiceRegistrationBase objects.
*
* If both ServiceRegistrationBase objects are valid, the comparison is done
* using the underlying ServiceReference object. Otherwise, this ServiceRegistrationBase
* object is less than the other object if and only if this object is invalid and
* the other object is valid.
*
* @param o The ServiceRegistrationBase object to compare with.
* @return \c true if this ServiceRegistrationBase object is less than the other object.
*/
bool operator<(const ServiceRegistrationBase& o) const;
bool operator==(const ServiceRegistrationBase& registration) const;
ServiceRegistrationBase& operator=(
const ServiceRegistrationBase& registration);
ServiceRegistrationBase& operator=(ServiceRegistrationBase&& registration);
private:
friend class ServiceRegistry;
friend class ServiceReferenceBasePrivate;
template<class I1, class... Interfaces>
friend class ServiceRegistration;
friend struct ::std::hash<ServiceRegistrationBase>;
/**
* Creates an invalid ServiceRegistrationBase object. You can use
* this object in boolean expressions and it will evaluate to
* <code>false</code>.
*/
ServiceRegistrationBase();
ServiceRegistrationBase(ServiceRegistrationBasePrivate* registrationPrivate);
ServiceRegistrationBase(BundlePrivate* bundle,
const InterfaceMapConstPtr& service,
Properties&& props);
ServiceRegistrationBasePrivate* d;
};
/**
* \ingroup MicroServices
* \ingroup gr_servicereregistration
*
* Writes a string representation of \c reg to the stream \c os.
*/
US_Framework_EXPORT std::ostream& operator<<(
std::ostream& os,
const ServiceRegistrationBase& reg);
}
/**
* \ingroup MicroServices
* \ingroup gr_serviceregistration
*
* \struct std::hash<cppmicroservices::ServiceRegistrationBase> ServiceRegistrationBase.h <cppmicroservices/ServiceRegistrationBase.h>
*
* Hash functor specialization for \link cppmicroservices#ServiceRegistrationBase ServiceRegistrationBase\endlink objects.
*/
US_HASH_FUNCTION_BEGIN(cppmicroservices::ServiceRegistrationBase)
return std::hash<cppmicroservices::ServiceRegistrationBasePrivate*>()(arg.d);
US_HASH_FUNCTION_END
#endif // CPPMICROSERVICES_SERVICEREGISTRATIONBASE_H