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