server/dep/ACE_wrappers/ace/Service_Gestalt.inl
Neo2003 23c920ca4b [10643] Update the ACE part we use to 5.8.2
Signed-off-by: Neo2003 <Neo.2003@Hotmail.fr>
2010-10-25 20:36:51 +02:00

78 lines
2.4 KiB
C++

// -*- C++ -*-
//
// $Id: Service_Gestalt.inl 91158 2010-07-21 15:54:12Z mesnier_p $
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
// This is the primary entry point into the ACE_Service_Config (the
// constructor just handles simple initializations).
ACE_INLINE int
ACE_Service_Gestalt::open (const ACE_TCHAR program_name[],
const ACE_TCHAR *logger_key,
bool ignore_static_svcs,
bool ignore_default_svc_conf,
bool ignore_debug_flag)
{
ACE_TRACE ("ACE_Service_Gestalt::open");
this->no_static_svcs_ = ignore_static_svcs;
return this->open_i (program_name,
logger_key,
ignore_static_svcs,
ignore_default_svc_conf,
ignore_debug_flag);
}
ACE_INLINE int
ACE_Service_Gestalt::open (int argc,
ACE_TCHAR *argv[],
const ACE_TCHAR *logger_key,
bool ignore_static_svcs,
bool ignore_default_svc_conf,
bool ignore_debug_flag)
{
ACE_TRACE ("ACE_Service_Gestalt::open");
// Parsing argv may change no_static_svcs_ so set the default here, then
// parse, then pass the final value to open_i().
this->no_static_svcs_ = ignore_static_svcs;
if (this->parse_args_i (argc,
argv,
ignore_default_svc_conf) == -1)
return -1;
return this->open_i (argv == 0 ? 0 : argv[0],
logger_key,
this->no_static_svcs_,
ignore_default_svc_conf,
ignore_debug_flag);
}
/// Searches for a service object declaration in the local repo, only
ACE_INLINE int
ACE_Service_Gestalt::find (const ACE_TCHAR name[],
const ACE_Service_Type **srp,
bool ignore_suspended) const
{
// Closing the gestalt will have disassociated it from the
// repository. If the repository used to be owned by the gestalt, it
// will also have been destroyed - so just check for repo_ before
// doing anything with it.
if (this->repo_ != 0)
return this->repo_->find (name, srp, ignore_suspended);
return 0;
}
ACE_INLINE ACE_Service_Repository*
ACE_Service_Gestalt::current_service_repository (void)
{
return this->repo_;
}
ACE_END_VERSIONED_NAMESPACE_DECL