2018-04-22 12:06:48 +00:00
/* SleepyHead Main
2014-04-09 21:01:57 +00:00
*
2018-03-28 07:10:52 +00:00
* Copyright ( c ) 2011 - 2018 Mark Watkins < mark @ jedimark . net >
2014-04-09 21:01:57 +00:00
*
* This file is subject to the terms and conditions of the GNU General Public
2018-06-04 20:48:38 +00:00
* License . See the file COPYING in the main directory of the source code
* for more details . */
2011-06-26 08:30:44 +00:00
2013-01-20 19:39:01 +00:00
# include <QApplication>
2011-10-01 12:54:20 +00:00
# include <QMessageBox>
2011-07-01 10:10:44 +00:00
# include <QDebug>
2013-09-09 15:56:02 +00:00
# include <QTranslator>
2013-10-19 02:59:52 +00:00
# include <QSettings>
# include <QFileDialog>
2018-05-07 12:13:07 +00:00
# include <QFontDatabase>
2011-10-30 14:01:33 +00:00
2014-07-09 03:49:20 +00:00
# include "version.h"
2014-06-20 07:05:40 +00:00
# include "logger.h"
2011-06-26 08:30:44 +00:00
# include "mainwindow.h"
# include "SleepLib/profiles.h"
2014-04-24 09:44:15 +00:00
# include "translation.h"
2014-06-20 07:05:40 +00:00
2011-11-20 23:39:55 +00:00
// Gah! I must add the real darn plugin system one day.
2011-10-01 12:54:20 +00:00
# include "SleepLib/loader_plugins/prs1_loader.h"
# include "SleepLib/loader_plugins/cms50_loader.h"
2014-08-17 23:36:57 +00:00
# include "SleepLib/loader_plugins/cms50f37_loader.h"
2014-05-28 09:35:21 +00:00
# include "SleepLib/loader_plugins/md300w1_loader.h"
2011-10-01 12:54:20 +00:00
# include "SleepLib/loader_plugins/zeo_loader.h"
2014-04-15 13:59:24 +00:00
# include "SleepLib/loader_plugins/somnopose_loader.h"
2011-10-01 12:54:20 +00:00
# include "SleepLib/loader_plugins/resmed_loader.h"
2011-11-20 23:39:55 +00:00
# include "SleepLib/loader_plugins/intellipap_loader.h"
2012-01-22 14:39:20 +00:00
# include "SleepLib/loader_plugins/icon_loader.h"
2014-08-03 13:00:13 +00:00
# include "SleepLib/loader_plugins/weinmann_loader.h"
2011-10-01 12:54:20 +00:00
2014-09-17 06:59:58 +00:00
2011-09-01 07:12:25 +00:00
# ifdef Q_WS_X11
# include <X11/Xlib.h>
# endif
2014-04-23 13:19:56 +00:00
MainWindow * mainwin = nullptr ;
2011-06-26 08:30:44 +00:00
2014-05-14 06:49:37 +00:00
int compareVersion ( QString version ) ;
2011-06-26 08:30:44 +00:00
int main ( int argc , char * argv [ ] )
{
2011-09-01 09:03:23 +00:00
# ifdef Q_WS_X11
2011-09-01 07:12:25 +00:00
XInitThreads ( ) ;
2011-09-01 09:03:23 +00:00
# endif
2013-01-17 18:26:11 +00:00
2018-04-22 12:06:48 +00:00
bool dont_load_profile = false ;
2014-04-17 05:52:25 +00:00
bool force_data_dir = false ;
2014-10-02 17:46:08 +00:00
bool changing_language = false ;
2017-09-02 12:01:01 +00:00
QString load_profile = " " ;
2013-10-19 02:59:52 +00:00
2011-06-26 08:30:44 +00:00
QApplication a ( argc , argv ) ;
2018-06-09 00:59:16 +00:00
a . setApplicationName ( getAppName ( ) ) ;
a . setOrganizationName ( getDeveloperName ( ) ) ;
QStringList args = a . arguments ( ) ;
2011-11-18 09:05:22 +00:00
2018-06-09 00:59:16 +00:00
QSettings settings ;
2014-05-20 15:11:16 +00:00
2014-10-02 17:46:08 +00:00
QString lastlanguage = settings . value ( LangSetting , " " ) . toString ( ) ;
if ( lastlanguage . isEmpty ( ) )
changing_language = true ;
2014-04-17 05:52:25 +00:00
for ( int i = 1 ; i < args . size ( ) ; i + + ) {
2018-04-22 12:06:48 +00:00
if ( args [ i ] = = " -l " ) { dont_load_profile = true ; }
2014-04-17 05:52:25 +00:00
else if ( args [ i ] = = " -d " ) { force_data_dir = true ; }
2014-05-20 15:11:16 +00:00
else if ( args [ i ] = = " -language " ) {
2014-10-02 17:46:08 +00:00
changing_language = true ;
// reset to force language dialog
settings . setValue ( LangSetting , " " ) ;
2014-05-20 15:11:16 +00:00
} else if ( args [ i ] = = " -p " ) {
2018-06-12 04:00:38 +00:00
QThread : : msleep ( 1000 ) ;
2017-09-02 12:01:01 +00:00
} else if ( args [ i ] = = " --profile " ) {
if ( ( i + 1 ) < args . size ( ) ) {
load_profile = args [ + + i ] ;
} else {
fprintf ( stderr , " Missing argument to --profile \n " ) ;
exit ( 1 ) ;
}
2018-05-03 05:08:45 +00:00
} else if ( args [ i ] = = " --datadir " ) { // mltam's idea
QString datadir ;
if ( ( i + 1 ) < args . size ( ) ) {
datadir = args [ + + i ] ;
settings . setValue ( " Settings/AppRoot " , datadir ) ;
} else {
fprintf ( stderr , " Missing argument to --datadir \n " ) ;
exit ( 1 ) ;
}
}
2011-11-18 09:05:22 +00:00
}
2014-06-20 05:25:50 +00:00
2018-06-12 04:00:38 +00:00
initializeLogger ( ) ;
QThread : : msleep ( 50 ) ; // Logger takes a little bit to catch up
# ifdef QT_DEBUG
QString relinfo = " debug " ;
# else
QString relinfo = " " ;
2018-06-07 01:53:20 +00:00
# endif
2018-06-12 04:00:38 +00:00
relinfo = " ( " + QSysInfo : : kernelType ( ) + " " + QSysInfo : : currentCpuArchitecture ( ) + relinfo + " ) " ;
qDebug ( ) < < STR_AppName . toLocal8Bit ( ) . data ( ) < < VersionString . toLocal8Bit ( ) . data ( ) < < relinfo . toLocal8Bit ( ) . data ( ) < < " built with Qt " < < QT_VERSION_STR < < " on " < < __DATE__ < < __TIME__ ;
2014-06-20 05:25:50 +00:00
2013-09-15 04:20:26 +00:00
////////////////////////////////////////////////////////////////////////////////////////////
// Language Selection
////////////////////////////////////////////////////////////////////////////////////////////
2018-06-09 00:59:16 +00:00
initTranslations ( ) ;
2014-10-02 17:46:08 +00:00
2018-06-12 04:00:38 +00:00
initializeStrings ( ) ; // This must be called AFTER translator is installed, but before mainwindow is setup
mainwin = new MainWindow ;
# ifdef BROKEN_OPENGL_BUILD
qDebug ( ) < < " This build has been created especially for computers with older graphics hardware. \n " ;
# endif
2016-03-17 08:37:08 +00:00
2014-10-02 17:46:08 +00:00
////////////////////////////////////////////////////////////////////////////////////////////
// OpenGL Detection
////////////////////////////////////////////////////////////////////////////////////////////
2016-01-05 06:06:32 +00:00
float glversion = 0.0 ;
# ifndef NO_OPENGL_BUILD
glversion = getOpenGLVersion ( ) ;
# endif
2014-06-02 08:16:28 +00:00
2014-06-02 17:35:45 +00:00
bool opengl2supported = glversion > = 2.0 ;
bool bad_graphics = ! opengl2supported ;
2016-01-05 06:06:32 +00:00
bool intel_graphics = false ;
# ifndef NO_OPENGL_BUILD
getOpenGLVersionString ( ) . contains ( " INTEL " , Qt : : CaseInsensitive ) ;
# endif
2014-06-02 10:28:05 +00:00
2014-06-02 17:35:45 +00:00
# ifdef BROKEN_OPENGL_BUILD
Q_UNUSED ( bad_graphics )
Q_UNUSED ( intel_graphics )
2014-10-03 02:58:44 +00:00
const QString BetterBuild = " Settings/BetterBuild " ;
2014-06-02 17:35:45 +00:00
if ( opengl2supported ) {
2014-10-03 02:58:44 +00:00
if ( ! settings . value ( BetterBuild , false ) . toBool ( ) ) {
QMessageBox : : information ( nullptr , QObject : : tr ( " A faster build of SleepyHead may be available " ) ,
QObject : : tr ( " This build of SleepyHead is a compatability version that also works on computers lacking OpenGL 2.0 support. " ) + " <br/><br/> " +
QObject : : tr ( " However it looks like your computer has full support for OpenGL 2.0! " ) + " <br/><br/> " +
QObject : : tr ( " This version will run fine, but a \" <b>%1</b> \" tagged build of SleepyHead will likely run a bit faster on your computer. " ) . arg ( " -OpenGL " ) + " <br/><br/> " +
QObject : : tr ( " You will not be bothered with this message again. " ) , QMessageBox : : Ok , QMessageBox : : Ok ) ;
settings . setValue ( BetterBuild , true ) ;
2014-06-02 06:40:00 +00:00
}
2018-05-07 12:13:07 +00:00
}
2014-06-02 17:35:45 +00:00
# else
if ( bad_graphics ) {
QMessageBox : : warning ( nullptr , QObject : : tr ( " Incompatible Graphics Hardware " ) ,
QObject : : tr ( " This build of SleepyHead requires OpenGL 2.0 support to function correctly, and unfortunately your computer lacks this capability. " ) + " <br/><br/> " +
QObject : : tr ( " You may need to update your computers graphics drivers from the GPU makers website. %1 " ) .
arg ( intel_graphics ? QObject : : tr ( " (<a href='http://intel.com/support'>Intel's support site</a>) " ) : " " ) + " <br/><br/> " +
QObject : : tr ( " Because graphs will not render correctly, and it may cause crashes, this build will now exit. " ) + " <br/><br/> " +
2014-10-02 17:46:08 +00:00
QObject : : tr ( " There is another build available tagged \" <b>-BrokenGL</b> \" that should work on your computer. " )
2014-06-02 17:35:45 +00:00
, QMessageBox : : Ok , QMessageBox : : Ok ) ;
exit ( 1 ) ;
2014-06-02 06:40:00 +00:00
}
# endif
2013-10-19 02:59:52 +00:00
////////////////////////////////////////////////////////////////////////////////////////////
// Datafolder location Selection
////////////////////////////////////////////////////////////////////////////////////////////
2014-04-17 05:52:25 +00:00
bool change_data_dir = force_data_dir ;
bool havefolder = false ;
2013-10-19 02:59:52 +00:00
if ( ! settings . contains ( " Settings/AppRoot " ) ) {
2014-04-17 05:52:25 +00:00
change_data_dir = true ;
2013-10-19 02:59:52 +00:00
} else {
QDir dir ( GetAppRoot ( ) ) ;
2014-04-17 05:52:25 +00:00
if ( ! dir . exists ( ) ) {
change_data_dir = true ;
} else { havefolder = true ; }
2013-10-19 02:59:52 +00:00
}
if ( ! havefolder & & ! force_data_dir ) {
2014-05-17 05:04:40 +00:00
if ( QMessageBox : : question ( nullptr , STR_MessageBox_Question ,
2016-03-03 13:26:08 +00:00
QObject : : tr ( " Would you like SleepyHead to use this location for storing its data? " ) + " \n \n " +
QDir : : toNativeSeparators ( GetAppRoot ( ) ) + " \n \n " +
QObject : : tr ( " If you are upgrading, don't panic, you just need to make sure this is pointed at your old SleepyHead data folder. " ) + " \n \n " +
QObject : : tr ( " (If you have no idea what to do here, just click yes.) " ) , QMessageBox : : Yes | QMessageBox : : No , QMessageBox : : Yes ) = = QMessageBox : : Yes ) {
2014-04-17 05:52:25 +00:00
settings . setValue ( " Settings/AppRoot " , GetAppRoot ( ) ) ;
change_data_dir = false ;
2013-10-19 02:59:52 +00:00
}
}
retry_directory :
2014-04-17 05:52:25 +00:00
2013-10-19 02:59:52 +00:00
if ( change_data_dir ) {
2014-04-23 13:19:56 +00:00
QString datadir = QFileDialog : : getExistingDirectory ( nullptr ,
2014-04-17 05:52:25 +00:00
QObject : : tr ( " Choose or create new folder for SleepyHead data " ) , GetAppRoot ( ) ,
QFileDialog : : ShowDirsOnly ) ;
2013-10-19 02:59:52 +00:00
if ( datadir . isEmpty ( ) ) {
if ( ! havefolder ) {
2014-04-23 13:19:56 +00:00
QMessageBox : : information ( nullptr , QObject : : tr ( " Exiting " ) ,
2014-05-17 05:04:40 +00:00
QObject : : tr ( " As you did not select a data folder, SleepyHead will exit. " ) + " \n \n " + QObject : : tr ( " Next time you run, you will be asked again. " ) ) ;
2014-04-17 05:52:25 +00:00
return 0 ;
2013-10-19 02:59:52 +00:00
} else {
2014-05-17 05:04:40 +00:00
QMessageBox : : information ( nullptr , STR_MessageBox_Warning ,
QObject : : tr ( " You did not select a directory. " ) + " \n \n " + QObject : : tr ( " SleepyHead will now start with your old one. " ) + " \n \n " +
QDir : : toNativeSeparators ( GetAppRoot ( ) ) , QMessageBox : : Ok ) ;
2013-10-19 02:59:52 +00:00
}
} else {
QDir dir ( datadir ) ;
2014-04-17 05:52:25 +00:00
QFile file ( datadir + " /Preferences.xml " ) ;
2013-10-19 02:59:52 +00:00
if ( ! file . exists ( ) ) {
if ( dir . count ( ) > 2 ) {
// Not a new directory.. nag the user.
2014-05-17 05:04:40 +00:00
if ( QMessageBox : : question ( nullptr , STR_MessageBox_Warning ,
QObject : : tr ( " The folder you chose is not empty, nor does it already contain valid SleepyHead data. " )
+ " \n \n " + QObject : : tr ( " Are you sure you want to use this folder? " ) + " \n \n "
2014-04-17 05:52:25 +00:00
+ datadir , QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : No ) {
2013-10-19 02:59:52 +00:00
goto retry_directory ;
}
}
}
2014-04-17 05:52:25 +00:00
settings . setValue ( " Settings/AppRoot " , datadir ) ;
2013-10-19 02:59:52 +00:00
qDebug ( ) < < " Changing data folder to " < < datadir ;
}
}
2018-04-22 14:22:18 +00:00
///////////////////////////////////////////////////////////////////////////////////////////
// Initialize preferences system (Don't use PREF before this point)
///////////////////////////////////////////////////////////////////////////////////////////
p_pref = new Preferences ( " Preferences " ) ;
PREF . Open ( ) ;
AppSetting = new AppWideSetting ( p_pref ) ;
2018-05-07 12:13:07 +00:00
QString language = settings . value ( LangSetting , " " ) . toString ( ) ;
AppSetting - > setLanguage ( language ) ;
2018-04-22 12:06:48 +00:00
// Clean up some legacy crap
2018-04-22 14:22:18 +00:00
QFile lf ( PREF . Get ( " {home}/Layout.xml " ) ) ;
2018-04-22 12:06:48 +00:00
if ( lf . exists ( ) ) {
lf . remove ( ) ;
}
2018-04-22 14:22:18 +00:00
2018-04-22 12:06:48 +00:00
PREF . Erase ( STR_AppName ) ;
PREF . Erase ( STR_GEN_SkipLogin ) ;
2013-10-19 02:59:52 +00:00
2012-01-06 16:07:54 +00:00
////////////////////////////////////////////////////////////////////////////////////////////
// Check when last checked for updates..
////////////////////////////////////////////////////////////////////////////////////////////
2018-05-07 12:13:07 +00:00
QDateTime lastchecked , today = QDateTime : : currentDateTime ( ) ;
2016-03-06 02:50:22 +00:00
bool check_updates = false ;
2014-04-17 05:52:25 +00:00
2018-04-22 14:22:18 +00:00
if ( AppSetting - > updatesAutoCheck ( ) ) {
int update_frequency = AppSetting - > updateCheckFrequency ( ) ;
2014-04-17 05:52:25 +00:00
int days = 1000 ;
2018-04-22 14:22:18 +00:00
lastchecked = AppSetting - > updatesLastChecked ( ) ;
2014-04-17 05:52:25 +00:00
2018-04-22 14:22:18 +00:00
if ( lastchecked . isValid ( ) ) {
2014-04-17 05:52:25 +00:00
days = lastchecked . secsTo ( today ) ;
days / = 86400 ;
2018-04-22 14:22:18 +00:00
}
2014-04-17 05:52:25 +00:00
2016-03-06 02:50:22 +00:00
if ( days > update_frequency ) {
check_updates = true ;
}
2011-10-21 05:50:31 +00:00
}
2018-04-22 14:22:18 +00:00
int vc = compareVersion ( AppSetting - > versionString ( ) ) ;
if ( vc < 0 ) {
2018-05-07 12:13:07 +00:00
AppSetting - > setShowAboutDialog ( 1 ) ;
//release_notes();
2014-04-17 05:52:25 +00:00
2018-04-22 14:22:18 +00:00
check_updates = false ;
} else if ( vc > 0 ) {
if ( QMessageBox : : warning ( nullptr , STR_MessageBox_Error ,
QObject : : tr ( " The version of SleepyHead you just ran is OLDER than the one used to create this data (%1). " ) .
arg ( AppSetting - > versionString ( ) ) + " \n \n " +
QObject : : tr ( " It is likely that doing this will cause data corruption, are you sure you want to do this? " ) ,
QMessageBox : : Yes | QMessageBox : : No , QMessageBox : : No ) = = QMessageBox : : No ) {
2014-04-17 05:52:25 +00:00
2018-04-22 14:22:18 +00:00
return 0 ;
2011-10-01 12:54:20 +00:00
}
2018-04-22 14:22:18 +00:00
2011-10-01 12:54:20 +00:00
}
2011-10-21 05:50:31 +00:00
2018-04-22 14:22:18 +00:00
AppSetting - > setVersionString ( VersionString ) ;
2014-04-17 05:52:25 +00:00
// int id=QFontDatabase::addApplicationFont(":/fonts/FreeSans.ttf");
// QFontDatabase fdb;
// QStringList ffam=fdb.families();
// for (QStringList::iterator i=ffam.begin();i!=ffam.end();i++) {
// qDebug() << "Loaded Font: " << (*i);
// }
2011-06-28 01:51:21 +00:00
2018-04-22 12:06:48 +00:00
2011-12-21 14:24:09 +00:00
if ( ! PREF . contains ( " Fonts_Application_Name " ) ) {
2018-04-22 12:06:48 +00:00
# ifdef Q_OS_WIN
// Windows default Sans Serif interpretation sucks
// Segoe UI is better, but that requires OS/font detection
PREF [ " Fonts_Application_Name " ] = " Arial " ;
# else
PREF [ " Fonts_Application_Name " ] = QFontDatabase : : systemFont ( QFontDatabase : : GeneralFont ) . family ( ) ;
# endif
2014-04-17 05:52:25 +00:00
PREF [ " Fonts_Application_Size " ] = 10 ;
PREF [ " Fonts_Application_Bold " ] = false ;
PREF [ " Fonts_Application_Italic " ] = false ;
2011-10-05 10:44:41 +00:00
}
2011-10-21 05:50:31 +00:00
QApplication : : setFont ( QFont ( PREF [ " Fonts_Application_Name " ] . toString ( ) ,
PREF [ " Fonts_Application_Size " ] . toInt ( ) ,
PREF [ " Fonts_Application_Bold " ] . toBool ( ) ? QFont : : Bold : QFont : : Normal ,
PREF [ " Fonts_Application_Italic " ] . toBool ( ) ) ) ;
2011-06-28 01:51:21 +00:00
2014-04-25 05:28:10 +00:00
qDebug ( ) < < " Selected Font " < < QApplication : : font ( ) . family ( ) ;
2011-10-01 12:54:20 +00:00
2018-06-07 01:53:20 +00:00
////////////////////////////////////////////////////////////////////////////////////////////
// Register Importer Modules for autoscanner
////////////////////////////////////////////////////////////////////////////////////////////
schema : : init ( ) ;
PRS1Loader : : Register ( ) ;
ResmedLoader : : Register ( ) ;
IntellipapLoader : : Register ( ) ;
FPIconLoader : : Register ( ) ;
WeinmannLoader : : Register ( ) ;
CMS50Loader : : Register ( ) ;
CMS50F37Loader : : Register ( ) ;
MD300W1Loader : : Register ( ) ;
schema : : setOrders ( ) ; // could be called in init...
2018-04-22 12:06:48 +00:00
// Scan for user profiles
Profiles : : Scan ( ) ;
Q_UNUSED ( changing_language )
2014-04-17 05:52:25 +00:00
2016-04-16 13:15:42 +00:00
if ( check_updates ) { mainwin - > CheckForUpdates ( ) ; }
2011-10-21 05:50:31 +00:00
2018-06-07 01:53:20 +00:00
mainwin - > SetupGUI ( ) ;
mainwin - > show ( ) ;
2011-10-01 14:08:43 +00:00
2011-06-26 08:30:44 +00:00
return a . exec ( ) ;
}