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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llfile.h
  3.  * @author Michael Schlachter
  4.  * @date 2006-03-23
  5.  * @brief Declaration of cross-platform POSIX file buffer and c++
  6.  * stream classes.
  7.  *
  8.  * $LicenseInfo:firstyear=2006&license=viewergpl$
  9.  * 
  10.  * Copyright (c) 2006-2010, Linden Research, Inc.
  11.  * 
  12.  * Second Life Viewer Source Code
  13.  * The source code in this file ("Source Code") is provided by Linden Lab
  14.  * to you under the terms of the GNU General Public License, version 2.0
  15.  * ("GPL"), unless you have obtained a separate licensing agreement
  16.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  17.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  18.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  19.  * 
  20.  * There are special exceptions to the terms and conditions of the GPL as
  21.  * it is applied to this Source Code. View the full text of the exception
  22.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  23.  * online at
  24.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  25.  * 
  26.  * By copying, modifying or distributing this software, you acknowledge
  27.  * that you have read and understood your obligations described above,
  28.  * and agree to abide by those obligations.
  29.  * 
  30.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  31.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  32.  * COMPLETENESS OR PERFORMANCE.
  33.  * $/LicenseInfo$
  34.  */
  35. #ifndef LL_LLFILE_H
  36. #define LL_LLFILE_H
  37. /**
  38.  * This class provides a cross platform interface to the filesystem.
  39.  * Attempts to mostly mirror the POSIX style IO functions.
  40.  */
  41. typedef FILE LLFILE;
  42. #include <fstream>
  43. #ifdef LL_WINDOWS
  44. #define USE_LLFILESTREAMS 1
  45. #else
  46. #define USE_LLFILESTREAMS 0
  47. #endif
  48. #include <sys/stat.h>
  49. #if LL_WINDOWS
  50. // windows version of stat function and stat data structure are called _stat
  51. typedef struct _stat llstat;
  52. #else
  53. typedef struct stat llstat;
  54. #endif
  55. #ifndef S_ISREG
  56. # define S_ISREG(x) (((x) & S_IFMT) == S_IFREG)
  57. #endif
  58. #ifndef S_ISDIR
  59. # define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
  60. #endif
  61. #include "llstring.h" // safe char* -> std::string conversion
  62. class LL_COMMON_API LLFile
  63. {
  64. public:
  65. // All these functions take UTF8 path/filenames.
  66. static LLFILE* fopen(const std::string& filename,const char* accessmode); /* Flawfinder: ignore */
  67. static LLFILE* _fsopen(const std::string& filename,const char* accessmode,int sharingFlag);
  68. // perms is a permissions mask like 0777 or 0700.  In most cases it will
  69. // be overridden by the user's umask.  It is ignored on Windows.
  70. static int mkdir(const std::string& filename, int perms = 0700);
  71. static int rmdir(const std::string& filename);
  72. static int remove(const std::string& filename);
  73. static int rename(const std::string& filename,const std::string& newname);
  74. static int stat(const std::string& filename,llstat* file_status);
  75. static bool isdir(const std::string& filename);
  76. static bool isfile(const std::string& filename);
  77. static LLFILE * _Fiopen(const std::string& filename, std::ios::openmode mode,int); // protection currently unused
  78. static  const char * tmpdir();
  79. };
  80. #if USE_LLFILESTREAMS
  81. class LL_COMMON_API llifstream : public std::basic_istream < char , std::char_traits < char > >
  82. {
  83. // input stream associated with a C stream
  84. public:
  85. typedef std::basic_ifstream<char,std::char_traits < char > > _Myt;
  86. typedef std::basic_filebuf<char,std::char_traits< char > > _Myfb;
  87. typedef std::basic_ios<char,std::char_traits< char > > _Myios;
  88. llifstream()
  89. : std::basic_istream<char,std::char_traits< char > >(NULL,true),_Filebuffer(NULL),_ShouldClose(false)
  90. { // construct unopened
  91. }
  92. explicit llifstream(const std::string& _Filename,
  93. ios_base::openmode _Mode = ios_base::in,
  94. int _Prot = (int)ios_base::_Openprot);
  95. explicit llifstream(_Filet *_File)
  96. : std::basic_istream<char,std::char_traits< char > >(NULL,true),
  97. _Filebuffer(new _Myfb(_File)),
  98. _ShouldClose(false)
  99. { // construct with specified C stream
  100. }
  101. virtual ~llifstream();
  102. _Myfb *rdbuf() const
  103. { // return pointer to file buffer
  104. return _Filebuffer;
  105. }
  106. bool is_open() const;
  107. void open(const std::string& _Filename, /* Flawfinder: ignore */
  108. ios_base::openmode _Mode = ios_base::in,
  109. int _Prot = (int)ios_base::_Openprot);
  110. void close();
  111. private:
  112. _Myfb* _Filebuffer; // the file buffer
  113. bool _ShouldClose;
  114. };
  115. class LL_COMMON_API llofstream : public std::basic_ostream< char , std::char_traits < char > >
  116. {
  117. public:
  118. typedef std::basic_ostream< char , std::char_traits < char > > _Myt;
  119. typedef std::basic_filebuf< char , std::char_traits < char > > _Myfb;
  120. typedef std::basic_ios<char,std::char_traits < char > > _Myios;
  121. llofstream()
  122. : std::basic_ostream<char,std::char_traits < char > >(NULL,true),_Filebuffer(NULL),_ShouldClose(false)
  123. { // construct unopened
  124. }
  125. explicit llofstream(const std::string& _Filename,
  126. std::ios_base::openmode _Mode = ios_base::out,
  127. int _Prot = (int)std::ios_base::_Openprot);
  128. explicit llofstream(_Filet *_File)
  129. : std::basic_ostream<char,std::char_traits < char > >(NULL,true),
  130. _Filebuffer(new _Myfb(_File)),//_File)
  131. _ShouldClose(false)
  132. { // construct with specified C stream
  133. }
  134. virtual ~llofstream();
  135. _Myfb *rdbuf() const
  136. { // return pointer to file buffer
  137. return _Filebuffer;
  138. }
  139. bool is_open() const;
  140. void open(const std::string& _Filename,ios_base::openmode _Mode = ios_base::out,int _Prot = (int)ios_base::_Openprot); /* Flawfinder: ignore */
  141. void close();
  142. private:
  143. _Myfb *_Filebuffer; // the file buffer
  144. bool _ShouldClose;
  145. };
  146. #else
  147. //Use standard file streams on non windows platforms
  148. //#define llifstream std::ifstream
  149. //#define llofstream std::ofstream
  150. class LL_COMMON_API llifstream : public std::ifstream
  151. {
  152. public:
  153. llifstream() : std::ifstream()
  154. {
  155. }
  156. explicit llifstream(const std::string& _Filename, std::_Ios_Openmode _Mode = in)
  157. : std::ifstream(_Filename.c_str(), _Mode)
  158. {
  159. }
  160. void open(const std::string& _Filename, std::_Ios_Openmode _Mode = in) /* Flawfinder: ignore */
  161. {
  162. std::ifstream::open(_Filename.c_str(), _Mode);
  163. }
  164. };
  165. class LL_COMMON_API llofstream : public std::ofstream
  166. {
  167. public:
  168. llofstream() : std::ofstream()
  169. {
  170. }
  171. explicit llofstream(const std::string& _Filename, std::_Ios_Openmode _Mode = out)
  172. : std::ofstream(_Filename.c_str(), _Mode)
  173. {
  174. }
  175. void open(const std::string& _Filename, std::_Ios_Openmode _Mode = out) /* Flawfinder: ignore */
  176. {
  177. std::ofstream::open(_Filename.c_str(), _Mode);
  178. }
  179. };
  180. #endif
  181. /**
  182.  * @breif filesize helpers.
  183.  *
  184.  * The file size helpers are not considered particularly efficient,
  185.  * and should only be used for config files and the like -- not in a
  186.  * loop.
  187.  */
  188. std::streamsize LL_COMMON_API llifstream_size(llifstream& fstr);
  189. std::streamsize LL_COMMON_API llofstream_size(llofstream& fstr);
  190. #endif // not LL_LLFILE_H