forked from ibsh/is_KeyFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
144 lines (115 loc) · 4.24 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/*************************************************************************
Copyright 2011 Ibrahim Sha'ath
This file is part of KeyFinder.
KeyFinder 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 3 of the License, or
(at your option) any later version.
KeyFinder 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 KeyFinder. If not, see <http://www.gnu.org/licenses/>.
*************************************************************************/
#include <QtGui/QApplication>
#include <QMenuBar>
#include <QKeySequence>
#include "guidetail.h"
#include "guibatch.h"
#include "guimenuhandler.h"
#include "decoderlibav.h"
#include "asynckeyresult.h"
#include <fstream>
void LoggingHandler(QtMsgType type, const char *msg) {
std::ofstream logfile;
#if defined Q_OS_MAC
logfile.open(QDir::homePath().toLocal8Bit() + "/Library/Logs/KeyFinder.log", std::ios::app);
#elif defined Q_OS_LINUX
logfile.open("KeyFinder.log", std::ios::app);
#else
logfile.open("KeyFinder_log.txt", std::ios::app);
#endif
logfile << QDate::currentDate().toString("yyyy-MM-dd").toLocal8Bit().constData() << " ";
logfile << QTime::currentTime().toString("hh:mm:ss.zzz").toLocal8Bit().constData() << " ";
switch (type) {
case QtDebugMsg:
logfile << "Debug: " << msg << "\n";
break;
case QtWarningMsg:
logfile << "Warning: " << msg << "\n";
break;
case QtCriticalMsg:
logfile << "Critical: " << msg << "\n";
break;
case QtFatalMsg:
logfile << "Fatal: " << msg << "\n";
abort();
}
logfile.close();
}
int commandLineInterface(int argc, char* argv[]){
QString filePath = "";
bool writeToTags = false;
for(int i = 1; i < argc; i++){
if(std::strcmp(argv[i], "-f") == 0 && i+1 < argc)
filePath = argv[++i];
else if (std::strcmp(argv[i], "-w") == 0)
writeToTags = true;
}
if(filePath.isEmpty())
return -1; // not a valid CLI attempt, launch GUI
Preferences prefs;
AsyncFileObject object(filePath, prefs, 0);
KeyFinderResultWrapper result = keyDetectionProcess(object);
if(!result.errorMessage.isEmpty()){
std::cerr << result.errorMessage.toLocal8Bit().constData();
return 1;
}
std::cout << prefs.getKeyCode(result.core.globalKeyEstimate).toLocal8Bit().constData();
if(writeToTags){
TagLibMetadata md(filePath);
QString written = md.writeKeyToMetadata(result.core.globalKeyEstimate,prefs);
if(written.isEmpty()){
std::cerr << "Could not write to tags" << std::endl;
return 2;
}
}
return 0;
}
int main(int argc, char* argv[]){
QCoreApplication::setOrganizationName("Ibrahim Sha'ath");
QCoreApplication::setOrganizationDomain("ibrahimshaath.co.uk");
QCoreApplication::setApplicationName(GuiStrings::getInstance()->appName());
// libav setup
av_register_all();
av_log_set_level(AV_LOG_ERROR);
av_lockmgr_register(NULL);
// primitive command line use
if(argc > 2){
int cliResult = commandLineInterface(argc,argv);
if(cliResult >= 0)
return cliResult;
}
qInstallMsgHandler(LoggingHandler);
QApplication a(argc, argv);
QTranslator qtTranslator;
qtTranslator.load("qt_" + QLocale::system().name(), QLibraryInfo::location(QLibraryInfo::TranslationsPath));
a.installTranslator(&qtTranslator);
QString localeParam = "%1/Translations/is_keyfinder_%2.qm";
#if defined Q_OS_MAC
QDir dir(QApplication::applicationDirPath());
dir.cdUp();
QString localePath = localeParam.arg(dir.absolutePath()).arg(QLocale::system().name());
#elif defined Q_OS_LINUX
QString localePath = localeParam.arg(WORK_CACHEDIR).arg(QLocale::system().name());
#else
QString localePath = localeParam.arg(QCoreApplication::applicationDirPath()).arg(QLocale::system().name());
#endif
QTranslator myappTranslator;
myappTranslator.load(localePath);
a.installTranslator(&myappTranslator);
MainMenuHandler* menuHandler = new MainMenuHandler(0);
menuHandler->new_Batch_Window(true);
return a.exec();
}