mirror of
https://github.com/intel/linux-sgx
synced 2026-06-08 14:49:32 +00:00
d10cabebb5
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>
182 lines
5.5 KiB
C++
182 lines
5.5 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_SERVICETRACKERPRIVATE_H
|
|
#define CPPMICROSERVICES_SERVICETRACKERPRIVATE_H
|
|
|
|
#include "cppmicroservices/BundleContext.h"
|
|
#include "cppmicroservices/LDAPFilter.h"
|
|
#include "cppmicroservices/ServiceReference.h"
|
|
#include "cppmicroservices/detail/Threads.h"
|
|
|
|
namespace cppmicroservices {
|
|
|
|
namespace detail {
|
|
|
|
/**
|
|
* \ingroup MicroServices
|
|
*/
|
|
template<class S, class TTT>
|
|
class ServiceTrackerPrivate : MultiThreaded<>
|
|
{
|
|
|
|
public:
|
|
typedef typename TTT::TrackedType T;
|
|
typedef typename TTT::TrackedParmType TrackedParmType;
|
|
|
|
ServiceTrackerPrivate(ServiceTracker<S, T>* st,
|
|
const BundleContext& context,
|
|
const ServiceReference<S>& reference,
|
|
ServiceTrackerCustomizer<S, T>* customizer);
|
|
|
|
ServiceTrackerPrivate(ServiceTracker<S, T>* st,
|
|
const BundleContext& context,
|
|
const std::string& clazz,
|
|
ServiceTrackerCustomizer<S, T>* customizer);
|
|
|
|
ServiceTrackerPrivate(ServiceTracker<S, T>* st,
|
|
const BundleContext& context,
|
|
const LDAPFilter& filter,
|
|
ServiceTrackerCustomizer<S, T>* customizer);
|
|
|
|
~ServiceTrackerPrivate();
|
|
|
|
/**
|
|
* Returns the list of initial <code>ServiceReference</code>s that will be
|
|
* tracked by this <code>ServiceTracker</code>.
|
|
*
|
|
* @param className The class name with which the service was registered, or
|
|
* <code>null</code> for all services.
|
|
* @param filterString The filter criteria or <code>null</code> for all
|
|
* services.
|
|
* @return The list of initial <code>ServiceReference</code>s.
|
|
* @throws std::invalid_argument If the specified filterString has an
|
|
* invalid syntax.
|
|
*/
|
|
std::vector<ServiceReference<S>> GetInitialReferences(
|
|
const std::string& className,
|
|
const std::string& filterString);
|
|
|
|
void GetServiceReferences_unlocked(std::vector<ServiceReference<S>>& refs,
|
|
TrackedService<S, TTT>* t) const;
|
|
|
|
/**
|
|
* The Bundle Context used by this <code>ServiceTracker</code>.
|
|
*/
|
|
BundleContext context;
|
|
|
|
/**
|
|
* The filter used by this <code>ServiceTracker</code> which specifies the
|
|
* search criteria for the services to track.
|
|
*/
|
|
LDAPFilter filter;
|
|
|
|
/**
|
|
* The <code>ServiceTrackerCustomizer</code> for this tracker.
|
|
*/
|
|
ServiceTrackerCustomizer<S, T>* customizer;
|
|
|
|
/**
|
|
* Filter string for use when adding the ServiceListener. If this field is
|
|
* set, then certain optimizations can be taken since we don't have a user
|
|
* supplied filter.
|
|
*/
|
|
std::string listenerFilter;
|
|
|
|
/**
|
|
* This token corresponds to the ServiceListener, whenever it is added.
|
|
* Otherwise, it represents an invalid token.
|
|
*/
|
|
ListenerToken listenerToken;
|
|
|
|
/**
|
|
* Class name to be tracked. If this field is set, then we are tracking by
|
|
* class name.
|
|
*/
|
|
std::string trackClass;
|
|
|
|
/**
|
|
* Reference to be tracked. If this field is set, then we are tracking a
|
|
* single ServiceReference.
|
|
*/
|
|
ServiceReference<S> trackReference;
|
|
|
|
/**
|
|
* Tracked services: <code>ServiceReference</code> -> customized Object and
|
|
* <code>ServiceListenerEntry</code> object
|
|
*/
|
|
Atomic<std::shared_ptr<TrackedService<S, TTT>>> trackedService;
|
|
|
|
/**
|
|
* Accessor method for the current TrackedService object. This method is only
|
|
* intended to be used by the unsynchronized methods which do not modify the
|
|
* trackedService field.
|
|
*
|
|
* @return The current Tracked object.
|
|
*/
|
|
std::shared_ptr<TrackedService<S, TTT>> Tracked() const;
|
|
|
|
/**
|
|
* Called by the TrackedService object whenever the set of tracked services is
|
|
* modified. Clears the cache.
|
|
*/
|
|
/*
|
|
* This method must not be synchronized since it is called by TrackedService while
|
|
* TrackedService is synchronized. We don't want synchronization interactions
|
|
* between the listener thread and the user thread.
|
|
*/
|
|
void Modified();
|
|
|
|
/**
|
|
* Cached ServiceReference for getServiceReference.
|
|
*/
|
|
mutable Atomic<ServiceReference<S>> cachedReference;
|
|
|
|
/**
|
|
* Cached service object for GetService.
|
|
*/
|
|
mutable Atomic<std::shared_ptr<TrackedParmType>> cachedService;
|
|
|
|
private:
|
|
inline ServiceTracker<S, T>* q_func()
|
|
{
|
|
return static_cast<ServiceTracker<S, T>*>(q_ptr);
|
|
}
|
|
|
|
inline const ServiceTracker<S, T>* q_func() const
|
|
{
|
|
return static_cast<const ServiceTracker<S, T>*>(q_ptr);
|
|
}
|
|
|
|
friend class ServiceTracker<S, T>;
|
|
|
|
ServiceTracker<S, T>* const q_ptr;
|
|
};
|
|
|
|
} // namespace detail
|
|
|
|
} // namespace cppmicroservices
|
|
|
|
#include "cppmicroservices/detail/ServiceTrackerPrivate.tpp"
|
|
|
|
#endif // CPPMICROSERVICES_SERVICETRACKERPRIVATE_H
|