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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llurl.cpp
  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. #include "llviewerprecompiledheaders.h"
  33. #include "llurl.h"
  34. #include "llerror.h"
  35. LLURL::LLURL()
  36. {
  37. init("");
  38. }
  39. LLURL::LLURL(const LLURL &url)
  40. {
  41. if (this != &url)
  42. {
  43. init(url.getFQURL());
  44. }
  45. else
  46. {
  47. init("");
  48. }
  49. }
  50. LLURL::LLURL(const char * url)
  51. {
  52. init(url);
  53. }
  54. LLURL::~LLURL()
  55. {
  56. cleanup();
  57. }
  58. void LLURL::init(const char * url)
  59. {
  60. mURI[0] = '';
  61. mAuthority[0] = '';
  62. mPath[0] = '';
  63. mFilename[0] = '';
  64. mExtension[0] = '';
  65. mTag[0] = '';
  66. char url_copy[MAX_STRING]; /* Flawfinder: ignore */
  67. strncpy (url_copy,url, MAX_STRING -1); /* Flawfinder: ignore */
  68. url_copy[MAX_STRING -1] = '';
  69. char *parse;
  70. char *leftover_url = url_copy;
  71. S32 span = 0;
  72. // copy and lop off tag
  73. if ((parse = strchr(url_copy,'#')))
  74. {
  75. strncpy(mTag,parse+1, LL_MAX_PATH -1); /* Flawfinder: ignore */
  76. mTag[LL_MAX_PATH -1] = '';
  77. *parse = '';
  78. }
  79. // copy out URI if it exists, update leftover_url 
  80. if ((parse = strchr(url_copy,':')))
  81. {
  82. *parse = '';
  83. strncpy(mURI,leftover_url, LL_MAX_PATH -1); /* Flawfinder: ignore */
  84. mURI[LL_MAX_PATH -1] = '';
  85. leftover_url = parse + 1;
  86. }
  87. // copy out authority if it exists, update leftover_url
  88. if ((leftover_url[0] == '/') && (leftover_url[1] == '/'))
  89. {
  90. leftover_url += 2; // skip the "//"
  91. span = strcspn(leftover_url, "/"); 
  92. strncat(mAuthority,leftover_url,span); /* Flawfinder: ignore */
  93. leftover_url += span;
  94. }
  95. if ((parse = strrchr(leftover_url,'.')))
  96. {
  97. // copy and lop off extension
  98. strncpy(mExtension,parse+1, LL_MAX_PATH -1); /* Flawfinder: ignore */
  99. mExtension[LL_MAX_PATH -1] = '';
  100. *parse = '';
  101. }
  102. if ((parse = strrchr(leftover_url,'/')))
  103. {
  104. parse++;
  105. }
  106. else
  107. {
  108. parse = leftover_url;
  109. }
  110. // copy and lop off filename
  111. strncpy(mFilename,parse, LL_MAX_PATH -1);/* Flawfinder: ignore */
  112. mFilename[LL_MAX_PATH -1] = '';
  113. *parse = '';
  114. // what's left should be the path
  115. strncpy(mPath,leftover_url, LL_MAX_PATH -1); /* Flawfinder: ignore */
  116. mPath[LL_MAX_PATH -1] = '';
  117. // llinfos << url << "  decomposed into: " << llendl;
  118. // llinfos << "  URI : <" << mURI << ">" << llendl;
  119. // llinfos << "  Auth: <" << mAuthority << ">" << llendl;
  120. // llinfos << "  Path: <" << mPath << ">" << llendl;
  121. // llinfos << "  File: <" << mFilename << ">" << llendl;
  122. // llinfos << "  Ext : <" << mExtension << ">" << llendl;
  123. // llinfos << "  Tag : <" << mTag << ">" << llendl;
  124. }
  125. void LLURL::cleanup()
  126. {
  127. }
  128. // Copy assignment
  129. LLURL &LLURL::operator=(const LLURL &rhs)
  130. {
  131. if (this != &rhs)
  132. {
  133. this->init(rhs.getFQURL());
  134. }
  135. return *this;
  136. }
  137. // Compare
  138. bool LLURL::operator==(const LLURL &rhs) const
  139. {
  140. if ((strcmp(mURI, rhs.mURI))
  141. || (strcmp(mAuthority, rhs.mAuthority))
  142. || (strcmp(mPath, rhs.mPath))
  143. || (strcmp(mFilename, rhs.mFilename))
  144. || (strcmp(mExtension, rhs.mExtension))
  145. || (strcmp(mTag, rhs.mTag))
  146. )
  147. {
  148. return FALSE;
  149. }
  150. return TRUE;
  151. }
  152. bool LLURL::operator!=(const LLURL& rhs) const
  153. {
  154. return !(*this == rhs);
  155. }
  156. const char * LLURL::getFQURL() const
  157. {
  158. char        fqurl[LL_MAX_PATH]; /* Flawfinder: ignore */
  159. fqurl[0] = '';
  160. if (mURI[0])
  161. {
  162. strncat(fqurl,mURI, LL_MAX_PATH - strlen(fqurl) -1); /* Flawfinder: ignore */
  163. strcat(fqurl,":"); /* Flawfinder: ignore */
  164. if (mAuthority[0])
  165. {
  166. strcat(fqurl,"//"); /* Flawfinder: ignore */
  167. }
  168. }
  169. if (mAuthority[0])
  170. {
  171. strncat(fqurl,mAuthority, LL_MAX_PATH - strlen(fqurl) -1); /* Flawfinder: ignore */
  172. }
  173. strncat(fqurl,mPath, LL_MAX_PATH - strlen(fqurl) -1); /* Flawfinder: ignore */
  174. strncat(fqurl,mFilename, LL_MAX_PATH - strlen(fqurl) -1); /* Flawfinder: ignore */
  175. if (mExtension[0])
  176. {
  177. strcat(fqurl,"."); /* Flawfinder: ignore */
  178. strncat(fqurl,mExtension, LL_MAX_PATH - strlen(fqurl) -1); /* Flawfinder: ignore */
  179. }
  180. if (mTag[0])
  181. {
  182. strcat(fqurl,"#"); /* Flawfinder: ignore */
  183. strncat(fqurl,mTag, LL_MAX_PATH - strlen(fqurl) -1); /* Flawfinder: ignore */
  184. }
  185. strncpy(LLURL::sReturnString,fqurl, LL_MAX_PATH -1); /* Flawfinder: ignore */
  186. LLURL::sReturnString[LL_MAX_PATH -1] = '';
  187. return(LLURL::sReturnString);
  188. }
  189. const char* LLURL::updateRelativePath(const LLURL &url)
  190. {
  191. char new_path[LL_MAX_PATH]; /* Flawfinder: ignore */
  192. char tmp_path[LL_MAX_PATH]; /* Flawfinder: ignore */
  193. char *parse;
  194. if (mPath[0] != '/')
  195. {
  196. //start with existing path
  197. strncpy (new_path,url.mPath, LL_MAX_PATH -1); /* Flawfinder: ignore */
  198. new_path[LL_MAX_PATH -1] = '';
  199. strncpy (tmp_path,mPath, LL_MAX_PATH -1); /* Flawfinder: ignore */
  200. tmp_path[LL_MAX_PATH -1] = '';
  201. parse = strtok(tmp_path,"/");
  202. while (parse)
  203. {
  204. if (!strcmp(parse,"."))
  205. {
  206. // skip this, it's meaningless
  207. }
  208. else if (!strcmp(parse,".."))
  209. {
  210. if ((parse = strrchr(new_path, '/')))
  211. {
  212. *parse = '';
  213. if ((parse = strrchr(new_path, '/')))
  214. {
  215. *(parse+1) = '';
  216. }
  217. else
  218. {
  219. new_path[0] = '';
  220. }
  221. }
  222. else
  223. {
  224. strcat(new_path,"../"); /* Flawfinder: ignore */
  225. }
  226. }
  227. else 
  228. {
  229. strncat(new_path,parse, LL_MAX_PATH - strlen(new_path) -1 ); /* Flawfinder: ignore */
  230. strcat(new_path,"/"); /* Flawfinder: ignore */
  231. }
  232. parse = strtok(NULL,"/");
  233. }
  234. strncpy(mPath,new_path, LL_MAX_PATH -1); /* Flawfinder: ignore */
  235. mPath[LL_MAX_PATH -1] = '';
  236. }
  237. return mPath;
  238. }
  239. const char * LLURL::getFullPath()
  240. {
  241. strncpy(LLURL::sReturnString,mPath, LL_MAX_PATH -1); /* Flawfinder: ignore */
  242. LLURL::sReturnString[LL_MAX_PATH -1] = '';
  243. strncat(LLURL::sReturnString,mFilename, LL_MAX_PATH - strlen(LLURL::sReturnString) -1); /* Flawfinder: ignore */
  244. strcat(LLURL::sReturnString,"."); /* Flawfinder: ignore */
  245. strncat(LLURL::sReturnString,mExtension, LL_MAX_PATH - strlen(LLURL::sReturnString) -1); /* Flawfinder: ignore */
  246. return(sReturnString);
  247. }
  248. char LLURL::sReturnString[LL_MAX_PATH] = "";