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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llurl.h
  3.  * @brief Text url class
  4.  *
  5.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2001-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_LLURL_H
  33. #define LL_LLURL_H
  34. // splits a URL into its parts, which are:
  35. //
  36. //  [URI][AUTHORITY][PATH][FILENAME][EXTENSION][TAG]
  37. //
  38. //  e.g. http://www.lindenlab.com/early/bite_me.html#where
  39. //
  40. //  URI=       "http"
  41. //  AUTHORITY= "www.lindenlab.com"
  42. //  PATH=      "/early/"
  43. //  FILENAME=  "bite_me"
  44. //  EXTENSION= "html"
  45. //  TAG=       "where"
  46. //
  47. //
  48. // test cases:
  49. //
  50. // http://www.lindenlab.com/early/bite_me.html#where
  51. // http://www.lindenlab.com/
  52. // http://www.lindenlab.com
  53. // www.lindenlab.com             ?
  54. // early/bite_me.html#where
  55. // mailto://test@lindenlab.com
  56. // mailto:test@lindenlab.com
  57. //
  58. //
  59. class LLURL
  60. {
  61. public:
  62. LLURL();
  63. LLURL(const LLURL &url);
  64. LLURL(const char * url);
  65. LLURL &operator=(const LLURL &rhs);
  66. virtual ~LLURL();
  67. virtual void init (const char * url);
  68. virtual void cleanup ();
  69. bool operator==(const LLURL &rhs) const;
  70. bool operator!=(const LLURL &rhs) const;
  71. virtual const char *getFQURL() const;
  72. virtual const char *getFullPath();
  73. virtual const char *updateRelativePath(const LLURL &url);
  74. virtual BOOL  isExtension(const char *compare) {return (!strcmp(mExtension,compare));};
  75. public:
  76. char        mURI[LL_MAX_PATH]; /* Flawfinder: ignore */
  77. char        mAuthority[LL_MAX_PATH]; /* Flawfinder: ignore */
  78. char        mPath[LL_MAX_PATH]; /* Flawfinder: ignore */
  79. char        mFilename[LL_MAX_PATH]; /* Flawfinder: ignore */
  80. char        mExtension[LL_MAX_PATH]; /* Flawfinder: ignore */
  81. char        mTag[LL_MAX_PATH]; /* Flawfinder: ignore */
  82. static char sReturnString[LL_MAX_PATH]; /* Flawfinder: ignore */
  83. };
  84. #endif  // LL_LLURL_H