mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 06:57:01 +00:00
bc72d3fc58
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25898 a592a061-630c-0410-9148-cb99ea01b6c8
156 lines
4.4 KiB
C++
156 lines
4.4 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file Package.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Angus Leeming
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*
|
|
* A store of the paths to the various different directoies used
|
|
* by LyX. These paths differ markedly from one OS to another,
|
|
* following the local Windows, MacOS X or Posix conventions.
|
|
*/
|
|
|
|
#ifndef PACKAGE_H
|
|
#define PACKAGE_H
|
|
|
|
#include "support/FileName.h"
|
|
|
|
#include <string>
|
|
|
|
namespace lyx {
|
|
namespace support {
|
|
|
|
class Package;
|
|
|
|
/** When run in-place <build-dir>/src/lyx is one level up from
|
|
* the <build-dir> whilst <build-dir>/src/tex2lyx/tex2lyx is
|
|
* two levels up.
|
|
*/
|
|
enum exe_build_dir_to_top_build_dir {
|
|
top_build_dir_is_one_level_up,
|
|
top_build_dir_is_two_levels_up
|
|
};
|
|
|
|
|
|
/** Initialise package() with the command line data.
|
|
* This data is exactly as it was passed in the argv[] array.
|
|
*
|
|
* @param command_line_arg0 argv[0], the name of the LyX executable
|
|
* as passed on the command line.
|
|
*
|
|
* @param command_line_system_support_dir, the LyX system dir,
|
|
* as specified on the command line with "-sysdir <path to dir>".
|
|
*
|
|
* @param command_line_user_support_dir, the LyX user dir,
|
|
* as specified on the command line with "-userdir <path to dir>".
|
|
*/
|
|
void init_package(std::string const & command_line_arg0,
|
|
std::string const & command_line_system_support_dir,
|
|
std::string const & command_line_user_support_dir,
|
|
exe_build_dir_to_top_build_dir);
|
|
|
|
/** Accessor to the global data.
|
|
* Asserts that init_package() has been called first.
|
|
*/
|
|
Package const & package();
|
|
|
|
class Package {
|
|
public:
|
|
/// Default constructor does not lead to the paths being set.
|
|
Package() {}
|
|
|
|
/** Called by init_package, above.
|
|
* All paths will be initialized.
|
|
*/
|
|
Package(std::string const & command_line_arg0,
|
|
std::string const & command_line_system_support_dir,
|
|
std::string const & command_line_user_support_dir,
|
|
exe_build_dir_to_top_build_dir);
|
|
|
|
/** The directory containing the LyX executable.
|
|
*/
|
|
FileName const & binary_dir() const { return binary_dir_; }
|
|
|
|
/** The top of the LyX source code tree.
|
|
*/
|
|
static FileName const & top_srcdir();
|
|
|
|
/** The path to the system-level support files
|
|
* we're actually going to use.
|
|
*/
|
|
FileName const & system_support() const { return system_support_dir_; }
|
|
|
|
/** The path to the autogenerated support files
|
|
* when running in-place.
|
|
*/
|
|
FileName const & build_support() const { return build_support_dir_; }
|
|
|
|
/** The path to the user-level support files.
|
|
*/
|
|
FileName const & user_support() const { return user_support_dir_; }
|
|
|
|
/** The user_support directory was set explicitly using either
|
|
* the -userdir command line switch or
|
|
* the LYX_USERDIR_${major}${minor}x environment variable.
|
|
*/
|
|
bool explicit_user_support() const { return explicit_user_support_dir_; }
|
|
|
|
/** The path to the locale directory.
|
|
*/
|
|
FileName const & locale_dir() const { return locale_dir_; }
|
|
|
|
/** The default document directory.
|
|
* Can be reset by LyXRC.
|
|
*/
|
|
FileName & document_dir() const { return document_dir_; }
|
|
|
|
/** The path to the system temporary directory.
|
|
* (Eg /tmp on *nix.)
|
|
*/
|
|
FileName const & system_temp_dir() const { return system_temp_dir_; }
|
|
|
|
/** The path to the temporary directory used by LyX.
|
|
* (Eg /tmp/lyx_tmpdir800nBI1z9 on *nix.)
|
|
* Can be reset by LyXRC.
|
|
*/
|
|
//@{
|
|
FileName const & temp_dir() const { return temp_dir_; }
|
|
void set_temp_dir(FileName const & temp_dir) const;
|
|
//@}
|
|
|
|
/** Used when setting the user_support directory.
|
|
* Used also when expanding "~/" or contracting to "~/". (filetools.cpp)
|
|
* Used in emergencyWrite (BufferList.cpp) as one possible location
|
|
* for the dump.
|
|
* This may be empty (e. g. when run under a CGI environment)
|
|
*/
|
|
FileName const & home_dir() const { return home_dir_; }
|
|
|
|
/** Command to run the configure script.
|
|
* Caution: This is "ready-to-run", i.e. in the locale encoding, not
|
|
* utf8.
|
|
*/
|
|
std::string const & configure_command() const { return configure_command_; }
|
|
|
|
private:
|
|
FileName binary_dir_;
|
|
FileName system_support_dir_;
|
|
FileName build_support_dir_;
|
|
FileName user_support_dir_;
|
|
FileName locale_dir_;
|
|
mutable FileName document_dir_;
|
|
mutable FileName temp_dir_;
|
|
FileName system_temp_dir_;
|
|
FileName home_dir_;
|
|
std::string configure_command_;
|
|
bool explicit_user_support_dir_;
|
|
};
|
|
|
|
} // namespace support
|
|
} // namespace lyx
|
|
|
|
#endif // PACKAGE_H
|