2010-11-06 23:04:47 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// LameXP - Audio Encoder Front-End
|
|
|
|
// Copyright (C) 2004-2010 LoRd_MuldeR <MuldeR2@GMX.de>
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License along
|
|
|
|
// with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
//
|
|
|
|
// http://www.gnu.org/licenses/gpl-2.0.txt
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
//MSVC
|
|
|
|
#include "Targetver.h"
|
|
|
|
|
|
|
|
//Stdlib
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <tchar.h>
|
|
|
|
|
|
|
|
//Win32
|
|
|
|
#include <Windows.h>
|
|
|
|
|
2010-11-19 13:31:45 +01:00
|
|
|
//Declarations
|
2010-11-06 23:04:47 +01:00
|
|
|
class QString;
|
|
|
|
class LockedFile;
|
|
|
|
class QDate;
|
2010-11-19 13:31:45 +01:00
|
|
|
enum QtMsgType;
|
2010-11-06 23:04:47 +01:00
|
|
|
|
2010-11-15 04:42:06 +01:00
|
|
|
//Types definitions
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int family;
|
|
|
|
int model;
|
|
|
|
int stepping;
|
2010-11-15 14:02:58 +01:00
|
|
|
int count;
|
|
|
|
bool x64;
|
2010-11-15 04:42:06 +01:00
|
|
|
bool mmx;
|
|
|
|
bool sse;
|
|
|
|
bool sse2;
|
|
|
|
bool sse3;
|
|
|
|
bool ssse3;
|
2010-11-26 00:29:53 +01:00
|
|
|
char vendor[0x40];
|
2010-11-15 04:42:06 +01:00
|
|
|
char brand[0x40];
|
2010-11-26 00:29:53 +01:00
|
|
|
bool intel;
|
|
|
|
}
|
|
|
|
lamexp_cpu_t;
|
2010-11-15 04:42:06 +01:00
|
|
|
|
2010-12-15 18:43:21 +01:00
|
|
|
//Known folders
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
lamexp_folder_localappdata = 0,
|
2010-12-19 21:23:43 +01:00
|
|
|
lamexp_folder_programfiles = 2,
|
|
|
|
lamexp_folder_systemfolder = 3
|
2010-12-15 18:43:21 +01:00
|
|
|
}
|
|
|
|
lamexp_known_folder_t;
|
|
|
|
|
2010-11-06 23:04:47 +01:00
|
|
|
//LameXP version info
|
|
|
|
unsigned int lamexp_version_major(void);
|
|
|
|
unsigned int lamexp_version_minor(void);
|
|
|
|
unsigned int lamexp_version_build(void);
|
|
|
|
const QDate &lamexp_version_date(void);
|
|
|
|
const char *lamexp_version_release(void);
|
|
|
|
bool lamexp_version_demo(void);
|
2010-11-20 22:14:29 +01:00
|
|
|
const char *lamexp_version_compiler(void);
|
2010-11-12 15:58:53 +01:00
|
|
|
unsigned int lamexp_toolver_neroaac(void);
|
2010-11-06 23:04:47 +01:00
|
|
|
|
|
|
|
//Public functions
|
2010-11-07 23:06:30 +01:00
|
|
|
void lamexp_init_console(int argc, char* argv[]);
|
2010-11-06 23:04:47 +01:00
|
|
|
bool lamexp_init_qt(int argc, char* argv[]);
|
2010-11-08 21:47:35 +01:00
|
|
|
int lamexp_init_ipc(void);
|
2010-11-19 13:31:45 +01:00
|
|
|
void lamexp_message_handler(QtMsgType type, const char *msg);
|
2010-11-12 15:58:53 +01:00
|
|
|
void lamexp_register_tool(const QString &toolName, LockedFile *file, unsigned int version = 0);
|
2010-11-11 22:58:02 +01:00
|
|
|
bool lamexp_check_tool(const QString &toolName);
|
2010-11-06 23:04:47 +01:00
|
|
|
const QString lamexp_lookup_tool(const QString &toolName);
|
2010-11-12 15:58:53 +01:00
|
|
|
unsigned int lamexp_tool_version(const QString &toolName);
|
2010-11-06 23:04:47 +01:00
|
|
|
void lamexp_finalization(void);
|
2010-12-07 22:58:28 +01:00
|
|
|
QString lamexp_rand_str(void);
|
2010-11-06 23:04:47 +01:00
|
|
|
const QString &lamexp_temp_folder(void);
|
2010-11-08 19:29:36 +01:00
|
|
|
void lamexp_ipc_read(unsigned int *command, char* message, size_t buffSize);
|
|
|
|
void lamexp_ipc_send(unsigned int command, const char* message);
|
2010-11-15 04:42:06 +01:00
|
|
|
lamexp_cpu_t lamexp_detect_cpu_features(void);
|
2010-11-06 23:04:47 +01:00
|
|
|
|
|
|
|
//Auxiliary functions
|
|
|
|
bool lamexp_clean_folder(const QString folderPath);
|
2010-11-12 15:58:53 +01:00
|
|
|
const QString lamexp_version2string(const QString &pattern, unsigned int version);
|
2010-12-15 18:43:21 +01:00
|
|
|
QString lamexp_known_folder(lamexp_known_folder_t folder_id);
|
2010-12-19 00:50:22 +01:00
|
|
|
__int64 lamexp_free_diskspace(const QString &path);
|
2010-12-21 01:09:25 +01:00
|
|
|
bool lamexp_remove_file(const QString &filename);
|
2010-11-06 23:04:47 +01:00
|
|
|
|
2010-11-07 16:32:54 +01:00
|
|
|
//Debug-only functions
|
|
|
|
SIZE_T lamexp_dbg_private_bytes(void);
|
|
|
|
|
2010-11-06 23:04:47 +01:00
|
|
|
//Helper macros
|
|
|
|
#define LAMEXP_DELETE(PTR) if(PTR) { delete PTR; PTR = NULL; }
|
|
|
|
#define LAMEXP_CLOSE(HANDLE) if(HANDLE != NULL && HANDLE != INVALID_HANDLE_VALUE) { CloseHandle(HANDLE); HANDLE = NULL; }
|
|
|
|
#define QWCHAR(STR) reinterpret_cast<const wchar_t*>(STR.utf16())
|
|
|
|
#define LAMEXP_DYNCAST(OUT,CLASS,SRC) try { OUT = dynamic_cast<CLASS>(SRC); } catch(std::bad_cast) { OUT = NULL; }
|
2010-11-15 14:02:58 +01:00
|
|
|
#define LAMEXP_BOOL(X) (X ? "1" : "0")
|
2010-11-06 23:04:47 +01:00
|
|
|
|
|
|
|
//Check for debug build
|
2010-11-15 21:07:58 +01:00
|
|
|
#if defined(_DEBUG) || defined(QT_DEBUG) || !defined(NDEBUG) || !defined(QT_NO_DEBUG)
|
2010-11-15 04:42:06 +01:00
|
|
|
#define LAMEXP_DEBUG 1
|
2010-11-06 23:04:47 +01:00
|
|
|
#define LAMEXP_CHECK_DEBUG_BUILD \
|
|
|
|
qWarning("---------------------------------------------------------"); \
|
|
|
|
qWarning("DEBUG BUILD: DO NOT RELEASE THIS BINARY TO THE PUBLIC !!!"); \
|
|
|
|
qWarning("---------------------------------------------------------\n");
|
|
|
|
#else
|
2010-11-15 04:42:06 +01:00
|
|
|
#define LAMEXP_DEBUG 0
|
2010-11-06 23:04:47 +01:00
|
|
|
#define LAMEXP_CHECK_DEBUG_BUILD \
|
|
|
|
if(IsDebuggerPresent()) { \
|
|
|
|
FatalAppExit(0, L"Not a debug build. Please unload debugger and try again!"); \
|
2010-11-15 04:42:06 +01:00
|
|
|
TerminateProcess(GetCurrentProcess, -1); } \
|
|
|
|
CreateThread(NULL, NULL, reinterpret_cast<LPTHREAD_START_ROUTINE>(&debugThreadProc), NULL, NULL, NULL);
|
|
|
|
void WINAPI debugThreadProc(__in LPVOID lpParameter);
|
2010-11-06 23:04:47 +01:00
|
|
|
#endif
|
2010-11-07 16:32:54 +01:00
|
|
|
|
|
|
|
//Memory check
|
|
|
|
#if defined(_DEBUG)
|
|
|
|
#define LAMEXP_MEMORY_CHECK(CMD) \
|
|
|
|
{ \
|
|
|
|
SIZE_T _privateBytesBefore = lamexp_dbg_private_bytes(); \
|
|
|
|
CMD; \
|
|
|
|
SIZE_T _privateBytesLeak = (lamexp_dbg_private_bytes() - _privateBytesBefore) / 1024; \
|
|
|
|
if(_privateBytesLeak > 10) { \
|
|
|
|
qWarning("Memory leak: Lost %u KiloBytes.", _privateBytesLeak); \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define LAMEXP_MEMORY_CHECK(CMD) CMD
|
|
|
|
#endif
|
2010-11-13 02:11:15 +01:00
|
|
|
|
|
|
|
//Check for CPU-compatibility options
|
|
|
|
#if _M_IX86_FP != 0
|
|
|
|
#error We should not enabled SSE or SSE2 in release builds!
|
|
|
|
#endif
|