]> git.lyx.org Git - lyx.git/blob - src/support/os.cpp
Fix bug #11712.
[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 "support/convert.h"
15 #include "support/debug.h"
16 #include "support/filetools.h"
17 #include "support/qstring_helpers.h"
18 #include "support/regex.h"
19
20 #include <QDir>
21
22 #if defined(__CYGWIN__)
23 #include "support/os_cygwin.cpp"
24 #elif defined(_WIN32)
25 #include "support/os_win32.cpp"
26 #else
27 #include "support/os_unix.cpp"
28 #endif
29
30 // Static assert to break compilation on platforms where
31 // int/unsigned int is not 4 bytes. Added to make sure that
32 // e.g., the author hash is always 32-bit.
33 template<bool Condition> struct static_assert_helper;
34 template <> struct static_assert_helper<true> {};
35 enum {
36         dummy = sizeof(static_assert_helper<sizeof(int) == 4>)
37 };
38
39 namespace lyx {
40 namespace support {
41 namespace os {
42
43 int timeout_min()
44 {
45         return 3;
46 }
47
48
49 static string const python23_call(string const & binary, bool verbose = false)
50 {
51         const string version_info = " -c \"from __future__ import print_function;import sys; print(sys.version_info[:2], end=\\\"\\\")\"";
52         // Default to "python" if no binary is given.
53         if (binary.empty())
54                 return "python -tt";
55
56         if (verbose)
57                 lyxerr << "Examining " << binary << "\n";
58         // Check whether this is a python 2 or 3 binary.
59         cmd_ret const out = runCommand(binary + version_info);
60
61         smatch sm;
62         try {
63                 static regex const python_reg("\\((\\d*), (\\d*)\\)");
64                 if (out.first < 0 || !regex_match(out.second, sm, python_reg))
65                         return string();
66         } catch(regex_error const & /*e*/) {
67                 LYXERR0("Regex error! This should not happen.");
68                 return string();
69         }
70
71         int major = convert<int>(sm.str(1));
72         int minor = convert<int>(sm.str(2));
73         if((major == 2 && minor < 7) || (major == 3 && minor < 5))
74                 return string();
75
76         if (verbose)
77                 lyxerr << "Found Python " << out.second << "\n";
78         // Add the -tt switch so that mixed tab/whitespace
79         // indentation is an error
80         return binary + " -tt";
81 }
82
83
84 static string const find_python_binary()
85 {
86         // This function takes inspiration from PEP 394 and PEP 397
87         // PEP 394 -- The "python" Command on Unix-Like Systems
88         // https://www.python.org/dev/peps/pep-0394/
89         // PEP 397 -- Python launcher for Windows
90         // https://www.python.org/dev/peps/pep-0397/
91
92         // Check through python launcher whether python3 is
93         // installed on computer.
94         string command = python23_call("py -3");
95         if (!command.empty())
96                 return command;
97
98         // python 3 was not found let us look for python 2
99         command = python23_call("py -2");
100         if (!command.empty())
101                 return command;
102
103         // python3 does not exists, let us try to find python3.x in PATH
104         // the search is probably broader than required
105         // but we are trying hard to find a valid python binary
106         vector<string> const path = getEnvPath("PATH");
107         lyxerr << "Looking for python in PATH ...\n";
108         for (auto bin : path) {
109                 QString const dir = toqstr(bin);
110                 string const localdir = dir.toLocal8Bit().constData();
111                 QDir qdir(dir);
112                 qdir.setFilter(QDir::Files | QDir::Executable);
113                 QStringList list = qdir.entryList(QStringList("python*"));
114                 for (auto bin2 : list) {
115                         string const binary = "\"" + addName(localdir,
116                                 bin2.toLocal8Bit().constData()) + "\"";
117                         command = python23_call(binary, true);
118                         if (!command.empty())
119                                 return command;
120                 }
121         }
122
123         // If this happens all hope is lost that this is a sane system
124         lyxerr << "Warning: No python v2.x or 3.x binary found.\n";
125         return python23_call("");
126 }
127
128
129 string const python(bool reset)
130 {
131         static string command = find_python_binary();
132         // FIXME THREAD
133         if (reset) {
134                 command = find_python_binary();
135         }
136         return command;
137 }
138
139 } // namespace os
140 } // namespace support
141 } // namespace lyx