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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llsdhttpserver.cpp
  3.  * @brief Standard LLSD services
  4.  *
  5.  * $LicenseInfo:firstyear=2006&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2006-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #include "linden_common.h"
  33. #include "llsdhttpserver.h"
  34. #include "llhttpnode.h"
  35. /** 
  36.  * This module implements common services that should be included
  37.  * in all server URL trees.  These services facilitate debugging and
  38.  * introsepction.
  39.  */
  40. void LLHTTPStandardServices::useServices()
  41. {
  42. /*
  43. Having this function body here, causes the classes and globals in this
  44. file to be linked into any program that uses the llmessage library.
  45. */
  46. }
  47. class LLHTTPHelloService : public LLHTTPNode
  48. {
  49. public:
  50. virtual void describe(Description& desc) const
  51. {
  52. desc.shortInfo("says hello");
  53. desc.getAPI();
  54. desc.output(""hello"");
  55. desc.source(__FILE__, __LINE__);
  56. }
  57.     
  58. virtual LLSD simpleGet() const
  59. {
  60. LLSD result = "hello";
  61. return result;
  62. }
  63. };
  64. LLHTTPRegistration<LLHTTPHelloService>
  65. gHTTPRegistrationWebHello("/web/hello");
  66. class LLHTTPEchoService : public LLHTTPNode
  67. {
  68. public:
  69. virtual void describe(Description& desc) const
  70. {
  71. desc.shortInfo("echo input");
  72. desc.postAPI();
  73. desc.input("<any>");
  74. desc.output("<the input>");
  75. desc.source(__FILE__, __LINE__);
  76. }
  77. virtual LLSD simplePost(const LLSD& params) const
  78. {
  79. return params;
  80. }
  81. };
  82. LLHTTPRegistration<LLHTTPEchoService>
  83. gHTTPRegistrationWebEcho("/web/echo");
  84. class LLAPIService : public LLHTTPNode
  85. {
  86. public:
  87. virtual void describe(Description& desc) const
  88. {
  89. desc.shortInfo("information about the URLs this server supports");
  90. desc.getAPI();
  91. desc.output("a list of URLs supported");
  92. desc.source(__FILE__, __LINE__);
  93. }
  94. virtual bool handles(const LLSD& remainder, LLSD& context) const
  95. {
  96. return followRemainder(remainder) != NULL;
  97. }
  98.     virtual void get(ResponsePtr response, const LLSD& context) const
  99. {
  100. const LLSD& remainder = context["request"]["remainder"];
  101. if (remainder.size() > 0)
  102. {
  103. const LLHTTPNode* node = followRemainder(remainder);
  104. if (!node)
  105. {
  106. response->notFound();
  107. return;
  108. }
  109. Description desc;
  110. node->describe(desc);
  111. response->result(desc.getInfo());
  112. return;
  113. }
  114. response->result(rootNode()->allNodePaths());
  115. }
  116. private:
  117. const LLHTTPNode* followRemainder(const LLSD& remainder) const
  118. {
  119. const LLHTTPNode* node = rootNode();
  120. LLSD::array_const_iterator i = remainder.beginArray();
  121. LLSD::array_const_iterator end = remainder.endArray();
  122. for (; node  &&  i != end; ++i)
  123. {
  124. node = node->findNode(*i);
  125. }
  126. return node;
  127. }
  128. };
  129. LLHTTPRegistration<LLAPIService>
  130. gHTTPRegistrationWebServerApi("/web/server/api");