68496f9965da300415928d7d21558ea3ffda9fd5
[dcpomatic.git] / src / lib / environment_info.cc
1 /*
2     Copyright (C) 2012-2015 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "log.h"
22 #include "compose.hpp"
23 #include "version.h"
24 #include "cross.h"
25 #include <dcp/version.h>
26 #include <libssh/libssh.h>
27 extern "C" {
28 #include <libavcodec/avcodec.h>
29 #include <libavformat/avformat.h>
30 #include <libavfilter/avfilter.h>
31 #include <libswscale/swscale.h>
32 #include <libavutil/pixfmt.h>
33 }
34 #include <boost/thread.hpp>
35
36 #include "i18n.h"
37
38 #define LOG_GENERAL(...) log->log (String::compose (__VA_ARGS__), LogEntry::TYPE_GENERAL);
39 #define LOG_GENERAL_NC(...) log->log (__VA_ARGS__, LogEntry::TYPE_GENERAL);
40
41 using std::string;
42 using std::list;
43 using std::pair;
44 using boost::shared_ptr;
45
46 /** @param v Version as used by FFmpeg.
47  *  @return A string representation of v.
48  */
49 static
50 string
51 ffmpeg_version_to_string (int v)
52 {
53         char buffer[64];
54         snprintf (buffer, sizeof(buffer), "%d.%d.%d", ((v & 0xff0000) >> 16), ((v & 0xff00) >> 8), (v & 0xff));
55         return buffer;
56 }
57
58 /** Return a user-readable string summarising the versions of our dependencies */
59 static
60 string
61 dependency_version_summary ()
62 {
63         char buffer[512];
64         snprintf (
65                 buffer, sizeof(buffer), "libavcodec %s, libavfilter %s, libavformat %s, libavutil %s, libswscale %s, libssh %s, libdcp %s git %s",
66                 ffmpeg_version_to_string(avcodec_version()).c_str(),
67                 ffmpeg_version_to_string(avfilter_version()).c_str(),
68                 ffmpeg_version_to_string(avformat_version()).c_str(),
69                 ffmpeg_version_to_string(avutil_version()).c_str(),
70                 ffmpeg_version_to_string(swscale_version()).c_str(),
71                 ssh_version(0),
72                 dcp::version, dcp::git_commit
73                 );
74
75         return buffer;
76 }
77
78 list<string>
79 environment_info ()
80 {
81         list<string> info;
82
83         info.push_back (String::compose ("DCP-o-matic %1 git %2 using %3", dcpomatic_version, dcpomatic_git_commit, dependency_version_summary()));
84
85         {
86                 char buffer[128];
87                 gethostname (buffer, sizeof (buffer));
88                 info.push_back (String::compose ("Host name %1", &buffer[0]));
89         }
90
91 #ifdef DCPOMATIC_DEBUG
92         info.push_back ("DCP-o-matic built in debug mode.");
93 #else
94         info.push_back ("DCP-o-matic built in optimised mode.");
95 #endif
96 #ifdef LIBDCP_DEBUG
97         info.push_back ("libdcp built in debug mode.");
98 #else
99         info.push_back ("libdcp built in optimised mode.");
100 #endif
101
102 #ifdef DCPOMATIC_WINDOWS
103         OSVERSIONINFO os_info;
104         os_info.dwOSVersionInfoSize = sizeof (os_info);
105         GetVersionEx (&os_info);
106         info.push_back (
107                 String::compose (
108                         "Windows version %1.%2.%3",
109                         (int) os_info.dwMajorVersion, (int) os_info.dwMinorVersion, (int) os_info.dwBuildNumber
110                         )
111                 );
112         if (os_info.dwMajorVersion == 5 && os_info.dwMinorVersion == 0) {
113                 info.push_back ("Windows 2000");
114         } else if (os_info.dwMajorVersion == 5 && os_info.dwMinorVersion == 1) {
115                 info.push_back ("Windows XP");
116         } else if (os_info.dwMajorVersion == 5 && os_info.dwMinorVersion == 2) {
117                 info.push_back ("Windows XP 64-bit or Windows Server 2003");
118         } else if (os_info.dwMajorVersion == 6 && os_info.dwMinorVersion == 0) {
119                 info.push_back ("Windows Vista or Windows Server 2008");
120         } else if (os_info.dwMajorVersion == 6 && os_info.dwMinorVersion == 1) {
121                 info.push_back ("Windows 7 or Windows Server 2008");
122         } else if (os_info.dwMajorVersion == 6 && (os_info.dwMinorVersion == 2 || os_info.dwMinorVersion == 3)) {
123                 info.push_back ("Windows 8 or Windows Server 2012");
124         } else if (os_info.dwMajorVersion == 10 && os_info.dwMinorVersion == 0) {
125                 info.push_back ("Windows 10 or Windows Server 2016");
126         }
127 #endif
128
129 #if __GNUC__
130 #if __x86_64__
131         info.push_back ("Built for 64-bit");
132 #else
133         info.push_back ("Built for 32-bit");
134 #endif
135 #endif
136
137         info.push_back (String::compose ("CPU: %1, %2 processors", cpu_info(), boost::thread::hardware_concurrency ()));
138         list<pair<string, string> > const m = mount_info ();
139         for (list<pair<string, string> >::const_iterator i = m.begin(); i != m.end(); ++i) {
140                 info.push_back (String::compose ("Mount: %1 %2", i->first, i->second));
141         }
142
143         return info;
144 }