llservice.cpp
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:3k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llservice.cpp
  3.  * @author Phoenix
  4.  * @date 2005-04-20
  5.  *
  6.  * $LicenseInfo:firstyear=2005&license=viewergpl$
  7.  * 
  8.  * Copyright (c) 2005-2010, Linden Research, Inc.
  9.  * 
  10.  * Second Life Viewer Source Code
  11.  * The source code in this file ("Source Code") is provided by Linden Lab
  12.  * to you under the terms of the GNU General Public License, version 2.0
  13.  * ("GPL"), unless you have obtained a separate licensing agreement
  14.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  15.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  16.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  17.  * 
  18.  * There are special exceptions to the terms and conditions of the GPL as
  19.  * it is applied to this Source Code. View the full text of the exception
  20.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  21.  * online at
  22.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  23.  * 
  24.  * By copying, modifying or distributing this software, you acknowledge
  25.  * that you have read and understood your obligations described above,
  26.  * and agree to abide by those obligations.
  27.  * 
  28.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  29.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  30.  * COMPLETENESS OR PERFORMANCE.
  31.  * $/LicenseInfo$
  32.  */
  33. #include "linden_common.h"
  34. #include "llservice.h"
  35. LLService::creators_t LLService::sCreatorFunctors;
  36. LLService::LLService()
  37. {
  38. }
  39. LLService::~LLService()
  40. {
  41. }
  42. // static
  43. bool LLService::registerCreator(const std::string& name, creator_t fn)
  44. {
  45. llinfos << "LLService::registerCreator(" << name << ")" << llendl;
  46. if(name.empty())
  47. {
  48. return false;
  49. }
  50. creators_t::value_type vt(name, fn);
  51. std::pair<creators_t::iterator, bool> rv = sCreatorFunctors.insert(vt);
  52. return rv.second;
  53. // alternately...
  54. //std::string name_str(name);
  55. //sCreatorFunctors[name_str] = fn;
  56. }
  57. // static
  58. LLIOPipe* LLService::activate(
  59. const std::string& name,
  60. LLPumpIO::chain_t& chain,
  61. LLSD context)
  62. {
  63. if(name.empty())
  64. {
  65. llinfos << "LLService::activate - no service specified." << llendl;
  66. return NULL;
  67. }
  68. creators_t::iterator it = sCreatorFunctors.find(name);
  69. LLIOPipe* rv = NULL;
  70. if(it != sCreatorFunctors.end())
  71. {
  72. if((*it).second->build(chain, context))
  73. {
  74. rv = chain[0].get();
  75. }
  76. else
  77. {
  78. // empty out the chain, because failed service creation
  79. // should just discard this stuff.
  80. llwarns << "LLService::activate - unable to build chain: " << name
  81. << llendl;
  82. chain.clear();
  83. }
  84. }
  85. else
  86. {
  87. llwarns << "LLService::activate - unable find factory: " << name
  88. << llendl;
  89. }
  90. return rv;
  91. }
  92. // static
  93. bool LLService::discard(const std::string& name)
  94. {
  95. if(name.empty())
  96. {
  97. return false;
  98. }
  99. creators_t::iterator it = sCreatorFunctors.find(name);
  100. if(it != sCreatorFunctors.end())
  101. {
  102. //(*it).second->discard();
  103. sCreatorFunctors.erase(it);
  104. return true;
  105. }
  106. return false;
  107. }