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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file lscript_error.cpp
  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. #include "linden_common.h"
  33. #include "lscript_error.h"
  34. S32 gColumn = 0;
  35. S32 gLine = 0;
  36. S32 gInternalColumn = 0;
  37. S32 gInternalLine = 0;
  38. LLScriptGenerateErrorText gErrorToText;
  39. void LLScriptFilePosition::fdotabs(LLFILE *fp, S32 tabs, S32 tabsize)
  40. {
  41. S32 i;
  42. for (i = 0; i < tabs * tabsize; i++)
  43. {
  44. fprintf(fp, " ");
  45. }
  46. }
  47. const char* gWarningText[LSWARN_EOF] =    /*Flawfinder: ignore*/
  48. {
  49. "INVALID",
  50. "Dead code found beyond return statement"
  51. };
  52. const char* gErrorText[LSERROR_EOF] =  /*Flawfinder: ignore*/
  53. {
  54. "INVALID",
  55. "Syntax error",
  56. "Not all code paths return a value",
  57. "Function returns a value but return statement doesn't",
  58. "Return statement type doesn't match function return type",
  59. "Global functions can't change state",
  60. "Name previously declared within scope",
  61. "Name not defined within scope",
  62. "Type mismatch",
  63. "Expression must act on LValue",
  64. "Byte code assembly failed -- out of memory",
  65. "Function call mismatches type or number of arguments",
  66. "Use of vector or quaternion method on incorrect type",
  67. "Lists can't be included in lists",
  68. "Unitialized variables can't be included in lists",
  69. "Declaration requires a new scope -- use { and }",
  70. "CIL assembler failed",
  71. "Bytecode transformer failed",
  72. "Bytecode verification failed"
  73. };
  74. void LLScriptGenerateErrorText::writeWarning(LLFILE *fp, LLScriptFilePosition *pos, LSCRIPTWarnings warning)
  75. {
  76. fprintf(fp, "(%d, %d) : WARNING : %sn", pos->mLineNumber, pos->mColumnNumber, gWarningText[warning]);
  77. mTotalWarnings++;
  78. }
  79. void LLScriptGenerateErrorText::writeWarning(LLFILE *fp, S32 line, S32 col, LSCRIPTWarnings warning)
  80. {
  81. fprintf(fp, "(%d, %d) : WARNING : %sn", line, col, gWarningText[warning]);
  82. mTotalWarnings++;
  83. }
  84. void LLScriptGenerateErrorText::writeError(LLFILE *fp, LLScriptFilePosition *pos, LSCRIPTErrors error)
  85. {
  86. fprintf(fp, "(%d, %d) : ERROR : %sn", pos->mLineNumber, pos->mColumnNumber, gErrorText[error]);
  87. mTotalErrors++;
  88. }
  89. void LLScriptGenerateErrorText::writeError(LLFILE *fp, S32 line, S32 col, LSCRIPTErrors error)
  90. {
  91. fprintf(fp, "(%d, %d) : ERROR : %sn", line, col, gErrorText[error]);
  92. mTotalErrors++;
  93. }
  94. std::string getLScriptErrorString(LSCRIPTErrors error)
  95. {
  96. return gErrorText[error];
  97. }