]> git.lyx.org Git - lyx.git/blob - src/support/os.h
Work around qt bug that prevents the glyph LATIN CAPITAL LETTER SHARP S from being...
[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 std::string const python();
63
64 ///
65 bool isFilesystemCaseSensitive();
66
67 /// Extract the path common to both @c p1 and @c p2. DBCS aware!
68 /// \p p1 and \p p2 are encoded in ucs4, \returns the index to the end of
69 /// the last matching path component (the index may be pointing after the
70 /// end of @c p1 or @c p2 if their last char is not the path separator).
71 std::size_t common_path(docstring const & p1, docstring const & p2);
72
73 /// Converts a unix style path to host OS style.
74 /// \p p and the return value are encoded in utf8.
75 std::string external_path(std::string const & p);
76
77 /// Converts a host OS style path to unix style.
78 /// \p p and the return value are encoded in utf8.
79 std::string internal_path(std::string const & p);
80
81 /// Converts a host OS style path to a unicode safe unix style.
82 /// On Windows, this is achieved by using the short form of the path,
83 /// which can be safely passed to standard I/O functions expecting narrow
84 /// char paths even when the path contains non-ascii chars.
85 /// As the short form is only available for existing files, if the file is
86 /// to be accessed for writing, \param how should be set to CREATE.
87 /// \p p and the return value are encoded in utf8.
88 std::string safe_internal_path(std::string const & p, file_access how = EXISTING);
89
90 /// Converts a unix style path list to host OS style.
91 /// \p p and the return value are encoded in utf8.
92 std::string external_path_list(std::string const & p);
93
94 /// Converts a host OS style path list to unix style.
95 /// \p p and the return value are encoded in utf8.
96 std::string internal_path_list(std::string const & p);
97
98 /**
99  * Converts a unix style path into a form suitable for inclusion in a LaTeX
100  * document.
101  * \p p is encoded in utf8.
102  * Caution: This function handles only the OS specific part of that task.
103  * Never use it directly, use lyx::support::latex_path instead.
104  */
105 std::string latex_path(std::string const & p);
106
107 /**
108  * Converts a platform style path list into a form suitable for the TeX engine.
109  * \p p is encoded in utf8.
110  */
111 std::string latex_path_list(std::string const & p);
112
113 /// Checks if the format string is suitable on the OS
114 bool is_valid_strftime(std::string const & p);
115
116 /** Returns a string suitable to be passed to popen when
117  *  reading a file.
118  */
119 char const * popen_read_mode();
120
121 enum path_type {
122         PLATFORM,
123         TEXENGINE
124 };
125
126 /** The character used to separate paths for platform environment variables
127  *  (such as PATH) or for the TeX engine.
128  */
129 char path_separator(path_type type = PLATFORM);
130
131 /** If @c use_windows_paths is true, LyX will output Windows-style paths to
132  *  latex files rather than posix ones. Obviously, this option is used only
133  *  under Windows.
134  */
135 void windows_style_tex_paths(bool use_windows_paths);
136
137 enum auto_open_mode {
138         VIEW,
139         EDIT
140 };
141
142 /** Check whether or not a file can be opened by a default viewer or editor.
143  *  \param extension (without leading .)
144  *  \param mode can be opened in VIEW or EDIT mode
145  *  \returns whether or not the format can be opened according to \p mode
146  */
147 bool canAutoOpenFile(std::string const & ext, auto_open_mode const mode);
148
149 /** View or edit a file with the default viewer or editor.
150  *  \param filename file to open (encoded in utf8)
151  *  \param mode open in VIEW or EDIT mode
152  *  \returns whether or not the file is viewed (or edited) successfully.
153  */
154 bool autoOpenFile(std::string const & filename, auto_open_mode const mode,
155                   std::string const & path = empty_string());
156
157 /** Resolves a path such that it does not contain '.', '..', or symbolic links.
158   * \p path and the return value are encoded in utf8.
159   */
160 std::string real_path(std::string const & path);
161
162 /** Checks whether \param path starts with \param pre, accounting for case
163   * insensitive file systems.
164   */
165 bool path_prefix_is(std::string const & path, std::string const & pre);
166
167 /** Checks whether \param path starts with \param pre, accounting for case
168   * insensitive file systems. If true, the file system is case insensitive,
169   * and \param how == CASE_ADJUSTED, the case of the matching prefix in
170   * @c path is made equal to that of @c pre.
171   */
172 bool path_prefix_is(std::string & path, std::string const & pre, path_case how = CASE_UNCHANGED);
173
174 } // namespace os
175 } // namespace support
176 } // namespace lyx
177
178 #endif