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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llxuiparser.h
  3.  * @brief Utility functions for handling XUI structures in XML
  4.  *
  5.  * $LicenseInfo:firstyear=2003&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2003-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. #ifndef LLXUIPARSER_H
  33. #define LLXUIPARSER_H
  34. #include "llinitparam.h"
  35. #include "llfasttimer.h"
  36. #include "llregistry.h"
  37. #include "llpointer.h"
  38. #include <boost/function.hpp>
  39. #include <iosfwd>
  40. #include <stack>
  41. #include <set>
  42. class LLView;
  43. typedef LLPointer<class LLXMLNode> LLXMLNodePtr;
  44. // lookup widget type by name
  45. class LLWidgetTypeRegistry
  46. : public LLRegistrySingleton<std::string, const std::type_info*, LLWidgetTypeRegistry>
  47. {};
  48. // global static instance for registering all widget types
  49. typedef boost::function<LLView* (LLXMLNodePtr node, LLView *parent, LLXMLNodePtr output_node)> LLWidgetCreatorFunc;
  50. typedef LLRegistry<std::string, LLWidgetCreatorFunc> widget_registry_t;
  51. class LLChildRegistryRegistry
  52. : public LLRegistrySingleton<const std::type_info*, widget_registry_t, LLChildRegistryRegistry>
  53. {};
  54. class LLXSDWriter : public LLInitParam::Parser
  55. {
  56. LOG_CLASS(LLXSDWriter);
  57. public:
  58. void writeXSD(const std::string& name, LLXMLNodePtr node, const LLInitParam::BaseBlock& block, const std::string& xml_namespace);
  59. /*virtual*/ std::string getCurrentElementName() { return LLStringUtil::null; }
  60. LLXSDWriter();
  61. protected:
  62. void writeAttribute(const std::string& type, const Parser::name_stack_t&, S32 min_count, S32 max_count, const std::vector<std::string>* possible_values);
  63. void addAttributeToSchema(LLXMLNodePtr nodep, const std::string& attribute_name, const std::string& type, bool mandatory, const std::vector<std::string>* possible_values);
  64. LLXMLNodePtr mAttributeNode;
  65. LLXMLNodePtr mElementNode;
  66. LLXMLNodePtr mSchemaNode;
  67. typedef std::set<std::string> string_set_t;
  68. typedef std::map<LLXMLNodePtr, string_set_t> attributes_map_t;
  69. attributes_map_t mAttributesWritten;
  70. };
  71. // NOTE: DOES NOT WORK YET
  72. // should support child widgets for XUI
  73. class LLXUIXSDWriter : public LLXSDWriter
  74. {
  75. public:
  76. void writeXSD(const std::string& name, const std::string& path, const LLInitParam::BaseBlock& block);
  77. };
  78. class LLXUIParser : public LLInitParam::Parser, public LLSingleton<LLXUIParser>
  79. {
  80. LOG_CLASS(LLXUIParser);
  81. protected:
  82. LLXUIParser();
  83. friend class LLSingleton<LLXUIParser>;
  84. public:
  85. typedef LLInitParam::Parser::name_stack_t name_stack_t;
  86. /*virtual*/ std::string getCurrentElementName();
  87. /*virtual*/ void parserWarning(const std::string& message);
  88. /*virtual*/ void parserError(const std::string& message);
  89. void readXUI(LLXMLNodePtr node, LLInitParam::BaseBlock& block, const std::string& filename = LLStringUtil::null, bool silent=false);
  90. void writeXUI(LLXMLNodePtr node, const LLInitParam::BaseBlock& block, const LLInitParam::BaseBlock* diff_block = NULL);
  91. private:
  92. typedef std::list<std::pair<std::string, bool> > token_list_t;
  93. bool readXUIImpl(LLXMLNodePtr node, const std::string& scope, LLInitParam::BaseBlock& block);
  94. bool readAttributes(LLXMLNodePtr nodep, LLInitParam::BaseBlock& block);
  95. //reader helper functions
  96. bool readBoolValue(void* val_ptr);
  97. bool readStringValue(void* val_ptr);
  98. bool readU8Value(void* val_ptr);
  99. bool readS8Value(void* val_ptr);
  100. bool readU16Value(void* val_ptr);
  101. bool readS16Value(void* val_ptr);
  102. bool readU32Value(void* val_ptr);
  103. bool readS32Value(void* val_ptr);
  104. bool readF32Value(void* val_ptr);
  105. bool readF64Value(void* val_ptr);
  106. bool readColor4Value(void* val_ptr);
  107. bool readUIColorValue(void* val_ptr);
  108. bool readUUIDValue(void* val_ptr);
  109. bool readSDValue(void* val_ptr);
  110. //writer helper functions
  111. bool writeBoolValue(const void* val_ptr, const name_stack_t&);
  112. bool writeStringValue(const void* val_ptr, const name_stack_t&);
  113. bool writeU8Value(const void* val_ptr, const name_stack_t&);
  114. bool writeS8Value(const void* val_ptr, const name_stack_t&);
  115. bool writeU16Value(const void* val_ptr, const name_stack_t&);
  116. bool writeS16Value(const void* val_ptr, const name_stack_t&);
  117. bool writeU32Value(const void* val_ptr, const name_stack_t&);
  118. bool writeS32Value(const void* val_ptr, const name_stack_t&);
  119. bool writeF32Value(const void* val_ptr, const name_stack_t&);
  120. bool writeF64Value(const void* val_ptr, const name_stack_t&);
  121. bool writeColor4Value(const void* val_ptr, const name_stack_t&);
  122. bool writeUIColorValue(const void* val_ptr, const name_stack_t&);
  123. bool writeUUIDValue(const void* val_ptr, const name_stack_t&);
  124. bool writeSDValue(const void* val_ptr, const name_stack_t&);
  125. LLXMLNodePtr getNode(const name_stack_t& stack);
  126. private:
  127. Parser::name_stack_t mNameStack;
  128. LLXMLNodePtr mCurReadNode;
  129. // Root of the widget XML sub-tree, for example, "line_editor"
  130. LLXMLNodePtr mWriteRootNode;
  131. typedef std::map<S32, LLXMLNodePtr> out_nodes_t;
  132. out_nodes_t mOutNodes;
  133. S32 mLastWriteGeneration;
  134. LLXMLNodePtr mLastWrittenChild;
  135. S32 mCurReadDepth;
  136. std::string mCurFileName;
  137. };
  138. #endif //LLXUIPARSER_H