Try to fix build.
[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 #ifdef DCPOMATIC_IMAGE_MAGICK
28 /* ImageMagick */
29 #ifdef DCPOMATIC_MAGICKCORE_MAGICK
30 #include <magick/MagickCore.h>
31 #include <magick/version.h>
32 #else
33 #include <MagickCore/MagickCore.h>
34 #include <MagickCore/version.h>
35 #endif
36 #else
37 /* GraphicsMagick */
38 #include <magick/common.h>
39 #include <magick/magick_config.h>
40 #include <magick/version.h>
41 #endif
42 extern "C" {
43 #include <libavcodec/avcodec.h>
44 #include <libavformat/avformat.h>
45 #include <libswscale/swscale.h>
46 #include <libavutil/pixfmt.h>
47 }
48 #include <boost/thread.hpp>
49
50 #include "i18n.h"
51
52 #define LOG_GENERAL(...) log->log (String::compose (__VA_ARGS__), LogEntry::TYPE_GENERAL);
53 #define LOG_GENERAL_NC(...) log->log (__VA_ARGS__, LogEntry::TYPE_GENERAL);
54
55 using std::string;
56 using std::list;
57 using std::pair;
58 using boost::shared_ptr;
59
60 /** @param v Version as used by FFmpeg.
61  *  @return A string representation of v.
62  */
63 static
64 string
65 ffmpeg_version_to_string (int v)
66 {
67         char buffer[64];
68         snprintf (buffer, sizeof(buffer), "%d.%d.%d", ((v & 0xff0000) >> 16), ((v & 0xff00) >> 8), (v & 0xff));
69         return buffer;
70 }
71
72 /** Return a user-readable string summarising the versions of our dependencies */
73 static
74 string
75 dependency_version_summary ()
76 {
77         char buffer[512];
78         snprintf (
79                 buffer, sizeof(buffer), "libavcodec %s, libavfilter %s, libavformat %s, libavutil %s, libswscale %s, %s, libssh %s, libdcp %s git %s",
80                 ffmpeg_version_to_string(avcodec_version()).c_str(),
81                 ffmpeg_version_to_string(avfilter_version()).c_str(),
82                 ffmpeg_version_to_string(avformat_version()).c_str(),
83                 ffmpeg_version_to_string(avutil_version()).c_str(),
84                 ffmpeg_version_to_string(swscale_version()).c_str(),
85                 MagickVersion,
86                 ssh_version(0),
87                 dcp::version, dcp::git_commit
88                 );
89
90         return buffer;
91 }
92
93 list<string>
94 environment_info ()
95 {
96         list<string> info;
97
98         info.push_back (String::compose ("DCP-o-matic %1 git %2 using %3", dcpomatic_version, dcpomatic_git_commit, dependency_version_summary()));
99
100         {
101                 char buffer[128];
102                 gethostname (buffer, sizeof (buffer));
103                 info.push_back (String::compose ("Host name %1", &buffer[0]));
104         }
105
106 #ifdef DCPOMATIC_DEBUG
107         info.push_back ("DCP-o-matic built in debug mode.");
108 #else
109         info.push_back ("DCP-o-matic built in optimised mode.");
110 #endif
111 #ifdef LIBDCP_DEBUG
112         info.push_back ("libdcp built in debug mode.");
113 #else
114         info.push_back ("libdcp built in optimised mode.");
115 #endif
116
117 #ifdef DCPOMATIC_WINDOWS
118         OSVERSIONINFO os_info;
119         os_info.dwOSVersionInfoSize = sizeof (os_info);
120         GetVersionEx (&os_info);
121         info.push_back (
122                 String::compose (
123                         "Windows version %1.%2.%3",
124                         (int) os_info.dwMajorVersion, (int) os_info.dwMinorVersion, (int) os_info.dwBuildNumber
125                         )
126                 );
127         if (os_info.dwMajorVersion == 5 && os_info.dwMinorVersion == 0) {
128                 info.push_back ("Windows 2000");
129         } else if (os_info.dwMajorVersion == 5 && os_info.dwMinorVersion == 1) {
130                 info.push_back ("Windows XP");
131         } else if (os_info.dwMajorVersion == 5 && os_info.dwMinorVersion == 2) {
132                 info.push_back ("Windows XP 64-bit or Windows Server 2003");
133         } else if (os_info.dwMajorVersion == 6 && os_info.dwMinorVersion == 0) {
134                 info.push_back ("Windows Vista or Windows Server 2008");
135         } else if (os_info.dwMajorVersion == 6 && os_info.dwMinorVersion == 1) {
136                 info.push_back ("Windows 7 or Windows Server 2008");
137         } else if (os_info.dwMajorVersion == 6 && (os_info.dwMinorVersion == 2 || os_info.dwMinorVersion == 3)) {
138                 info.push_back ("Windows 8 or Windows Server 2012");
139         } else if (os_info.dwMajorVersion == 10 && os_info.dwMinorVersion == 0) {
140                 info.push_back ("Windows 10 or Windows Server 2016");
141         }
142 #endif
143
144 #if __GNUC__
145 #if __x86_64__
146         info.push_back ("Built for 64-bit");
147 #else
148         info.push_back ("Built for 32-bit");
149 #endif
150 #endif
151
152         info.push_back (String::compose ("CPU: %1, %2 processors", cpu_info(), boost::thread::hardware_concurrency ()));
153         list<pair<string, string> > const m = mount_info ();
154         for (list<pair<string, string> >::const_iterator i = m.begin(); i != m.end(); ++i) {
155                 info.push_back (String::compose ("Mount: %1 %2", i->first, i->second));
156         }
157
158         return info;
159 }