]> git.lyx.org Git - lyx.git/blob - src/support/os.cpp
Minor cleanup.
[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 string const python()
58 {
59         // Check whether the first python in PATH is the right one.
60         static string command = python2("python -tt");
61
62         if (command.empty()) {
63                 // It was not, so check whether we can find it elsewhere in
64                 // PATH, maybe with some suffix appended.
65                 vector<string> const path = getEnvPath("PATH");
66                 vector<string>::const_iterator it = path.begin();
67                 vector<string>::const_iterator const end = path.end();
68                 lyxerr << "Looking for python v2.x ...\n";
69                 for (; it != end; ++it) {
70                         QString const dir = toqstr(*it);
71                         string const localdir = dir.toLocal8Bit().constData();
72                         QDir qdir(dir);
73                         qdir.setFilter(QDir::Files | QDir::Executable);
74                         QStringList list = qdir.entryList(QStringList("python*"));
75                         for (int i = 0; i < list.size() && command.empty(); ++i) {
76                                 string const binary = addName(localdir,
77                                         list.at(i).toLocal8Bit().constData());
78                                 command = python2(binary, true);
79                         }
80                 }
81
82                 // Default to "python" if no usable binary was found.
83                 if (command.empty()) {
84                         lyxerr << "Warning: No python v2.x binary found.\n";
85                         command = "python";
86                 }
87
88                 // Add the -tt switch so that mixed tab/whitespace
89                 // indentation is an error
90                 command += " -tt";
91         }
92         return command;
93 }
94
95 }
96 }
97 }