]> git.lyx.org Git - lyx.git/blob - src/support/os.h
Improve quotation mark opening/closing guess
[lyx.git] / src / support / os.h
1 // -*- C++ -*-
2 /**
3  * \file os.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Ruurd A. Reitsma
8  *
9  * Full author contact details are available in file CREDITS.
10  *
11  * wrap OS-specific stuff
12  */
13
14 #ifndef OS_H
15 #define OS_H
16
17 #include "support/strfwd.h"
18 #include <cstddef>
19
20
21 namespace lyx {
22 namespace support {
23 namespace os {
24
25 enum shell_type {
26         UNIX,   // Do we have to distinguish sh and csh?
27         CMD_EXE
28 };
29
30 enum path_case {
31         CASE_UNCHANGED,
32         CASE_ADJUSTED
33 };
34
35 enum file_access {
36         EXISTING,
37         CREATE
38 };
39
40 /// Do some work just once.
41 void init(int argc, char * argv[]);
42
43 /// Returns the i-th program argument in utf8 encoding.
44 std::string utf8_argv(int i);
45
46 /// Removes from the internal copy \p num program arguments starting from \p i.
47 void remove_internal_args(int i, int num);
48
49 /// Returns the name of the NULL device (/dev/null, null).
50 std::string const & nulldev();
51
52 /// Returns "/" on *nix, "C:/", etc on Windows.
53 std::string current_root();
54
55 ///
56 shell_type shell();
57
58 /// Returns no. of minutes allowed for a command to complete.
59 int timeout_min();
60
61 /// Name of the python interpreter
62 /// @param reset True if the python path should be recomputed
63 std::string const python(bool reset = false);
64
65 ///
66 bool isFilesystemCaseSensitive();
67
68 /// Extract the path common to both @c p1 and @c p2. DBCS aware!
69 /// \p p1 and \p p2 are encoded in ucs4, \returns the index to the end of
70 /// the last matching path component (the index may be pointing after the
71 /// end of @c p1 or @c p2 if their last char is not the path separator).
72 std::size_t common_path(docstring const & p1, docstring const & p2);
73
74 /// Converts a unix style path to host OS style.
75 /// \p p and the return value are encoded in utf8.
76 std::string external_path(std::string const & p);
77
78 /// Converts a host OS style path to unix style.
79 /// \p p and the return value are encoded in utf8.
80 std::string internal_path(std::string const & p);
81
82 /// Converts a host OS style path to a unicode safe unix style.
83 /// On Windows, this is achieved by using the short form of the path,
84 /// which can be safely passed to standard I/O functions expecting narrow
85 /// char paths even when the path contains non-ascii chars.
86 /// As the short form is only available for existing files, if the file is
87 /// to be accessed for writing, \param how should be set to CREATE.
88 /// \p p and the return value are encoded in utf8.
89 std::string safe_internal_path(std::string const & p, file_access how = EXISTING);
90
91 /// Converts a unix style path list to host OS style.
92 /// \p p and the return value are encoded in utf8.
93 std::string external_path_list(std::string const & p);
94
95 /// Converts a host OS style path list to unix style.
96 /// \p p and the return value are encoded in utf8.
97 std::string internal_path_list(std::string const & p);
98
99 /**
100  * Converts a unix style path into a form suitable for inclusion in a LaTeX
101  * document.
102  * \p p is encoded in utf8.
103  * Caution: This function handles only the OS specific part of that task.
104  * Never use it directly, use lyx::support::latex_path instead.
105  */
106 std::string latex_path(std::string const & p);
107
108 /**
109  * Converts a platform style path list into a form suitable for the TeX engine.
110  * \p p is encoded in utf8.
111  */
112 std::string latex_path_list(std::string const & p);
113
114 /// Checks if the format string is suitable on the OS
115 bool is_valid_strftime(std::string const & p);
116
117 /** Returns a string suitable to be passed to popen when
118  *  reading a file.
119  */
120 char const * popen_read_mode();
121
122 enum path_type {
123         PLATFORM,
124         TEXENGINE
125 };
126
127 /** The character used to separate paths for platform environment variables
128  *  (such as PATH) or for the TeX engine.
129  */
130 char path_separator(path_type type = PLATFORM);
131
132 /** If @c use_windows_paths is true, LyX will output Windows-style paths to
133  *  latex files rather than posix ones. Obviously, this option is used only
134  *  under Windows.
135  */
136 void windows_style_tex_paths(bool use_windows_paths);
137
138 enum auto_open_mode {
139         VIEW,
140         EDIT
141 };
142
143 /** Check whether or not a file can be opened by a default viewer or editor.
144  *  \param extension (without leading .)
145  *  \param mode can be opened in VIEW or EDIT mode
146  *  \returns whether or not the format can be opened according to \p mode
147  */
148 bool canAutoOpenFile(std::string const & ext, auto_open_mode const mode);
149
150 /** View or edit a file with the default viewer or editor.
151  *  \param filename file to open (encoded in utf8)
152  *  \param mode open in VIEW or EDIT mode
153  *  \returns whether or not the file is viewed (or edited) successfully.
154  */
155 bool autoOpenFile(std::string const & filename, auto_open_mode const mode,
156                   std::string const & path = empty_string());
157
158 /** Resolves a path such that it does not contain '.', '..', or symbolic links.
159   * \p path and the return value are encoded in utf8.
160   */
161 std::string real_path(std::string const & path);
162
163 /** Checks whether \param path starts with \param pre, accounting for case
164   * insensitive file systems.
165   */
166 bool path_prefix_is(std::string const & path, std::string const & pre);
167
168 /** Checks whether \param path starts with \param pre, accounting for case
169   * insensitive file systems. If true, the file system is case insensitive,
170   * and \param how == CASE_ADJUSTED, the case of the matching prefix in
171   * @c path is made equal to that of @c pre.
172   */
173 bool path_prefix_is(std::string & path, std::string const & pre, path_case how = CASE_UNCHANGED);
174
175 } // namespace os
176 } // namespace support
177 } // namespace lyx
178
179 #endif