/usr/include/BALL/SYSTEM/file.h is in libball1.4-dev 1.4.1+20111206-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 | // -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//
#ifndef BALL_SYSTEM_FILE_H
#define BALL_SYSTEM_FILE_H
#ifndef BALL_DATATYPE_REGULAREXPRESSION_H
# include <BALL/DATATYPE/regularExpression.h>
#endif
#ifndef BALL_DATATYPE_STRING_H
# include <BALL/DATATYPE/string.h>
#endif
#ifndef BALL_SYSTEM_FILESYSTEM_H
# include <BALL/SYSTEM/fileSystem.h>
#endif
#include <BALL/DATATYPE/hashSet.h>
#include <stdlib.h> // 'getenv'
#include <sys/stat.h> // 'stat', 'lstat'
#include <stdio.h> // 'rename'
#include <algorithm> // 'reverse'
#ifdef BALL_COMPILER_MSVC
#ifndef S_ISREG
# define S_ISREG _S_ISREG
#endif
#ifndef S_ISDIR
# define S_ISDIR _S_ISDIR
#endif
# define S_ISCHR _S_ISCHR
# define S_ISBLK _S_ISBLK
# define S_ISFIFO _S_ISFIFO
# define access _access
#endif
#include <iostream>
#include <fstream>
#include <sys/types.h>
#include <map>
#include <algorithm>
#ifdef BALL_HAS_UNISTD_H
# include <unistd.h> // 'access', 'rename', 'truncate'
#endif
#ifdef BALL_COMPILER_MSVC
# include <fcntl.h>
# include <io.h>
// Define the missing symbols from <unistd.h>,
// which M$, in its infinite wisdom, was unable to provide.
# define F_OK 0
# define W_OK 2
# define R_OK 4
#endif
namespace BALL
{
/** This class handles automatic file transformation methods.
\link File File \endlink provides the ability to transform files on the fly using
predefined transformation commands (e.g. unix-style filters). For example, compressed
files can be automatically decompressed by calling the unic <tt>compress</tt> command.
The respective commands are selected via a suitable regular expression, usually
matching the file suffix. A frequent application for this transformation is the
compressed storage of PDB files in the unix compressed format (<tt>*.Z</tt>).
Transformation manager basically contains a map consisting of two strings.
Using \link findTransformationCommand findTransformationCommand \endlink ,
\link File File \endlink can determine whether there
is a suitable transformation command available for a given file name.
User-defined transformation may be defined at any time using the
\link TransformationManager::registerTransformation registerTransformation \endlink method of the static
instance of \link TransformationManager TransformationManager \endlink
accessible through \link File::getTransformationManager File::getTransformationManager \endlink .
\ingroup System
*/
class BALL_EXPORT TransformationManager
{
public:
/** Constructors and Destructors
*/
//@{
/// Default constructor
TransformationManager();
/// Destructor
~TransformationManager();
//@}
/** Accessors
*/
//@{
/// Add a new transformation
void registerTransformation(const String& pattern, const String& command);
/// Delete a transformation
void unregisterTransformation(const String& pattern);
/// Find a transformation matching a given file name
String findTransformation(const String& name) const;
/** Apply a suitable transformation to the string.
This first calls \link findTransformation findTransformation \endlink to determine the
command string that should be applied. The <tt>name</tt> argument
is then replaced with the contents of the matching command in the
TransformationManager's map. The following rules apply (in that order):
- <tt>%s</tt> is replaced by the full content of <tt>name</tt>
- <tt>%f</tt> is replaced by the full content of <tt>name</tt>,
without any file type suffix (i.e. anything after the last dot in the filename is removed)
- <tt>%f[suffix]</tt> is replaced by the previous content of <tt>name</tt> without the <tt>suffix</tt>
- <tt>%b</tt> and <tt>%b[suffix]</tt> like <tt>%f</tt> and <tt> %f[suffix]</tt>, except that the
path is removed as well, so it is only the <b> base name </b> of the file
- <tt>%p</tt> the path to the file
- <tt>%t</tt> a temporary file name (all occurences of <tt>%t</tt> are replace
with the same file name for the same invocation of \link transform transform \endlink,
but different file names on subsequent invocations)
*/
String transform(const String& name);
//@}
protected:
/// The map containing all transformation methods
std::map<String, String> transformation_methods_;
};
/** File Class.
\ingroup System
*/
class BALL_EXPORT File
: public std::fstream
{
public:
/** Exception CannotWrite
A given file could not be written, either because its not open or it has a wrong open mode.
*/
class BALL_EXPORT CannotWrite
: public Exception::GeneralException
{
public:
CannotWrite(const char* file, int line, const String& filename);
~CannotWrite()
throw();
String getFilename() const;
protected:
std::string filename_;
};
/** @name Type definitions
*/
//@{
/** File open modes.
This type is used to describe the standard openmodes for files
as described in Section 27.4.2.1.4 of the ANSI C++ standard.
*/
typedef std::ios::openmode OpenMode;
//@}
/** @name Constants
*/
//@{
/// Open for input (default)
static const OpenMode MODE_IN;
/// Open for output
static const OpenMode MODE_OUT;
/// Append. Seek to end before each write operation
static const OpenMode MODE_APP;
/// Binary mode
static const OpenMode MODE_BINARY;
/// Seek to end directly after opening.
static const OpenMode MODE_ATE;
/// Truncate an existing file.
static const OpenMode MODE_TRUNC;
//@}
/** @name Enums
*/
//@{
/** Transformation types for file.
This enum defines some possible types for on-the-fly file transformation.
*/
enum Transformation
{
///
TRANSFORMATION__EXEC = 1,
///
TRANSFORMATION__FILTER = 2,
///
TRANSFORMATION__URL = 3
};
/** Filetype
*/
enum Type
{
///
TYPE__UNKNOWN = 0,
///
TYPE__DIRECTORY = 1,
///
TYPE__CHAR_SPECIAL_FILE = 2,
///
TYPE__BLOCK_SPECIAL_FILE = 3,
///
TYPE__REGULAR_FILE = 4,
///
TYPE__SYMBOLIC_LINK = 5,
///
TYPE__SOCKET = 6,
///
TYPE__FIFO_SPECIAL_FILE = 7
};
/// Prefix for filenames that are created through the execution of commands "exec:"
static const String TRANSFORMATION_EXEC_PREFIX;
/// Prefix for files (to mimick URL-like behavior) "file:"
static const String TRANSFORMATION_FILE_PREFIX;
/// Prefix for FTP-transfers "ftp://"
static const String TRANSFORMATION_FTP_PREFIX;
/// Prefix for HTTP-transfer "http://"
static const String TRANSFORMATION_HTTP_PREFIX;
//@}
/** @name Constructors and Destructors
*/
//@{
/** Default constructor.
*/
File();
/** Construct new File object from the file <b> name </b> and open the file.
@param name the name of the file to be opened
@param open_mode the openmode to be used
@see open
@exception Exception::FileNotFound if the file should be read but could not be found
*/
File(const String& name, OpenMode open_mode = std::ios::in);
/** Destructor.
The file is closed.
*/
virtual ~File();
/** Clear the File object.
*/
virtual void clear();
//@}
/** @name Assignment
*/
//@{
/** Assignment operator.
Assign the filename from <b> file </b>.
The file is not opend.
*/
// const File& operator = (const File& file);
//@}
/** @name Accessors
*/
//@{
/** Open a given file.
The standard constructor uses this method.
@param name the name of the file
@param open_mode the open mode, default is IN
@return bool true if the file could be opened
@exception Exception::FileNotFound if the file should be read but could not be found
*/
bool open(const String& name, File::OpenMode open_mode = std::ios::in);
/** Reopen the file.
The file is closed and reopend.
@return bool true if the file could be reopened
@exception Exception::FileNotFound if the file should be read but could not be found
*/
bool reopen();
/** Reopen the file with a different mode.
The file is closed and reopend.
@param open_mode the new mode
@return bool true if the file could be reopend
@exception Exception::FileNotFound if the file should be read but could not be found
*/
bool reopen(File::OpenMode open_mode);
/** Close the file.
*/
void close();
/** Return the name of the file.
@return String the name of the file
*/
const String& getName() const;
/** Close the file and point to an other file.
@param name the new file
*/
void setName(const String& name);
/**
*/
const String& getOriginalName() const;
/** Return the size of the file.
If the file does not exist, 0 is returned.
@return Size the size of the file
@exception Exception::FileNotFound if the file could not be found
*/
Size getSize();
/** Return the size of a given file.
@return Size the size of the file
@exception Exception::FileNotFound if the file could not be found
*/
static Size getSize(String name);
/** Return the open mode.
Default is IN.
@return int the open mode
*/
File::OpenMode getOpenMode() const;
/** Return the filetype of a given file.
@param name the name of the file.
@param trace_link true to follow links
@return Type the filetype
@exception Exception::FileNotFound if the file could not be found
*/
static Type getType(String name, bool trace_link);
/** Return the filetype.
@param trace_link true to follow links
@return Type the filetype
@exception Exception::FileNotFound if the file could not be found
*/
Type getType(bool trace_link) const;
/** Copy a given file to a given destination.
If a file with the destination name exists already, nothing happens.
@param source_name the name of the source file
@param destination_name the name of the destination file
@param buffer_size the buffer size to use while copying
@return true if copying was successfull
@exception Exception::FileNotFound if the file could not be found
*/
static bool copy(String source_name, String destination_name, Size buffer_size = 4096);
/** Copy the file to a given destination.
If a file with the destination name exists already, nothing happens.
@param destination_name the name of the destination file
@param buffer_size the buffer size to use while copying
@return true if copying was successfull
@exception Exception::FileNotFound if the file could not be found
*/
bool copyTo(const String& destination_name, Size buffer_size = 4096);
/** Move a given file to a given destination.
If a file with the destination name exists already, nothing happens.
@param source_name the name of the source file
@param destination_name the name of the destination file
@return true if copying was successfull
@exception Exception::FileNotFound if the file could not be found
*/
static bool move(const String& source_name, const String& destination_name);
/** Move the file to a given destination.
If a file with the destination name exists already, nothing happens.
@param destination_name the name of the destination file
@return true if copying was successfull
@exception Exception::FileNotFound if the file could not be found
*/
bool moveTo(const String& destination_name);
/** Remove the given file.
@param name the name of the file to be removed
@return bool true if the file could be removed
*/
static bool remove(String name);
/** Remove the file.
@return bool true if the file could be removed
*/
bool remove();
/** Rename a file.
@param old_path the path and name of the file to be renamed
@param new_path the new path and name of the file
@return bool true if the file could be renamed
@exception Exception::FileNotFound if the file could not be found
*/
static bool rename(String old_path, String new_path);
/** Rename the file to a given name.
If a file with the destination name exists already, nothing happens.
@param new_path the new path and name of the file
@return bool true if the file could be renamed
@exception Exception::FileNotFound if the file could not be found
*/
bool renameTo(const String& new_path);
/** Truncate a given file.
@param path the path to the file
@param size the new size of the file
@return bool true if the file could be truncated
@exception Exception::FileNotFound if the file could not be found
*/
static bool truncate(String path, Size size = 0);
/** Truncate the file.
@param size the new size of the file
@return bool true if the file could be truncated
@exception Exception::FileNotFound if the file could not be found
*/
bool truncate(Size size = 0);
/** Create a temporary filename.
This method creates strings, starting at _AAAAAAA, adds the suffix
/suffix/ which defaults to .TMP and tries if a
file with this name exists. If not, the string is returned. If a file
with this name exists, it continues to create names up to _ZZZZZZZ.
@param temporary reference to the temporary filename
@return bool true if a temporary filename could be found
*/
static bool createTemporaryFilename(String& temporary, const String& suffix = ".TMP");
/** Return the stream associated with this file.
Implemented just for convenience.
@return std::fstream the stream
*/
std::fstream& getFileStream();
//@}
/**@name On-the-fly file transformation
@see TransformationManager
*/
//@{
/** Mutable access the TransformationManager.
\link File File \endlink defines a static instance of
\link TransformationManager TransformationManager \endlink to
handle on-the-fly conversions of files (e.g. compression, charset conversion, etc.).
*/
TransformationManager& getTransformationManager();
/** Constant access to the TransformationManager.
\link File File \endlink defines a static instance of
\link TransformationManager TransformationManager \endlink to
handle on-the-fly conversions of files (e.g. compression, charset conversion, etc.).
*/
const TransformationManager& getTransformationManager() const;
/**
*/
static void enableTransformation(Transformation transformation);
/**
*/
static void disableTransformation(Transformation transformation);
/**
*/
static bool isTransformationEnabled(Transformation transformation);
/**
*/
static void registerTransformation(const String& pattern, const String& exec);
/**
*/
static void unregisterTransformation(const String& pattern);
//@}
/** @name Predicates
*/
//@{
/** Equality comparison operator.
Two File objects are equal if they point to the same canonized filename.
*/
bool operator == (const File& file) const;
/** Inequality comparison operator.
Two File objects are inequal if they point not to the same canonized filename.
*/
bool operator != (const File& file) const;
/** Test if the file is opend.
The standard constructor opens the file.
@return bool true if the file is closed
*/
bool isOpen() const;
/** Test if the file is closed.
The standard constructor opens the file.
@return bool true if the file is closed
*/
bool isClosed() const;
/** Test if a given file can be accessed.
@param name the name of the file to be tested
@return bool true if the file can be accessed
*/
static bool isAccessible(String name);
/** Test if the file can be accessed.
@return bool true if the file can be accessed
@exception Exception::FileNotfound if the file could not be found
*/
bool isAccessible() const;
/** Test if the path of the file is canonized.
The path is compared before and after call of
FileSystem::canonizePath(canonized_name).
@see FileSystem::canonizePath
@return bool true if the path is canonized.
@exception Exception::FileNotfound if the file could not be found
*/
bool isCanonized() const;
/** Test if a given file is readable.
@param name the name of the file
@return true if the file can be read
@exception Exception::FileNotfound if the file could not be found
*/
static bool isReadable(String name);
/** Test if the file is readable.
@return true if the file can be read
@exception Exception::FileNotfound if the file could not be found
*/
bool isReadable() const;
/** Test if a given file is writeable.
@param name the name of the file
@return true if the file is writeable
@exception Exception::FileNotfound if the file could not be found
*/
static bool isWritable(String name);
/** Test if the file is writeable.
@return true if the file is writeable
@exception Exception::FileNotfound if the file could not be found
*/
bool isWritable() const;
/** Test if a given file is executable.
@param name the name of the file
@return true if the file is executable
@exception Exception::FileNotfound if the file could not be found
*/
static bool isExecutable(String name);
/** Test if the file is executable.
@return true if the file is executable
@exception Exception::FileNotfound if the file could not be found
*/
bool isExecutable() const;
//@}
/** @name Debugging and Diagnostics
*/
//@{
/** Test if the file is valid.
If the filename was not set, false is returned.
This function uses std::fstream::good().
@return bool true if the file is valid
*/
bool isValid() const;
//@}
private:
const File& operator = (const File& file);
protected:
String name_;
String original_name_;
OpenMode open_mode_;
bool is_open_;
bool is_temporary_;
static HashSet<String> created_temp_filenames_;
static TransformationManager transformation_manager_;
static Size transformation_methods_;
};
# ifndef BALL_NO_INLINE_FUNCTIONS
# include <BALL/SYSTEM/file.iC>
# endif
} // namespace BALL
#endif // BALL_SYSTEM_FILE_H
|