OSDN Git Service

Fixed compilation under VS2012.
[lamexp/LameXP.git] / src / Global_Version.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2014 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 < 170061030)
126                         static const char *g_lamexp_version_compiler = "MSVC 2012.3";
127                 #elif (_MSC_FULL_VER == 170061030)
128                         static const char *g_lamexp_version_compiler = "MSVC 2012.4";
129                 #else
130                         #error Compiler version is not supported yet!
131                 #endif
132         #elif (_MSC_VER == 1600)
133                 #if (_MSC_FULL_VER < 160040219)
134                         static const char *g_lamexp_version_compiler = "MSVC 2010";
135                 #elif (_MSC_FULL_VER == 160040219)
136                         static const char *g_lamexp_version_compiler = "MSVC 2010-SP1";
137                 #else
138                         #error Compiler version is not supported yet!
139                 #endif
140         #elif (_MSC_VER == 1500)
141                 #if (_MSC_FULL_VER >= 150030729)
142                         static const char *g_lamexp_version_compiler = "MSVC 2008-SP1";
143                 #else
144                         static const char *g_lamexp_version_compiler = "MSVC 2008";
145                 #endif
146         #else
147                 #error Compiler is not supported!
148         #endif
149
150         // Note: /arch:SSE and /arch:SSE2 are only available for the x86 platform
151         #if !defined(_M_X64) && defined(_M_IX86_FP)
152                 #if (_M_IX86_FP == 1)
153                         LAMEXP_COMPILER_WARNING("SSE instruction set is enabled!")
154                 #elif (_M_IX86_FP == 2)
155                         LAMEXP_COMPILER_WARNING("SSE2 (or higher) instruction set is enabled!")
156                 #endif
157         #endif
158 #else
159         #error Compiler is not supported!
160 #endif
161
162 //Architecture detection
163 #if defined(_M_X64)
164         static const char *g_lamexp_version_arch = "x64";
165 #elif defined(_M_IX86)
166         static const char *g_lamexp_version_arch = "x86";
167 #else
168         #error Architecture is not supported!
169 #endif
170
171 ///////////////////////////////////////////////////////////////////////////////
172 // GLOBAL FUNCTIONS
173 ///////////////////////////////////////////////////////////////////////////////
174
175 /*
176  * Version getters
177  */
178 unsigned int lamexp_version_major(void)     { return g_lamexp_version.ver_major; }
179 unsigned int lamexp_version_minor(void)     { return g_lamexp_version.ver_minor; }
180 unsigned int lamexp_version_build(void)     { return g_lamexp_version.ver_build; }
181 unsigned int lamexp_version_confg(void)     { return g_lamexp_version.ver_confg; }
182 const char *lamexp_version_release(void)    { return g_lamexp_version.ver_release_name; }
183 const char *lamexp_version_time(void)       { return g_lamexp_version_raw_time; }
184 const char *lamexp_version_compiler(void)   { return g_lamexp_version_compiler; }
185 const char *lamexp_version_arch(void)       { return g_lamexp_version_arch; }
186 unsigned int lamexp_toolver_neroaac(void)   { return g_lamexp_toolver_neroaac; }
187 unsigned int lamexp_toolver_fhgaacenc(void) { return g_lamexp_toolver_fhgaacenc; }
188 unsigned int lamexp_toolver_qaacenc(void)   { return g_lamexp_toolver_qaacenc; }
189 unsigned int lamexp_toolver_coreaudio(void) { return g_lamexp_toolver_coreaudio; }
190
191 /*
192  * URL getters
193  */
194 const char *lamexp_website_url(void) { return g_lamexp_website_url; }
195 const char *lamexp_mulders_url(void) { return g_lamexp_mulders_url; }
196 const char *lamexp_support_url(void) { return g_lamexp_support_url; }
197
198 /*
199  * Check for Demo (pre-release) version
200  */
201 bool lamexp_version_demo(void)
202 {
203         char buffer[128];
204         bool releaseVersion = false;
205         if(!strncpy_s(buffer, 128, g_lamexp_version.ver_release_name, _TRUNCATE))
206         {
207                 char *context, *prefix = strtok_s(buffer, "-,; ", &context);
208                 if(prefix)
209                 {
210                         releaseVersion = (!_stricmp(prefix, "Final")) || (!_stricmp(prefix, "Hotfix"));
211                 }
212         }
213         return (!releaseVersion);
214 }
215
216 /*
217  * Calculate expiration date
218  */
219 QDate lamexp_version_expires(void)
220 {
221         return lamexp_version_date().addDays(LAMEXP_DEBUG ? 7 : 30);
222 }
223
224 /*
225  * Convert month string to integer value
226  */
227 static int lamexp_month2int(const char *str)
228 {
229         int ret = 0;
230
231         for(int j = 0; j < 12; j++)
232         {
233                 if(!_strcmpi(str, g_lamexp_months[j]))
234                 {
235                         ret = j+1;
236                         break;
237                 }
238         }
239
240         return ret;
241 }
242
243 /*
244  * Get build date date
245  */
246 const QDate &lamexp_version_date(void)
247 {
248         //Format of __DATE__ is defined as: "MMM DD YYYY"
249         if(!g_lamexp_version_date.isValid())
250         {
251                 int date[3] = {0, 0, 0};
252                 char temp_m[4], temp_d[3], temp_y[5];
253
254                 temp_m[0] = g_lamexp_version_raw_date[0x0];
255                 temp_m[1] = g_lamexp_version_raw_date[0x1];
256                 temp_m[2] = g_lamexp_version_raw_date[0x2];
257                 temp_m[3] = 0x00;
258
259                 temp_d[0] = g_lamexp_version_raw_date[0x4];
260                 temp_d[1] = g_lamexp_version_raw_date[0x5];
261                 temp_d[2] = 0x00;
262
263                 temp_y[0] = g_lamexp_version_raw_date[0x7];
264                 temp_y[1] = g_lamexp_version_raw_date[0x8];
265                 temp_y[2] = g_lamexp_version_raw_date[0x9];
266                 temp_y[3] = g_lamexp_version_raw_date[0xA];
267                 temp_y[4] = 0x00;
268                 
269                 date[0] = atoi(temp_y);
270                 date[1] = lamexp_month2int(temp_m);
271                 date[2] = atoi(temp_d);
272
273                 if((date[0] > 0) && (date[1] > 0) && (date[2] > 0))
274                 {
275
276                         g_lamexp_version_date = QDate(date[0], date[1], date[2]);
277                 }
278                 else
279                 {
280                         THROW("Internal error: Date format could not be recognized!");
281                 }
282         }
283
284         return g_lamexp_version_date;
285 }
286
287 /*
288  * Check for LameXP "portable" mode
289  */
290 bool lamexp_portable_mode(void)
291 {
292         QReadLocker readLock(&g_lamexp_portable.lock);
293
294         if(g_lamexp_portable.bInitialized)
295         {
296                 return g_lamexp_portable.bPortableModeEnabled;
297         }
298         
299         readLock.unlock();
300         QWriteLocker writeLock(&g_lamexp_portable.lock);
301
302         if(!g_lamexp_portable.bInitialized)
303         {
304                 if(VER_LAMEXP_PORTABLE_EDITION)
305                 {
306                         qWarning("LameXP portable edition!\n");
307                         g_lamexp_portable.bPortableModeEnabled = true;
308                 }
309                 else
310                 {
311                         QString baseName = QFileInfo(QApplication::applicationFilePath()).completeBaseName();
312                         int idx1 = baseName.indexOf("lamexp", 0, Qt::CaseInsensitive);
313                         int idx2 = baseName.lastIndexOf("portable", -1, Qt::CaseInsensitive);
314                         g_lamexp_portable.bPortableModeEnabled = (idx1 >= 0) && (idx2 >= 0) && (idx1 < idx2);
315                 }
316                 g_lamexp_portable.bInitialized = true;
317         }
318         
319         return g_lamexp_portable.bPortableModeEnabled;
320 }
321
322 ///////////////////////////////////////////////////////////////////////////////
323 // INITIALIZATION
324 ///////////////////////////////////////////////////////////////////////////////
325
326 extern "C" void _lamexp_global_init_versn(void)
327 {
328         LAMEXP_ZERO_MEMORY(g_lamexp_portable);
329 }
330
331 ///////////////////////////////////////////////////////////////////////////////
332 // FINALIZATION
333 ///////////////////////////////////////////////////////////////////////////////
334
335 extern "C" void _lamexp_global_free_versn(void)
336 {
337         /*nothing to do here*/
338 }