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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file lscript_error.h
  3.  * @brief error reporting class and strings
  4.  *
  5.  * $LicenseInfo:firstyear=2002&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2002-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 LL_LSCRIPT_ERROR_H
  33. #define LL_LSCRIPT_ERROR_H
  34. #include "lscript_scope.h"
  35. typedef enum e_lscript_compile_pass
  36. {
  37. LSCP_INVALID,
  38. LSCP_PRETTY_PRINT,
  39. LSCP_PRUNE,
  40. LSCP_SCOPE_PASS1,
  41. LSCP_SCOPE_PASS2,
  42. LSCP_TYPE,
  43. LSCP_RESOURCE,
  44. LSCP_EMIT_ASSEMBLY,
  45. LSCP_EMIT_BYTE_CODE,
  46. LSCP_DETERMINE_HANDLERS,
  47. LSCP_LIST_BUILD_SIMPLE,
  48. LSCP_TO_STACK,
  49. LSCP_BUILD_FUNCTION_ARGS,
  50. LSCP_EMIT_CIL_ASSEMBLY,
  51. LSCP_EOF
  52. } LSCRIPTCompilePass;
  53. typedef enum e_lscript_prune_type
  54. {
  55. LSPRUNE_INVALID,
  56. LSPRUNE_GLOBAL_VOIDS,
  57. LSPRUNE_GLOBAL_NON_VOIDS,
  58. LSPRUNE_EVENTS,
  59. LSPRUNE_DEAD_CODE,
  60. LSPRUNE_EOF
  61. } LSCRIPTPruneType;
  62. extern S32 gColumn;
  63. extern S32 gLine;
  64. extern S32 gInternalColumn;
  65. extern S32 gInternalLine;
  66. // used to describe where in the file this piece is
  67. class LLScriptByteCodeChunk;
  68. class LLScriptLibData;
  69. class LLScriptFilePosition
  70. {
  71. public:
  72. LLScriptFilePosition(S32 line, S32 col)
  73. : mLineNumber(line), mColumnNumber(col), mByteOffset(0), mByteSize(0)
  74. {
  75. }
  76. virtual ~LLScriptFilePosition() {}
  77. virtual void recurse(LLFILE *fp, S32 tabs, S32 tabsize, 
  78. LSCRIPTCompilePass pass, LSCRIPTPruneType ptype, BOOL &prunearg, 
  79. LLScriptScope *scope, LSCRIPTType &type, LSCRIPTType basetype, U64 &count, 
  80. LLScriptByteCodeChunk *chunk, LLScriptByteCodeChunk *heap, S32 stacksize, LLScriptScopeEntry *entry, S32 entrycount, LLScriptLibData **ldata) = 0;
  81. virtual S32 getSize() = 0;
  82. void fdotabs(LLFILE *fp, S32 tabs, S32 tabsize);
  83. S32 mLineNumber;
  84. S32 mColumnNumber;
  85. S32 mByteOffset;
  86. S32 mByteSize;
  87. };
  88. typedef enum e_lscript_warnings
  89. {
  90. LSWARN_INVALID,
  91. LSWARN_DEAD_CODE,
  92. LSWARN_EOF
  93. } LSCRIPTWarnings;
  94. typedef enum e_lscript_errors
  95. {
  96. LSERROR_INVALID,
  97. LSERROR_SYNTAX_ERROR,
  98. LSERROR_NO_RETURN,
  99. LSERROR_INVALID_VOID_RETURN,
  100. LSERROR_INVALID_RETURN,
  101. LSERROR_STATE_CHANGE_IN_GLOBAL,
  102. LSERROR_DUPLICATE_NAME,
  103. LSERROR_UNDEFINED_NAME,
  104. LSERROR_TYPE_MISMATCH,
  105. LSERROR_EXPRESSION_ON_LVALUE,
  106. LSERROR_ASSEMBLE_OUT_OF_MEMORY,
  107. LSERROR_FUNCTION_TYPE_ERROR,
  108. LSERROR_VECTOR_METHOD_ERROR,
  109. LSERROR_NO_LISTS_IN_LISTS,
  110. LSERROR_NO_UNITIALIZED_VARIABLES_IN_LISTS,
  111. LSERROR_NEED_NEW_SCOPE,
  112. LSERROR_CIL_ASSEMBLER_FAILED = 16, // Mono build error.
  113. LSERROR_BYTECODE_TRANSFORM_FAILED = 17, // Mono build error.
  114. LSERROR_BYTECODE_VERIFICATION_FAILED, // Mono build error.
  115. LSERROR_EOF
  116. } LSCRIPTErrors;
  117. class LLScriptGenerateErrorText
  118. {
  119. public:
  120. LLScriptGenerateErrorText() { init(); }
  121. ~LLScriptGenerateErrorText() {}
  122. void init() { mTotalErrors = 0; mTotalWarnings = 0; }
  123. void writeWarning(LLFILE *fp, LLScriptFilePosition *pos, LSCRIPTWarnings warning);
  124. void writeWarning(LLFILE *fp, S32 line, S32 col, LSCRIPTWarnings warning);
  125. void writeError(LLFILE *fp, LLScriptFilePosition *pos, LSCRIPTErrors error);
  126. void writeError(LLFILE *fp, S32 line, S32 col, LSCRIPTErrors error);
  127. BOOL getErrors() { return mTotalErrors; }
  128. BOOL getWarnings() { return mTotalWarnings; }
  129. S32 mTotalErrors;
  130. S32 mTotalWarnings;
  131. };
  132. std::string getLScriptErrorString(LSCRIPTErrors error);
  133. extern LLScriptGenerateErrorText gErrorToText;
  134. #endif