Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/terrain/src/lib/util/filesys/file.cc @ 9414

Last change on this file since 9414 was 9414, checked in by bensch, 18 years ago

merged back here the terrain.old

File size: 7.5 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11### File Specific:
12   main-programmer: Benjamin Grauer
13   co-programmer: ...
14*/
15
16#include "file.h"
17
18#include <sys/types.h>
19#include <sys/stat.h>
20#include <stdio.h>
21
22#include <iostream>
23#include <fstream>
24
25#ifdef __unix__
26#include <unistd.h>
27#elif __WIN32__ || _MS_DOS_
28#include <dir.h>
29#else
30//#include <direct.h>
31#endif
32
33/**
34 * @brief default constructor.
35 */
36File::File()
37{
38  this->init();
39}
40
41/**
42 * @brief A File will be constructed and stated from a given FileName.
43 * @param fileName the FileName to load and stat.
44 */
45File::File(const std::string& fileName)
46{
47  this->init();
48  this->setFileName(fileName);
49}
50
51/**
52 * @brief A File will be constructed and stated from a given other File.
53 * @param file the File to get the Name from.
54 */
55File::File(const File& file)
56{
57  this->init();
58  this->setFileName(file.name());
59}
60
61File::~File()
62{
63  this->close();
64
65  if (this->_status)
66    delete this->_status;
67}
68
69
70/**
71 * @brief initializes the File
72 *
73 * Stats the File, looks if it exists and sets the hadle to 0
74 */
75void File::init()
76{
77  this->_handle = 0;
78  this->_status = NULL;
79}
80
81
82/**
83 * @brief sets a new File to apply to this File.
84 * @param fileName the Filename of the File to access.
85 */
86void File::setFileName(const std::string& fileName)
87{
88  this->close();
89  this->_name = fileName;
90  File::homeDirCheck(this->_name);
91  this->statFile();
92}
93
94/**
95 * @brief sets the file to the new File.
96 * @param fileName the FileName to set the File to.
97 * @returns this File.
98 */
99File& File::operator=(const std::string& fileName)
100{
101  this->setFileName(fileName);
102  return *this;
103}
104
105/**
106 * @brief sets the file to the new File.
107 * @param file the File to set the File to.
108 * @returns this File.
109 */
110File& File::operator=(const File& file)
111{
112  this->setFileName(file.name());
113  return *this;
114}
115
116/**
117 * @brief compares two files.
118 * @param fileName the File to compare against the stored one.
119 * @returns true if the filenames match.
120 */
121bool File::operator==(const std::string& fileName) const
122{
123  return (this->_name == fileName);
124}
125
126/**
127 * @brief compares two files.
128 * @param file the File to compare against the stored one.
129 * @returns true if the filenames match.
130 */
131bool File::operator==(const File& file) const
132{
133  return (this->_name == file.name());
134}
135
136
137/**
138 * @brief stats a File.
139 * Gathers information about the File, like permissions, and if it exists.
140 */
141void File::statFile()
142{
143  if (this->_status == NULL)
144    this->_status = new struct stat;
145  // Check the End of the FileName and chop away any \ and //
146  std::string name = this->_name;
147  while (name[name.size()-1] == '/' ||
148         name[name.size()-1] == '\\')
149    name.resize(name.size()-1);
150  if (stat(name.c_str(), this->_status))
151  {
152    delete this->_status;
153    this->_status = NULL;
154  }
155}
156
157bool File::open( OpenMode mode )
158{
159   static const char* openModeStrings[] = {
160                        "r", "w", "r+", "a+" }; 
161        _mode = mode;
162        _handle = fopen( name().c_str(), openModeStrings[mode] );
163        return ( _handle != NULL );
164}
165
166bool File::close()
167{
168        if ( _handle != NULL ) {
169                int success = fclose( _handle );
170                _handle = NULL;         
171                return ( success == 0 );
172        }
173        return false;
174}
175
176bool File::exists() const
177{
178  return (this->_status != NULL);
179}
180
181/**
182 * @brief checks if the file is a Link (symlink/hardlink on UNIX)
183 * @returns true if the File is a Link, false otherwise (on windows always false)
184 */
185bool File::isLink() const
186{
187#ifndef __WIN32__
188  return (this->_status != NULL && this->_status->st_mode & (S_IFLNK));
189#else
190  return false;
191#endif
192}
193
194/**
195 * @brief checks if the File is a regular File
196 * @returns true if the File is a Regular file.
197 */
198bool File::isFile() const
199{
200  return (this->_status != NULL && this->_status->st_mode & (S_IFREG));
201}
202
203/**
204 * @brief Checks if the File is a Directory
205 * @returns true if it is a directory/symlink false otherwise
206 */
207bool File::isDirectory() const
208{
209  return (this->_status != NULL && this->_status->st_mode & (S_IFDIR));
210}
211
212
213/// FIXME NEXT THREE FUNCTIONS
214bool File::isReadable() const
215{
216#ifndef __WIN32__
217  return (this->_status != NULL && this->_status->st_mode & (S_IRUSR));
218#else
219  return (this->_status != NULL);
220#endif
221}
222bool File::isWriteable() const
223{
224#ifndef __WIN32__
225  return (this->_status != NULL && this->_status->st_mode & (S_IWUSR));
226#else
227  return (this->_status != NULL);
228#endif
229}
230bool File::isExecutable() const
231{
232#ifndef __WIN32__
233  return (this->_status != NULL && this->_status->st_mode & (S_IXUSR));
234#else
235  return (this->_status != NULL);
236#endif
237}
238
239/**
240 * @brief copies the File to another File.
241 * @param destination the Destination File.
242 * @returns true on success, false otherwise.
243 */
244bool File::copy(const File& destination)
245{
246  if (*this == destination)
247  {
248    std::cout << "files are the Same '" << this->_name << "'\n";
249    return false;
250  }
251  char ch;
252  std::ifstream iFile(this->_name.c_str());
253  std::ofstream oFile(destination.name().c_str());
254  while (iFile.get(ch))
255  {
256    oFile.put(ch);
257  }
258  return true;
259}
260
261/**
262 * @brief renames the File (move)
263 * @param destination the Destination to move this file to.
264 * @returns true on success, false otherwise.
265 *
266 * if the File was opened, it will be closed throuh this function.
267 * The File will also be closed, if the File was not renamed.
268 */
269bool File::rename(const File& destination)
270{
271  this->close();
272
273  if (!std::rename(this->_name.c_str(), destination.name().c_str()))
274  {
275    this->_name = destination.name();
276    this->statFile();
277    return true;
278  }
279  return false;
280}
281
282/**
283 * @brief touches the File.
284 * @returns true if the file could have been touched. false otherwise.
285 *
286 * Touching a File means creating it.
287 */
288bool File::touch()
289{
290  FILE* stream;
291  if( (stream = fopen (this->_name.c_str(), "w")) == NULL)
292  {
293    std::cout << "could not touch '" << this->_name << "' for writing\n";
294    return false;
295  }
296  fclose(stream);
297
298  this->statFile();
299  return true;
300}
301
302/**
303 * @brief delete the File on the Disk
304 * @returns true on success, false otherwise.
305 */
306bool File::remove()
307{
308  if (!this->exists())
309    return false;
310
311  this->close();
312  unlink(this->_name.c_str());
313  delete this->_status;
314  this->_status = NULL;
315
316  return true;
317}
318
319/**
320 * @brief transforms a Relative path to an absolute one.
321 * @param fileName the Absolute Path.
322 */
323void File::relToAbs(std::string& relFileName)
324{
325  if (relFileName.empty())
326    return ;
327  if (relFileName[0] !=  '/')
328  {
329    if (relFileName[0] == '.' && relFileName[1] != '.')
330      relFileName.erase(0);
331    relFileName = File::cwd() + relFileName;
332  }
333}
334
335void File::absToRel(std::string& absFileName)
336{
337  if (absFileName.find(cwd()) == 0)
338    absFileName.replace(0, File::cwd().size(), ".");
339}
340
341
342std::string File::_cwd = "";
343
344/**
345 * @returns the Current Woring Directory
346 */
347const std::string& File::cwd()
348{
349  if (File::_cwd.empty())
350  {
351    char cwd[1024];
352    char* errorCode = getcwd(cwd, 1024);
353    if (errorCode == 0)
354      return File::_cwd;
355
356    File::_cwd = cwd;
357  }
358  return File::_cwd;
359}
360
361/**
362 * @brief check if fileName has the '~/` prepended.
363 * @returns the fileName in absolute coordinate.
364 */
365void File::homeDirCheck(std::string& fileName)
366{
367  if (fileName.size() < 2 || fileName[0] != '~' || fileName[1] != '/')
368    return;
369  std::string homeDir;
370#ifdef __WIN32__
371  homeDir = getenv("USERPROFILE");
372#else
373  homeDir = getenv("HOME");
374#endif
375  fileName = homeDir + fileName.substr(1);
376}
Note: See TracBrowser for help on using the repository browser.