2003-08-23 00:17:00 +00:00
|
|
|
// -*- C++ -*-
|
2003-07-22 20:42:40 +00:00
|
|
|
/**
|
|
|
|
* \file filename.h
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Angus Leeming
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-07-22 20:42:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FILENAME_H
|
|
|
|
#define FILENAME_H
|
|
|
|
|
2003-10-06 15:43:21 +00:00
|
|
|
#include <string>
|
2003-07-22 20:42:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
namespace support {
|
|
|
|
|
|
|
|
|
2006-11-18 12:49:47 +00:00
|
|
|
/**
|
|
|
|
* Class for storing file names.
|
|
|
|
* The file name may be empty. If it is not empty it is an absolute path.
|
|
|
|
* The file may or may not exist.
|
|
|
|
*/
|
2003-07-22 20:42:40 +00:00
|
|
|
class FileName {
|
2006-11-18 12:49:47 +00:00
|
|
|
protected:
|
|
|
|
/// Constructor for empty filenames (only needed for DocFileName)
|
2003-07-22 20:42:40 +00:00
|
|
|
FileName();
|
2006-11-18 12:49:47 +00:00
|
|
|
public:
|
|
|
|
/** Constructor for nonempty filenames.
|
|
|
|
* \param abs_filename the file in question. Must have an absolute path.
|
|
|
|
*/
|
|
|
|
FileName(std::string const & abs_filename);
|
|
|
|
/// Is this filename empty?
|
|
|
|
bool empty() const { return name_.empty(); }
|
|
|
|
/// get the absolute file name
|
|
|
|
std::string const absFilename() const { return name_; }
|
|
|
|
protected:
|
|
|
|
/// The absolute file name.
|
|
|
|
/// The encoding is currently unspecified, anything else than ASCII
|
|
|
|
/// may or may not work.
|
|
|
|
std::string name_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
bool operator==(FileName const &, FileName const &);
|
|
|
|
bool operator!=(FileName const &, FileName const &);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class for storing file names that appear in documents (e. g. child
|
|
|
|
* documents, included figures etc).
|
|
|
|
* The file name must not denote a file in our temporary directory, but a
|
|
|
|
* file that the user chose.
|
|
|
|
*/
|
|
|
|
class DocFileName : public FileName {
|
|
|
|
public:
|
|
|
|
DocFileName();
|
2004-02-25 12:00:53 +00:00
|
|
|
/** \param abs_filename the file in question. Must have an absolute path.
|
2003-09-03 17:23:38 +00:00
|
|
|
* \param save_abs_path how is the file to be output to file?
|
|
|
|
*/
|
2006-11-18 12:49:47 +00:00
|
|
|
DocFileName(std::string const & abs_filename, bool save_abs_path = true);
|
2003-07-22 20:42:40 +00:00
|
|
|
|
|
|
|
/** \param filename the file in question. May have either a relative
|
2003-09-03 17:23:38 +00:00
|
|
|
* or an absolute path.
|
|
|
|
* \param buffer_path if \c filename has a relative path, generate
|
|
|
|
* the absolute path using this.
|
2003-07-22 20:42:40 +00:00
|
|
|
*/
|
2003-10-06 15:43:21 +00:00
|
|
|
void set(std::string const & filename, std::string const & buffer_path);
|
2003-07-22 20:42:40 +00:00
|
|
|
|
|
|
|
void erase();
|
|
|
|
|
|
|
|
bool saveAbsPath() const { return save_abs_path_; }
|
2003-07-29 10:56:55 +00:00
|
|
|
/// \param buffer_path if empty, uses `pwd`
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string const relFilename(std::string const & buffer_path = std::string()) const;
|
2003-07-29 10:56:55 +00:00
|
|
|
/// \param buf_path if empty, uses `pwd`
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string const outputFilename(std::string const & buf_path = std::string()) const;
|
2005-07-14 12:53:12 +00:00
|
|
|
|
|
|
|
/** @returns a mangled representation of the absolute file name
|
2003-09-03 17:23:38 +00:00
|
|
|
* suitable for use in the temp dir when, for example, converting
|
|
|
|
* an image file to another format.
|
2005-07-14 12:53:12 +00:00
|
|
|
*
|
|
|
|
* @param dir the directory that will contain this file with
|
|
|
|
* its mangled name. This information is used by the mangling
|
|
|
|
* algorithm when determining the maximum allowable length of
|
|
|
|
* the mangled name.
|
|
|
|
*
|
|
|
|
* An example of a mangled name:
|
|
|
|
* C:/foo bar/baz.eps -> 0C__foo_bar_baz.eps
|
|
|
|
*
|
2004-03-11 11:45:08 +00:00
|
|
|
* It is guaranteed that
|
|
|
|
* - two different filenames have different mangled names
|
|
|
|
* - two FileName instances with the same filename have identical
|
2005-07-14 12:53:12 +00:00
|
|
|
* mangled names.
|
|
|
|
*
|
|
|
|
* Only the mangled file name is returned. It is not prepended
|
|
|
|
* with @c dir.
|
2003-09-03 17:23:38 +00:00
|
|
|
*/
|
2005-07-14 12:53:12 +00:00
|
|
|
std::string const
|
|
|
|
mangledFilename(std::string const & dir = std::string()) const;
|
2003-09-03 17:23:38 +00:00
|
|
|
|
|
|
|
/// \return true if the file is compressed.
|
|
|
|
bool isZipped() const;
|
|
|
|
/// \return the absolute file name without its .gz, .z, .Z extension
|
2003-10-06 15:43:21 +00:00
|
|
|
std::string const unzippedFilename() const;
|
2003-07-22 20:42:40 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool save_abs_path_;
|
2006-07-08 14:16:56 +00:00
|
|
|
/// Cache for isZipped() because zippedFile() is expensive
|
|
|
|
mutable bool zipped_;
|
|
|
|
/// Is zipped_ valid?
|
|
|
|
mutable bool zipped_valid_;
|
2003-07-22 20:42:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-11-18 12:49:47 +00:00
|
|
|
bool operator==(DocFileName const &, DocFileName const &);
|
|
|
|
bool operator!=(DocFileName const &, DocFileName const &);
|
2003-07-22 20:42:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace support
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
#endif
|