]> git.lyx.org Git - lyx.git/blob - src/support/os.cpp
This is the result of an audit of all static variables, looking
[lyx.git] / src / support / os.cpp
1 /**
2  * \file os.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Ruurd A. Reitsma
7  * \author Enrico Forestieri
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "debug.h"
15 #include "filetools.h"
16 #include "qstring_helpers.h"
17
18 #include <QDir>
19
20 #if defined(__CYGWIN__)
21 #include "support/os_cygwin.cpp"
22 #elif defined(_WIN32)
23 #include "support/os_win32.cpp"
24 #else
25 #include "support/os_unix.cpp"
26 #endif
27
28 // Static assert to break compilation on platforms where
29 // int/unsigned int is not 4 bytes. Added to make sure that
30 // e.g., the author hash is always 32-bit.
31 template<bool Condition> struct static_assert_helper;
32 template <> struct static_assert_helper<true> {};
33 enum { 
34         dummy = sizeof(static_assert_helper<sizeof(int) == 4>)
35 };
36
37 namespace lyx {
38 namespace support {
39 namespace os {
40
41 static string const python2(string const & binary, bool verbose = false)
42 {
43         if (verbose)
44                 lyxerr << "Examining " << binary << "\n";
45
46         // Check whether this is a python 2 binary.
47         cmd_ret const out = runCommand(binary + " -V 2>&1");
48         if (out.first < 0 || !prefixIs(out.second, "Python 2"))
49                 return string();
50
51         if (verbose)
52                 lyxerr << "Found " << out.second << "\n";
53         return binary;
54 }
55
56
57 int timeout_min()
58 {
59         return 3;
60 }
61
62
63 string const python(bool reset)
64 {
65         // FIXME THREAD
66         // Check whether the first python in PATH is the right one.
67         static string command = python2("python -tt");
68         if (reset) {
69                 command = python2("python -tt");
70         }
71
72         if (command.empty()) {
73                 // It was not, so check whether we can find it elsewhere in
74                 // PATH, maybe with some suffix appended.
75                 vector<string> const path = getEnvPath("PATH");
76                 vector<string>::const_iterator it = path.begin();
77                 vector<string>::const_iterator const end = path.end();
78                 lyxerr << "Looking for python v2.x ...\n";
79                 for (; it != end; ++it) {
80                         QString const dir = toqstr(*it);
81                         string const localdir = dir.toLocal8Bit().constData();
82                         QDir qdir(dir);
83                         qdir.setFilter(QDir::Files | QDir::Executable);
84                         QStringList list = qdir.entryList(QStringList("python*"));
85                         for (int i = 0; i < list.size() && command.empty(); ++i) {
86                                 string const binary = addName(localdir,
87                                         list.at(i).toLocal8Bit().constData());
88                                 command = python2(binary, true);
89                         }
90                 }
91
92                 // Default to "python" if no usable binary was found.
93                 if (command.empty()) {
94                         lyxerr << "Warning: No python v2.x binary found.\n";
95                         command = "python";
96                 }
97
98                 // Add the -tt switch so that mixed tab/whitespace
99                 // indentation is an error
100                 command += " -tt";
101         }
102         return command;
103 }
104
105 }
106 }
107 }