OSDN Git Service

Reorganized global functions: The file "Global.h" was split into multiple file in...
[lamexp/LameXP.git] / src / Global_Version.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2013 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version, but always including the *additional*
9 // restrictions defined in the "License.txt" file.
10 //
11 // This program 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 along
17 // with this program; if not, write to the Free Software Foundation, Inc.,
18 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 //
20 // http://www.gnu.org/licenses/gpl-2.0.txt
21 ///////////////////////////////////////////////////////////////////////////////
22
23 #include "Global.h"
24
25 //LameXP includes
26 #define LAMEXP_INC_CONFIG
27 #include "Resource.h"
28 #include "Config.h"
29
30 //Qt includes
31 #include <QApplication>
32 #include <QDate>
33 #include <QFileInfo>
34 #include <QReadWriteLock>
35
36 ///////////////////////////////////////////////////////////////////////////////
37 // GLOBAL VARS
38 ///////////////////////////////////////////////////////////////////////////////
39
40 //Build version
41 static const struct
42 {
43         unsigned int ver_major;
44         unsigned int ver_minor;
45         unsigned int ver_build;
46         unsigned int ver_confg;
47         char *ver_release_name;
48 }
49 g_lamexp_version =
50 {
51         VER_LAMEXP_MAJOR,
52         (10 * VER_LAMEXP_MINOR_HI) + VER_LAMEXP_MINOR_LO,
53         VER_LAMEXP_BUILD,
54         VER_LAMEXP_CONFG,
55         VER_LAMEXP_RNAME,
56 };
57
58 //Portable Mode
59 static struct
60 {
61         bool bInitialized;
62         bool bPortableModeEnabled;
63         QReadWriteLock lock;
64 }
65 g_lamexp_portable;
66
67 //Build date
68 static QDate g_lamexp_version_date;
69 static const char *g_lamexp_months[] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
70 static const char *g_lamexp_version_raw_date = __DATE__;
71 static const char *g_lamexp_version_raw_time = __TIME__;
72
73 //Official web-site URL
74 static const char *g_lamexp_website_url = "http://lamexp.sourceforge.net/";
75 static const char *g_lamexp_support_url = "http://forum.doom9.org/showthread.php?t=157726";
76 static const char *g_lamexp_mulders_url = "http://muldersoft.com/";
77
78 //Tool versions (expected versions!)
79 static const unsigned int g_lamexp_toolver_neroaac = VER_LAMEXP_TOOL_NEROAAC;
80 static const unsigned int g_lamexp_toolver_fhgaacenc = VER_LAMEXP_TOOL_FHGAACENC;
81 static const unsigned int g_lamexp_toolver_qaacenc = VER_LAMEXP_TOOL_QAAC;
82 static const unsigned int g_lamexp_toolver_coreaudio = VER_LAMEXP_TOOL_COREAUDIO;
83
84 ///////////////////////////////////////////////////////////////////////////////
85 // COMPILER INFO
86 ///////////////////////////////////////////////////////////////////////////////
87
88 /*
89  * Disclaimer: Parts of the following code were borrowed from MPC-HC project: http://mpc-hc.sf.net/
90  */
91
92 //Compiler detection
93 #if defined(__INTEL_COMPILER)
94         #if (__INTEL_COMPILER >= 1300)
95                 static const char *g_lamexp_version_compiler = "ICL 13." LAMEXP_MAKE_STR(__INTEL_COMPILER_BUILD_DATE);
96         #elif (__INTEL_COMPILER >= 1200)
97                 static const char *g_lamexp_version_compiler = "ICL 12." LAMEXP_MAKE_STR(__INTEL_COMPILER_BUILD_DATE);
98         #elif (__INTEL_COMPILER >= 1100)
99                 static const char *g_lamexp_version_compiler = "ICL 11.x";
100         #elif (__INTEL_COMPILER >= 1000)
101                 static const char *g_lamexp_version_compiler = "ICL 10.x";
102         #else
103                 #error Compiler is not supported!
104         #endif
105 #elif defined(_MSC_VER)
106         #if (_MSC_VER == 1800)
107                 #if (_MSC_FULL_VER < 180021005)
108                         static const char *g_lamexp_version_compiler = "MSVC 2013-Beta";
109                 #elif (_MSC_FULL_VER == 180021005)
110                         static const char *g_lamexp_version_compiler = "MSVC 2013";
111                 #else
112                         #error Compiler version is not supported yet!
113                 #endif
114         #elif (_MSC_VER == 1700)
115                 #if (_MSC_FULL_VER < 170050727)
116                         static const char *g_lamexp_version_compiler = "MSVC 2012-Beta";
117                 #elif (_MSC_FULL_VER < 170051020)
118                         static const char *g_lamexp_version_compiler = "MSVC 2012";
119                 #elif (_MSC_FULL_VER < 170051106)
120                         static const char *g_lamexp_version_compiler = "MSVC 2012.1-CTP";
121                 #elif (_MSC_FULL_VER < 170060315)
122                         static const char *g_lamexp_version_compiler = "MSVC 2012.1";
123                 #elif (_MSC_FULL_VER < 170060610)
124                         static const char *g_lamexp_version_compiler = "MSVC 2012.2";
125                 #elif (_MSC_FULL_VER == 170060610)
126                         static const char *g_lamexp_version_compiler = "MSVC 2012.3";
127                 #else
128                         #error Compiler version is not supported yet!
129                 #endif
130         #elif (_MSC_VER == 1600)
131                 #if (_MSC_FULL_VER < 160040219)
132                         static const char *g_lamexp_version_compiler = "MSVC 2010";
133                 #elif (_MSC_FULL_VER == 160040219)
134                         static const char *g_lamexp_version_compiler = "MSVC 2010-SP1";
135                 #else
136                         #error Compiler version is not supported yet!
137                 #endif
138         #elif (_MSC_VER == 1500)
139                 #if (_MSC_FULL_VER >= 150030729)
140                         static const char *g_lamexp_version_compiler = "MSVC 2008-SP1";
141                 #else
142                         static const char *g_lamexp_version_compiler = "MSVC 2008";
143                 #endif
144         #else
145                 #error Compiler is not supported!
146         #endif
147
148         // Note: /arch:SSE and /arch:SSE2 are only available for the x86 platform
149         #if !defined(_M_X64) && defined(_M_IX86_FP)
150                 #if (_M_IX86_FP == 1)
151                         LAMEXP_COMPILER_WARNING("SSE instruction set is enabled!")
152                 #elif (_M_IX86_FP == 2)
153                         LAMEXP_COMPILER_WARNING("SSE2 (or higher) instruction set is enabled!")
154                 #endif
155         #endif
156 #else
157         #error Compiler is not supported!
158 #endif
159
160 //Architecture detection
161 #if defined(_M_X64)
162         static const char *g_lamexp_version_arch = "x64";
163 #elif defined(_M_IX86)
164         static const char *g_lamexp_version_arch = "x86";
165 #else
166         #error Architecture is not supported!
167 #endif
168
169 ///////////////////////////////////////////////////////////////////////////////
170 // GLOBAL FUNCTIONS
171 ///////////////////////////////////////////////////////////////////////////////
172
173 /*
174  * Version getters
175  */
176 unsigned int lamexp_version_major(void)     { return g_lamexp_version.ver_major; }
177 unsigned int lamexp_version_minor(void)     { return g_lamexp_version.ver_minor; }
178 unsigned int lamexp_version_build(void)     { return g_lamexp_version.ver_build; }
179 unsigned int lamexp_version_confg(void)     { return g_lamexp_version.ver_confg; }
180 const char *lamexp_version_release(void)    { return g_lamexp_version.ver_release_name; }
181 const char *lamexp_version_time(void)       { return g_lamexp_version_raw_time; }
182 const char *lamexp_version_compiler(void)   { return g_lamexp_version_compiler; }
183 const char *lamexp_version_arch(void)       { return g_lamexp_version_arch; }
184 unsigned int lamexp_toolver_neroaac(void)   { return g_lamexp_toolver_neroaac; }
185 unsigned int lamexp_toolver_fhgaacenc(void) { return g_lamexp_toolver_fhgaacenc; }
186 unsigned int lamexp_toolver_qaacenc(void)   { return g_lamexp_toolver_qaacenc; }
187 unsigned int lamexp_toolver_coreaudio(void) { return g_lamexp_toolver_coreaudio; }
188
189 /*
190  * URL getters
191  */
192 const char *lamexp_website_url(void) { return g_lamexp_website_url; }
193 const char *lamexp_mulders_url(void) { return g_lamexp_mulders_url; }
194 const char *lamexp_support_url(void) { return g_lamexp_support_url; }
195
196 /*
197  * Check for Demo (pre-release) version
198  */
199 bool lamexp_version_demo(void)
200 {
201         char buffer[128];
202         bool releaseVersion = false;
203         if(!strncpy_s(buffer, 128, g_lamexp_version.ver_release_name, _TRUNCATE))
204         {
205                 char *context, *prefix = strtok_s(buffer, "-,; ", &context);
206                 if(prefix)
207                 {
208                         releaseVersion = (!_stricmp(prefix, "Final")) || (!_stricmp(prefix, "Hotfix"));
209                 }
210         }
211         return (!releaseVersion);
212 }
213
214 /*
215  * Calculate expiration date
216  */
217 QDate lamexp_version_expires(void)
218 {
219         return lamexp_version_date().addDays(LAMEXP_DEBUG ? 7 : 30);
220 }
221
222 /*
223  * Convert month string to integer value
224  */
225 static int lamexp_month2int(const char *str)
226 {
227         int ret = 0;
228
229         for(int j = 0; j < 12; j++)
230         {
231                 if(!_strcmpi(str, g_lamexp_months[j]))
232                 {
233                         ret = j+1;
234                         break;
235                 }
236         }
237
238         return ret;
239 }
240
241 /*
242  * Get build date date
243  */
244 const QDate &lamexp_version_date(void)
245 {
246         //Format of __DATE__ is defined as: "MMM DD YYYY"
247         if(!g_lamexp_version_date.isValid())
248         {
249                 int date[3] = {0, 0, 0};
250                 char temp_m[4], temp_d[3], temp_y[5];
251
252                 temp_m[0] = g_lamexp_version_raw_date[0x0];
253                 temp_m[1] = g_lamexp_version_raw_date[0x1];
254                 temp_m[2] = g_lamexp_version_raw_date[0x2];
255                 temp_m[3] = 0x00;
256
257                 temp_d[0] = g_lamexp_version_raw_date[0x4];
258                 temp_d[1] = g_lamexp_version_raw_date[0x5];
259                 temp_d[2] = 0x00;
260
261                 temp_y[0] = g_lamexp_version_raw_date[0x7];
262                 temp_y[1] = g_lamexp_version_raw_date[0x8];
263                 temp_y[2] = g_lamexp_version_raw_date[0x9];
264                 temp_y[3] = g_lamexp_version_raw_date[0xA];
265                 temp_y[4] = 0x00;
266                 
267                 date[0] = atoi(temp_y);
268                 date[1] = lamexp_month2int(temp_m);
269                 date[2] = atoi(temp_d);
270
271                 if((date[0] > 0) && (date[1] > 0) && (date[2] > 0))
272                 {
273
274                         g_lamexp_version_date = QDate(date[0], date[1], date[2]);
275                 }
276                 else
277                 {
278                         THROW("Internal error: Date format could not be recognized!");
279                 }
280         }
281
282         return g_lamexp_version_date;
283 }
284
285 /*
286  * Check for LameXP "portable" mode
287  */
288 bool lamexp_portable_mode(void)
289 {
290         QReadLocker readLock(&g_lamexp_portable.lock);
291
292         if(g_lamexp_portable.bInitialized)
293         {
294                 return g_lamexp_portable.bPortableModeEnabled;
295         }
296         
297         readLock.unlock();
298         QWriteLocker writeLock(&g_lamexp_portable.lock);
299
300         if(!g_lamexp_portable.bInitialized)
301         {
302                 if(VER_LAMEXP_PORTABLE_EDITION)
303                 {
304                         qWarning("LameXP portable edition!\n");
305                         g_lamexp_portable.bPortableModeEnabled = true;
306                 }
307                 else
308                 {
309                         QString baseName = QFileInfo(QApplication::applicationFilePath()).completeBaseName();
310                         int idx1 = baseName.indexOf("lamexp", 0, Qt::CaseInsensitive);
311                         int idx2 = baseName.lastIndexOf("portable", -1, Qt::CaseInsensitive);
312                         g_lamexp_portable.bPortableModeEnabled = (idx1 >= 0) && (idx2 >= 0) && (idx1 < idx2);
313                 }
314                 g_lamexp_portable.bInitialized = true;
315         }
316         
317         return g_lamexp_portable.bPortableModeEnabled;
318 }
319
320 ///////////////////////////////////////////////////////////////////////////////
321 // INITIALIZATION
322 ///////////////////////////////////////////////////////////////////////////////
323
324 extern "C" void _lamexp_global_init_versn(void)
325 {
326         LAMEXP_ZERO_MEMORY(g_lamexp_portable);
327 }