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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llerrorlegacy.h
  3.  * @date   January 2007
  4.  * @brief old things from the older error system
  5.  *
  6.  * $LicenseInfo:firstyear=2007&license=viewergpl$
  7.  * 
  8.  * Copyright (c) 2007-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. #ifndef LL_LLERRORLEGACY_H
  34. #define LL_LLERRORLEGACY_H
  35. #include "llpreprocessor.h"
  36. /*
  37. LEGACY -- DO NOT USE THIS STUFF ANYMORE
  38. */
  39. // Specific error codes
  40. const int LL_ERR_NOERR = 0;
  41. const int LL_ERR_ASSET_REQUEST_FAILED = -1;
  42. //const int LL_ERR_ASSET_REQUEST_INVALID = -2;
  43. const int LL_ERR_ASSET_REQUEST_NONEXISTENT_FILE = -3;
  44. const int LL_ERR_ASSET_REQUEST_NOT_IN_DATABASE = -4;
  45. const int LL_ERR_INSUFFICIENT_PERMISSIONS = -5;
  46. const int LL_ERR_EOF = -39;
  47. const int LL_ERR_CANNOT_OPEN_FILE = -42;
  48. const int LL_ERR_FILE_NOT_FOUND = -43;
  49. const int LL_ERR_FILE_EMPTY     = -44;
  50. const int LL_ERR_TCP_TIMEOUT    = -23016;
  51. const int LL_ERR_CIRCUIT_GONE   = -23017;
  52. const int LL_ERR_PRICE_MISMATCH = -23018;
  53. // Define one of these for different error levels in release...
  54. // #define RELEASE_SHOW_DEBUG // Define this if you want your release builds to show lldebug output.
  55. #define RELEASE_SHOW_INFO // Define this if you want your release builds to show llinfo output
  56. #define RELEASE_SHOW_WARN // Define this if you want your release builds to show llwarn output.
  57. //////////////////////////////////////////
  58. //
  59. //  Implementation - ignore
  60. //
  61. //
  62. #ifdef _DEBUG
  63. #define SHOW_DEBUG
  64. #define SHOW_WARN
  65. #define SHOW_INFO
  66. #define SHOW_ASSERT
  67. #else // _DEBUG
  68. #ifdef LL_RELEASE_WITH_DEBUG_INFO
  69. #define SHOW_ASSERT
  70. #endif // LL_RELEASE_WITH_DEBUG_INFO
  71. #ifdef RELEASE_SHOW_DEBUG
  72. #define SHOW_DEBUG
  73. #endif
  74. #ifdef RELEASE_SHOW_WARN
  75. #define SHOW_WARN
  76. #endif
  77. #ifdef RELEASE_SHOW_INFO
  78. #define SHOW_INFO
  79. #endif
  80. #ifdef RELEASE_SHOW_ASSERT
  81. #define SHOW_ASSERT
  82. #endif
  83. #endif // _DEBUG
  84. #define lldebugst(type) lldebugs
  85. #define llendflush llendl
  86. #define llerror(msg, num) llerrs << "Error # " << num << ": " << msg << llendl;
  87. #define llwarning(msg, num) llwarns << "Warning # " << num << ": " << msg << llendl;
  88. #define llassert_always(func) if (LL_UNLIKELY(!(func))) llerrs << "ASSERT (" << #func << ")" << llendl;
  89. #ifdef SHOW_ASSERT
  90. #define llassert(func) llassert_always(func)
  91. #define llverify(func) llassert_always(func)
  92. #else
  93. #define llassert(func)
  94. #define llverify(func) do {if (func) {}} while(0)
  95. #endif
  96. // handy compile-time assert - enforce those template parameters! 
  97. #define cassert(expn) typedef char __C_ASSERT__[(expn)?1:-1]   /* Flawfinder: ignore */
  98. //XXX: used in two places in llcommon/llskipmap.h
  99. #endif // LL_LLERRORLEGACY_H