2021-04-05 06:50:58 -07:00
# ifndef FUNCTIONS_H
# define FUNCTIONS_H
# include <QFile>
# include <QString>
# include <QTextStream>
# include <fstream>
# include <QDir>
# include <QProcess>
# include <regex>
2021-06-23 05:16:04 -07:00
# include <QThread>
2021-07-14 15:23:54 -07:00
# include <QTimer>
2021-12-25 10:50:30 -08:00
# include <QDebug>
2022-04-03 17:23:49 -07:00
# include <QRandomGenerator>
2022-04-04 21:47:15 -07:00
# include <QDateTime>
2022-06-18 06:26:52 -07:00
# include <QDirIterator>
# include <QJsonDocument>
# include <QJsonParseError>
# include <QJsonObject>
# include <QJsonValue>
# include <QJsonArray>
2022-06-28 23:15:13 -07:00
# include <QCryptographicHash>
2021-04-05 06:50:58 -07:00
2021-06-25 19:09:42 -07:00
# include <stdio.h>
# include <fcntl.h>
# include <sys/ioctl.h>
2022-02-12 20:54:46 -08:00
# include <unistd.h>
2021-06-25 19:09:42 -07:00
2021-04-22 07:10:47 -07:00
// WoW, global variables and namespaces are awesome
namespace global {
2021-04-22 04:38:54 -07:00
namespace battery {
2021-04-22 07:10:47 -07:00
inline bool showLowBatteryDialog ;
inline bool showCriticalBatteryAlert ;
inline bool batteryAlertLock ;
2021-04-22 04:38:54 -07:00
}
namespace reader {
2021-09-04 20:46:47 -07:00
inline QString bookFile ;
2021-04-22 07:10:47 -07:00
inline int pageNumber ;
inline int bookNumber ;
inline bool skipOpenDialog ;
2021-04-23 16:22:53 -07:00
inline bool startBatteryWatchdog ;
2021-06-29 09:26:30 -07:00
inline bool startUsbmsPrompt ;
2021-06-17 05:34:00 -07:00
inline bool bookIsEpub ;
2021-08-19 09:55:12 -07:00
inline bool globalReadingSettings ;
2022-04-16 16:40:30 -07:00
inline int pdfOrientation ;
2021-04-22 07:10:47 -07:00
}
2021-04-30 20:55:38 -07:00
namespace kobox {
inline bool showKoboxSplash ;
2021-05-01 12:53:52 -07:00
inline bool koboxSettingsRebootDialog ;
2021-06-14 11:31:49 -07:00
inline bool resetKoboxUserDataBool ;
inline bool resetKoboxDialog ;
2021-04-30 20:55:38 -07:00
}
2021-04-22 07:10:47 -07:00
namespace mainwindow {
2021-04-23 19:23:24 -07:00
namespace tabSwitcher {
2021-04-24 06:34:35 -07:00
inline bool repaint ;
2022-06-28 23:15:13 -07:00
inline bool homePageWidgetCreated ;
2021-04-23 19:23:24 -07:00
inline bool appsWidgetCreated ;
inline bool appsWidgetSelected ;
2021-04-24 09:44:57 -07:00
inline bool settingsChooserWidgetCreated ;
inline bool settingsChooserWidgetSelected ;
2021-12-26 05:36:29 -08:00
inline bool libraryWidgetCreated ;
inline bool libraryWidgetSelected ;
2022-06-27 15:14:20 -07:00
inline bool localLibraryWidgetCreated ;
inline bool localLibraryWidgetSelected ;
2021-04-23 19:23:24 -07:00
}
2021-04-22 07:10:47 -07:00
inline bool updateDialog ;
inline bool lowBatteryDialog ;
2021-05-09 11:07:05 -07:00
}
namespace usbms {
2021-05-07 22:03:25 -07:00
inline bool usbmsDialog ;
2021-05-09 11:07:05 -07:00
inline bool showUsbmsDialog ;
inline bool launchUsbms ;
2021-05-13 18:40:05 -07:00
inline bool koboxExportExtensions ;
2021-04-22 04:38:54 -07:00
}
2021-05-01 12:53:52 -07:00
namespace settings {
inline bool settingsRebootDialog ;
}
2021-06-08 04:49:52 -07:00
namespace text {
inline bool textBrowserDialog ;
inline QString textBrowserContents ;
}
2021-07-05 10:45:35 -07:00
namespace keyboard {
inline bool keyboardDialog ;
inline bool keypadDialog ;
2021-07-05 19:21:20 -07:00
inline bool searchDialog ;
2021-10-08 20:37:32 -07:00
inline bool encfsDialog ;
2021-07-05 21:13:11 -07:00
inline bool vncDialog ;
2021-07-14 15:23:54 -07:00
inline bool wifiPassphraseDialog ;
2021-07-05 10:45:35 -07:00
inline QString keyboardText ;
inline QString keypadText ;
}
2021-07-13 22:24:30 -07:00
namespace toast {
inline QString message ;
inline bool wifiToast ;
2021-07-14 15:23:54 -07:00
inline bool modalToast ;
inline bool indefiniteToast ;
2021-09-05 06:37:07 -07:00
inline int delay ;
2021-07-13 22:24:30 -07:00
}
2021-07-16 13:41:36 -07:00
namespace device {
inline bool isWifiAble ;
}
2021-08-19 05:23:18 -07:00
namespace network {
inline bool isConnected ;
}
namespace otaUpdate {
inline bool isUpdateOta ;
inline bool downloadOta ;
}
2021-10-08 20:37:32 -07:00
namespace encfs {
inline QString passphrase ;
2021-10-10 12:02:20 -07:00
inline QString unlockTime ;
2022-04-04 22:37:04 -07:00
inline QString lockdownMessage ;
2021-10-10 12:02:20 -07:00
inline bool cancelSetup ;
inline bool cancelUnlock ;
inline bool lockdown ;
2021-10-18 05:46:27 -07:00
inline bool enableStorageEncryptionDialog ;
2021-10-17 19:31:44 -07:00
inline bool disableStorageEncryptionDialog ;
2021-11-14 18:22:58 -08:00
inline bool errorNoBooksInDropboxDialog ;
2021-12-31 12:50:59 -08:00
inline bool repackDialog ;
2021-10-08 20:37:32 -07:00
}
2021-12-27 12:04:39 -08:00
namespace library {
inline unsigned long bookId ;
inline bool isLatestBook ;
inline int latestBookNumber ;
inline QString bookTitle ;
inline bool librarySearchDialog ;
2021-12-27 20:59:28 -08:00
inline bool libraryResults ;
2021-12-27 12:04:39 -08:00
}
2022-07-12 09:34:36 -07:00
namespace bookInfoDialog {
inline bool localInfoDialog ;
}
2022-06-27 15:14:20 -07:00
namespace localLibrary {
static inline QString rawDatabasePath = " /inkbox/LocalLibrary.db.raw " ;
2022-07-06 11:24:23 -07:00
static inline QString databaseDirectoryPath = " /mnt/onboard/onboard/.database/ " ;
static inline QString databasePath = databaseDirectoryPath + " LocalLibrary.db " ;
static inline QString recentBooksDatabasePath = databaseDirectoryPath + " RecentBooks.db " ;
static inline QString pinnedBooksDatabasePath = databaseDirectoryPath + " PinnedBooks.db " ;
2022-06-30 06:52:48 -07:00
inline bool headless ;
2022-07-06 11:24:23 -07:00
namespace bookOptionsDialog {
inline int bookID ;
2022-07-17 23:40:32 -07:00
inline bool deleteOption = true ;
2022-07-06 11:24:23 -07:00
inline bool bookDeleted ;
2022-07-17 23:40:32 -07:00
inline bool bookPinAction ;
2022-07-06 11:24:23 -07:00
}
2022-06-27 15:14:20 -07:00
}
2022-03-07 11:15:54 -08:00
namespace localStorage {
inline QStringList searchResultsPaths ;
}
2022-04-04 21:47:15 -07:00
namespace logger {
inline bool status ;
}
2022-06-17 20:59:21 -07:00
namespace userApps {
2022-06-28 23:15:13 -07:00
inline bool appCompatibilityDialog ;
inline QString appCompatibilityText ;
inline bool appCompatibilityLastContinueStatus = true ; // This is for RequiredFeatures to show only one dialog if 'Cancel' is clicked.
inline bool appInfoDialog ;
inline bool launchApp ;
}
namespace homePageWidget {
2022-06-30 06:52:48 -07:00
static inline int recentBooksNumber = 8 ;
static inline int recentBooksNumberPerRow = 4 ;
static inline int recentBooksRowNumber = global : : homePageWidget : : recentBooksNumber / global : : homePageWidget : : recentBooksNumberPerRow ;
2022-07-17 23:40:32 -07:00
static inline int pinnedBooksNumber = 4 ;
static inline int pinnedBooksNumberPerRow = 4 ;
static inline int pinnedBooksRowNumber = global : : homePageWidget : : pinnedBooksNumber / global : : homePageWidget : : pinnedBooksNumberPerRow ;
2022-06-17 20:59:21 -07:00
}
2021-06-08 05:03:46 -07:00
inline QString systemInfoText ;
2021-07-05 19:21:20 -07:00
inline bool forbidOpenSearchDialog ;
2022-05-22 12:38:02 -07:00
inline bool isN705 = false ;
inline bool isN905C = false ;
inline bool isN613 = false ;
inline bool isN873 = false ;
inline bool isN236 = false ;
inline bool isN437 = false ;
inline bool isN306 = false ;
inline bool isKT = false ;
2021-09-05 08:47:09 -07:00
inline bool runningInstanceIsReaderOnly ;
2022-04-02 13:49:18 -07:00
inline QString deviceID ;
2021-04-22 04:38:54 -07:00
}
2021-04-05 06:50:58 -07:00
// https://stackoverflow.com/questions/6080853/c-multiple-definition-error-for-global-functions-in-the-header-file/20679534#20679534
namespace {
QString checkconfig_str_val ;
2021-05-26 05:33:40 -07:00
QString deviceUID ;
2021-06-25 19:09:42 -07:00
QString device ;
2021-04-05 06:50:58 -07:00
QString batt_level ;
2021-06-14 09:24:20 -07:00
QString kernelVersion ;
2021-04-05 06:50:58 -07:00
int batt_level_int ;
2021-06-20 19:57:10 -07:00
int defaultEpubPageWidth ;
int defaultEpubPageHeight ;
2021-08-29 12:05:07 -07:00
int defaultPdfPageWidth ;
int defaultPdfPageHeight ;
2021-04-05 06:50:58 -07:00
bool checked_box = false ;
2022-04-16 20:20:24 -07:00
QFile logFile ( " /external_root/var/log/inkbox-gui.log " ) ;
2022-07-12 09:34:36 -07:00
void log ( QString message , QString className = " undefined " , bool applicationStart = false ) {
2022-04-04 21:47:15 -07:00
if ( global : : logger : : status = = true ) {
2022-04-16 20:20:24 -07:00
QString initialTime ;
if ( applicationStart = = true ) {
initialTime = QDateTime : : currentDateTime ( ) . toString ( " dd/MM/yyyy @ hh:mm:ss " ) ;
}
2022-04-04 21:47:15 -07:00
QDebug logger = qDebug ( ) ;
logger . noquote ( ) ;
2022-04-16 20:20:24 -07:00
QStringList logStringList ;
logStringList < < QDateTime : : currentDateTime ( ) . toString ( " dd/MM/yyyy @ hh:mm:ss " ) < < " | " < < className + " : " < < message . trimmed ( ) ;
QString logString = logStringList . join ( " " ) ;
logger < < logString ;
if ( ! logFile . isOpen ( ) ) {
logFile . open ( QIODevice : : Append | QIODevice : : Text ) ;
}
QTextStream logFileOut ( & logFile ) ;
if ( applicationStart = = true ) {
logFileOut < < " ========== InkBox binary start at " < < initialTime < < " ========== " < < Qt : : endl ;
}
logFileOut < < logString < < Qt : : endl ;
logFile . close ( ) ;
2022-04-04 21:47:15 -07:00
}
}
2021-04-05 06:50:58 -07:00
bool checkconfig ( QString file ) {
2021-09-05 06:49:37 -07:00
if ( QFile : : exists ( file ) ) {
QFile config ( file ) ;
config . open ( QIODevice : : ReadOnly ) ;
QTextStream in ( & config ) ;
const QString content = in . readAll ( ) ;
std : : string contentstr = content . toStdString ( ) ;
if ( contentstr . find ( " true " ) ! = std : : string : : npos ) {
return true ;
}
else {
return false ;
}
config . close ( ) ;
2021-04-05 06:50:58 -07:00
}
else {
return false ;
}
return 0 ;
} ;
bool checkconfig_rw ( QString file ) {
2021-09-05 06:49:37 -07:00
if ( QFile : : exists ( file ) ) {
QFile config ( file ) ;
config . open ( QIODevice : : ReadWrite ) ;
QTextStream in ( & config ) ;
const QString content = in . readAll ( ) ;
std : : string contentstr = content . toStdString ( ) ;
if ( contentstr . find ( " true " ) ! = std : : string : : npos ) {
return true ;
}
else {
return false ;
}
config . close ( ) ;
2021-04-05 06:50:58 -07:00
}
else {
return false ;
}
return 0 ;
} ;
2021-06-26 16:29:51 -07:00
void setDefaultWorkDir ( ) {
QDir : : setCurrent ( " /mnt/onboard/.adds/inkbox " ) ;
}
2021-04-05 06:50:58 -07:00
int brightness_checkconfig ( QString file ) {
2021-09-05 06:49:37 -07:00
if ( QFile : : exists ( file ) ) {
QFile config ( file ) ;
config . open ( QIODevice : : ReadWrite ) ;
QTextStream in ( & config ) ;
const QString content = in . readAll ( ) ;
int content_int = content . toInt ( ) ;
return content_int ;
config . close ( ) ;
}
else {
return EXIT_FAILURE ;
}
2021-04-05 06:50:58 -07:00
return 0 ;
}
void set_brightness ( int value ) {
2022-04-06 20:24:16 -07:00
if ( QFile : : exists ( " /var/run/brightness " ) ) {
std : : ofstream fhandler ;
fhandler . open ( " /var/run/brightness " ) ;
fhandler < < value ;
fhandler . close ( ) ;
}
2021-04-05 06:50:58 -07:00
}
2021-06-25 19:09:42 -07:00
void set_brightness_ntxio ( int value ) {
// Thanks to Kevin Short for this (GloLight)
int light ;
2021-06-27 10:28:41 -07:00
if ( ( light = open ( " /dev/ntx_io " , O_RDWR ) ) = = - 1 ) {
fprintf ( stderr , " Error opening ntx_io device \n " ) ;
2021-06-25 19:09:42 -07:00
}
ioctl ( light , 241 , value ) ;
2022-02-12 20:54:46 -08:00
close ( light ) ;
2021-06-25 19:09:42 -07:00
}
2021-04-05 06:50:58 -07:00
int int_checkconfig ( QString file ) {
2021-09-05 06:49:37 -07:00
if ( QFile : : exists ( file ) ) {
QFile int_config ( file ) ;
int_config . open ( QIODevice : : ReadOnly ) ;
QString valuestr = int_config . readAll ( ) ;
int value = valuestr . toInt ( ) ;
int_config . close ( ) ;
return value ;
}
else {
return EXIT_FAILURE ;
}
2021-04-05 06:50:58 -07:00
return 0 ;
}
int display_quote ( ) {
2022-04-03 17:23:49 -07:00
int quoteNumber = QRandomGenerator : : global ( ) - > bounded ( 1 , 6 ) ;
return quoteNumber ;
2021-04-05 06:50:58 -07:00
return 0 ;
}
2022-06-25 17:12:50 -07:00
void writeFile ( QString filename , QString content ) {
QFile file ( filename ) ;
if ( file . open ( QIODevice : : ReadWrite ) ) {
QTextStream stream ( & file ) ;
stream < < content ;
}
else {
QString function = __func__ ; log ( function + " : Failed to write string ' " + content + " ' to file ' " + filename + " ' " , " functions " ) ;
}
}
2021-04-05 06:50:58 -07:00
void string_writeconfig ( std : : string file , std : : string config_option ) {
std : : ofstream fhandler ;
fhandler . open ( file ) ;
fhandler < < config_option ;
fhandler . close ( ) ;
}
void string_checkconfig ( QString file ) {
2021-09-05 06:49:37 -07:00
if ( QFile : : exists ( file ) ) {
checkconfig_str_val = " " ;
QFile config ( file ) ;
config . open ( QIODevice : : ReadWrite ) ;
QTextStream in ( & config ) ;
checkconfig_str_val = in . readAll ( ) ;
config . close ( ) ;
}
else {
checkconfig_str_val = " " ;
}
2021-04-05 06:50:58 -07:00
}
void string_checkconfig_ro ( QString file ) {
2021-09-05 06:49:37 -07:00
if ( QFile : : exists ( file ) ) {
checkconfig_str_val = " " ;
QFile config ( file ) ;
config . open ( QIODevice : : ReadOnly ) ;
QTextStream in ( & config ) ;
checkconfig_str_val = in . readAll ( ) ;
config . close ( ) ;
}
else {
checkconfig_str_val = " " ;
}
2021-04-05 06:50:58 -07:00
}
2021-12-26 16:08:21 -08:00
QString readFile ( QString file ) {
if ( QFile : : exists ( file ) ) {
QFile fileToRead ( file ) ;
fileToRead . open ( QIODevice : : ReadOnly ) ;
QTextStream in ( & fileToRead ) ;
QString content = in . readAll ( ) ;
return content ;
}
else {
return NULL ;
}
}
2021-04-05 06:50:58 -07:00
void brightness_writeconfig ( int value ) {
std : : ofstream fhandler ;
fhandler . open ( " .config/03-brightness/config " ) ;
fhandler < < value ;
fhandler . close ( ) ;
}
2021-07-16 13:41:36 -07:00
void warmth_writeconfig ( int value ) {
std : : ofstream fhandler ;
fhandler . open ( " .config/03-brightness/config-warmth " ) ;
fhandler < < value ;
fhandler . close ( ) ;
}
2021-06-28 12:26:04 -07:00
int get_brightness ( ) {
2022-04-02 13:49:18 -07:00
if ( global : : deviceID = = " n613 \n " ) {
2021-06-28 12:26:04 -07:00
string_checkconfig_ro ( " .config/03-brightness/config " ) ;
int brightness ;
if ( checkconfig_str_val = = " " ) {
brightness = 0 ;
}
else {
brightness = checkconfig_str_val . toInt ( ) ;
}
return brightness ;
}
else {
2022-04-06 20:24:16 -07:00
if ( QFile : : exists ( " /var/run/brightness " ) ) {
QFile brightness ( " /var/run/brightness " ) ;
brightness . open ( QIODevice : : ReadOnly ) ;
QString valuestr = brightness . readAll ( ) ;
int value = valuestr . toInt ( ) ;
brightness . close ( ) ;
return value ;
}
else {
return 0 ;
}
2021-06-28 12:26:04 -07:00
}
return 0 ;
}
2021-04-05 06:50:58 -07:00
void get_battery_level ( ) {
2022-05-23 12:24:21 -07:00
QString batteryLevelFileQstr ;
if ( global : : deviceID = = " kt \n " ) {
QFile batt_level_file ( " /sys/devices/system/yoshi_battery/yoshi_battery0/battery_capacity " ) ;
if ( batt_level_file . exists ( ) ) {
batt_level_file . open ( QIODevice : : ReadOnly ) ;
batt_level = batt_level_file . readAll ( ) ;
batt_level = batt_level . trimmed ( ) ;
batt_level_int = batt_level . toInt ( ) ;
batt_level = batt_level . append ( " % " ) ;
batt_level_file . close ( ) ;
}
2021-12-25 07:36:38 -08:00
}
else {
2022-05-23 12:24:21 -07:00
QFile batt_level_file ( " /sys/devices/platform/pmic_battery.1/power_supply/mc13892_bat/capacity " ) ;
if ( batt_level_file . exists ( ) ) {
batt_level_file . open ( QIODevice : : ReadOnly ) ;
batt_level = batt_level_file . readAll ( ) ;
batt_level = batt_level . trimmed ( ) ;
batt_level_int = batt_level . toInt ( ) ;
batt_level = batt_level . append ( " % " ) ;
batt_level_file . close ( ) ;
}
else {
batt_level_int = 100 ;
batt_level = " 100% " ;
}
2021-12-25 07:36:38 -08:00
}
2021-04-05 06:50:58 -07:00
}
void writeconfig ( std : : string file , std : : string config ) {
2021-09-05 06:49:37 -07:00
std : : ofstream fhandler ;
fhandler . open ( file ) ;
fhandler < < config < < std : : boolalpha < < checked_box < < std : : endl ;
fhandler . close ( ) ;
2021-04-05 06:50:58 -07:00
}
bool checkconfig_match ( QString file , std : : string pattern ) {
QFile config ( file ) ;
config . open ( QIODevice : : ReadWrite ) ;
QTextStream in ( & config ) ;
const QString content = in . readAll ( ) ;
std : : string contentstr = content . toStdString ( ) ;
// Thanks to https://stackoverflow.com/questions/22516463/how-do-i-find-a-complete-word-not-part-of-it-in-a-string-in-c
std : : regex r ( " \\ b " + pattern + " \\ b " ) ;
std : : smatch m ;
if ( std : : regex_search ( contentstr , m , r ) ) {
return true ;
}
else {
return false ;
}
config . close ( ) ;
return 0 ;
} ;
2021-04-22 04:38:54 -07:00
bool isBatteryLow ( ) {
// Checks if battery level is under 15% of total capacity.
get_battery_level ( ) ;
if ( batt_level_int < = 15 ) {
return true ;
}
else {
return false ;
}
return 0 ;
}
bool isBatteryCritical ( ) {
// Checks if the battery level is critical (i.e. <= 5%)
get_battery_level ( ) ;
if ( batt_level_int < = 5 ) {
2022-04-06 20:24:16 -07:00
QString function = __func__ ; log ( function + " : Battery is at a critical charge level! " , " functions " ) ;
2021-04-22 04:38:54 -07:00
return true ;
}
else {
return false ;
}
return 0 ;
}
2021-06-27 10:28:41 -07:00
void zeroBrightness ( ) {
2022-04-02 13:49:18 -07:00
if ( global : : deviceID ! = " n613 \n " ) {
2021-06-27 10:28:41 -07:00
set_brightness ( 0 ) ;
}
else {
set_brightness_ntxio ( 0 ) ;
}
}
2021-04-22 04:38:54 -07:00
void poweroff ( bool splash ) {
2022-04-10 18:37:33 -07:00
log ( " Powering off " , " functions " ) ;
2021-04-22 04:38:54 -07:00
if ( splash = = true ) {
2021-05-28 05:36:24 -07:00
QString prog ( " /sbin/poweroff " ) ;
2021-04-22 04:38:54 -07:00
QStringList args ;
QProcess * proc = new QProcess ( ) ;
proc - > start ( prog , args ) ;
2021-08-29 12:05:07 -07:00
proc - > waitForFinished ( ) ;
proc - > deleteLater ( ) ;
2021-04-22 04:38:54 -07:00
}
else {
2021-05-28 05:36:24 -07:00
QString prog ( " /sbin/poweroff " ) ;
2021-04-22 04:38:54 -07:00
QStringList args ;
2021-05-28 05:36:24 -07:00
args < < " no_splash " ;
2021-04-22 04:38:54 -07:00
QProcess * proc = new QProcess ( ) ;
proc - > start ( prog , args ) ;
2021-08-29 12:05:07 -07:00
proc - > waitForFinished ( ) ;
proc - > deleteLater ( ) ;
2021-04-22 04:38:54 -07:00
}
}
void reboot ( bool splash ) {
2022-04-10 18:37:33 -07:00
log ( " Rebooting " , " functions " ) ;
2021-04-22 04:38:54 -07:00
if ( splash = = true ) {
2021-06-20 10:31:24 -07:00
QString prog ( " /sbin/reboot " ) ;
2021-04-22 04:38:54 -07:00
QStringList args ;
2021-06-14 11:31:49 -07:00
if ( global : : kobox : : resetKoboxUserDataBool = = true ) {
args < < " splash " < < " reset_kobox " ;
}
2021-04-22 04:38:54 -07:00
QProcess * proc = new QProcess ( ) ;
proc - > start ( prog , args ) ;
2021-08-29 12:05:07 -07:00
proc - > waitForFinished ( ) ;
proc - > deleteLater ( ) ;
2021-04-22 04:38:54 -07:00
}
else {
2021-06-20 10:31:24 -07:00
QString prog ( " /sbin/reboot " ) ;
2021-04-22 04:38:54 -07:00
QStringList args ;
2021-06-14 11:31:49 -07:00
if ( global : : kobox : : resetKoboxUserDataBool = = true ) {
args < < " no_splash " < < " reset_kobox " ;
}
else {
args < < " no_splash " ;
}
2021-04-22 04:38:54 -07:00
QProcess * proc = new QProcess ( ) ;
proc - > start ( prog , args ) ;
2021-08-29 12:05:07 -07:00
proc - > waitForFinished ( ) ;
proc - > deleteLater ( ) ;
2021-04-22 04:38:54 -07:00
}
}
2021-05-26 05:33:40 -07:00
void getUID ( ) {
2021-05-26 05:06:50 -07:00
QString prog ( " dd " ) ;
QStringList args ;
args < < " if=/dev/mmcblk0 " < < " bs=512 " < < " skip=1 " < < " count=1 " < < " status=none " ;
QProcess * proc = new QProcess ( ) ;
proc - > start ( prog , args ) ;
proc - > waitForFinished ( ) ;
2021-05-26 05:33:40 -07:00
deviceUID = proc - > readAllStandardOutput ( ) ;
deviceUID = deviceUID . left ( 256 ) ;
2021-08-29 12:05:07 -07:00
proc - > deleteLater ( ) ;
2021-05-26 05:06:50 -07:00
}
2021-06-14 09:24:20 -07:00
void getKernelVersion ( ) {
QString prog ( " uname " ) ;
QStringList args ;
args < < " -r " ;
QProcess * proc = new QProcess ( ) ;
proc - > start ( prog , args ) ;
proc - > waitForFinished ( ) ;
kernelVersion = proc - > readAllStandardOutput ( ) ;
2021-06-23 05:16:04 -07:00
kernelVersion = kernelVersion . trimmed ( ) ;
2021-06-26 16:29:51 -07:00
2022-02-15 19:47:10 -08:00
proc - > deleteLater ( ) ;
2021-06-26 16:29:51 -07:00
setDefaultWorkDir ( ) ;
2022-02-20 17:03:40 -08:00
string_writeconfig ( " /external_root/run/initrd-fifo " , " get_kernel_build_id \n " ) ;
QThread : : msleep ( 100 ) ;
string_writeconfig ( " /external_root/run/initrd-fifo " , " get_kernel_commit \n " ) ;
2021-06-23 05:16:04 -07:00
QThread : : msleep ( 100 ) ;
2021-06-26 16:29:51 -07:00
2022-02-20 17:03:40 -08:00
string_checkconfig_ro ( " /external_root/run/kernel_build_id " ) ;
2021-06-23 05:16:04 -07:00
QString kernelBuildID = checkconfig_str_val . trimmed ( ) ;
kernelVersion . append ( " , build " ) ;
kernelVersion . append ( kernelBuildID ) ;
2022-02-20 17:03:40 -08:00
string_checkconfig_ro ( " /external_root/run/kernel_commit " ) ;
QString kernelCommit = checkconfig_str_val . trimmed ( ) ;
kernelVersion . append ( " , commit " ) ;
kernelVersion . append ( kernelCommit ) ;
2021-06-14 09:24:20 -07:00
}
2021-07-20 20:27:32 -07:00
QString getConnectionInformation ( ) {
QString getIpProg ( " sh " ) ;
QStringList getIpArgs ;
2022-04-02 13:49:18 -07:00
if ( global : : deviceID ! = " n437 \n " ) {
2022-02-18 08:06:09 -08:00
getIpArgs < < " -c " < < " /sbin/ifconfig eth0 | grep 'inet addr' | cut -d: -f2 | awk '{print $1}' " ;
}
else {
getIpArgs < < " -c " < < " /sbin/ifconfig wlan0 | grep 'inet addr' | cut -d: -f2 | awk '{print $1}' " ;
}
2021-07-20 20:27:32 -07:00
QProcess * getIpProc = new QProcess ( ) ;
getIpProc - > start ( getIpProg , getIpArgs ) ;
getIpProc - > waitForFinished ( ) ;
QString ipAddress = getIpProc - > readAllStandardOutput ( ) ;
2021-08-18 17:11:18 -07:00
if ( ipAddress = = " " ) {
ipAddress = " Not available " ;
}
2021-08-29 12:05:07 -07:00
getIpProc - > deleteLater ( ) ;
2021-07-20 20:27:32 -07:00
return ipAddress ;
}
2021-06-08 05:03:46 -07:00
void getSystemInfo ( ) {
getUID ( ) ;
2021-06-14 09:24:20 -07:00
getKernelVersion ( ) ;
global : : systemInfoText = " <b>InkBox OS version " ;
2021-06-08 05:03:46 -07:00
string_checkconfig_ro ( " /external_root/opt/isa/version " ) ;
global : : systemInfoText . append ( checkconfig_str_val ) ;
2022-07-17 23:40:32 -07:00
global : : systemInfoText . append ( " </b><br>Copyright <font face='Inter'>©</font> 2021-2022 Nicolas Mailloux and contributors " ) ;
2022-02-20 21:01:03 -08:00
global : : systemInfoText . append ( " <br><b>Git:</b> " ) ;
global : : systemInfoText . append ( GIT_VERSION ) ;
2021-06-20 14:32:25 -07:00
global : : systemInfoText . append ( " <br><b>Device UID:</b> " ) ;
2021-06-08 05:03:46 -07:00
global : : systemInfoText . append ( deviceUID ) ;
2021-06-20 14:32:25 -07:00
global : : systemInfoText . append ( " <br><b>Kernel version:</b> " ) ;
2021-06-14 09:24:20 -07:00
global : : systemInfoText . append ( kernelVersion ) ;
2021-06-23 05:16:04 -07:00
global : : systemInfoText . append ( " <br><b>Device:</b> " ) ;
2022-04-02 13:49:18 -07:00
QString device = global : : deviceID . trimmed ( ) ;
2021-06-23 05:16:04 -07:00
global : : systemInfoText . append ( device ) ;
2021-07-20 20:27:32 -07:00
QString ipAddress = getConnectionInformation ( ) ;
global : : systemInfoText . append ( " <br><b>IP address: </b> " ) ;
global : : systemInfoText . append ( ipAddress ) ;
2021-06-08 05:03:46 -07:00
}
2021-06-14 11:31:49 -07:00
void resetKoboxUserData ( ) {
2022-04-10 18:37:33 -07:00
log ( " Resetting KoBox user data " , " functions " ) ;
2021-06-14 11:31:49 -07:00
global : : kobox : : resetKoboxUserDataBool = true ;
reboot ( true ) ;
}
2021-06-20 10:31:24 -07:00
QString findEpubMetadata ( QString book_file , QString metadata ) {
2022-04-10 18:37:33 -07:00
log ( " Finding ePUB metadata, query: " + metadata , " functions " ) ;
2021-06-20 10:31:24 -07:00
setDefaultWorkDir ( ) ;
QString prog ( " sh " ) ;
QStringList args ;
args < < " find_epub_metadata.sh " < < book_file < < metadata ;
QProcess * proc = new QProcess ( ) ;
proc - > start ( prog , args ) ;
proc - > waitForFinished ( ) ;
QString returnedMetadata = proc - > readAllStandardOutput ( ) ;
2022-04-06 20:24:16 -07:00
QString function = __func__ ; log ( function + " : ePUB metadata is: " + returnedMetadata , " functions " ) ;
2021-06-20 10:31:24 -07:00
return returnedMetadata ;
}
2021-08-29 12:05:07 -07:00
void defineDefaultPageSize ( int fileType ) {
/* fileType can be:
* 0 : ePUB
* 1 : PDF
*/
if ( fileType = = 0 ) {
2022-04-02 13:49:18 -07:00
if ( global : : deviceID = = " n705 \n " ) {
2021-08-29 12:05:07 -07:00
defaultEpubPageHeight = 365 ;
defaultEpubPageWidth = 365 ;
}
2022-05-22 12:38:02 -07:00
else if ( global : : deviceID = = " n905 \n " or global : : deviceID = = " kt \n " ) {
2021-08-29 12:05:07 -07:00
defaultEpubPageHeight = 425 ;
defaultEpubPageWidth = 425 ;
}
2022-04-03 17:23:49 -07:00
else if ( global : : deviceID = = " n613 \n " or global : : deviceID = = " n236 \n " or global : : deviceID = = " n437 \n " or global : : deviceID = = " n306 \n " or global : : deviceID = = " emu \n " ) {
2021-08-29 12:05:07 -07:00
defaultEpubPageHeight = 450 ;
defaultEpubPageWidth = 450 ;
}
2022-04-02 13:49:18 -07:00
else if ( global : : deviceID = = " n873 \n " ) {
2021-08-29 12:05:07 -07:00
defaultEpubPageHeight = 525 ;
defaultEpubPageWidth = 525 ;
}
2022-04-06 20:24:16 -07:00
QString function = __func__ ;
log ( function + " : Defined default ePUB page height to " + QString : : number ( defaultEpubPageHeight ) , " functions " ) ;
log ( function + " : Defined default ePUB page width to " + QString : : number ( defaultEpubPageWidth ) , " functions " ) ;
2021-06-26 07:21:07 -07:00
}
2021-08-29 12:05:07 -07:00
else if ( fileType = = 1 ) {
2022-05-22 12:38:02 -07:00
if ( global : : deviceID = = " n705 \n " or global : : deviceID = = " n905 \n " or global : : deviceID = = " kt \n " ) {
2022-04-16 16:40:30 -07:00
if ( global : : reader : : pdfOrientation = = 0 ) {
defaultPdfPageHeight = 750 ;
defaultPdfPageWidth = 550 ;
}
else {
defaultPdfPageHeight = 550 ;
defaultPdfPageWidth = 750 ;
}
2021-08-29 12:05:07 -07:00
}
2022-04-03 17:23:49 -07:00
else if ( global : : deviceID = = " n613 \n " or global : : deviceID = = " n236 \n " or global : : deviceID = = " n306 \n " or global : : deviceID = = " emu \n " ) {
2022-04-16 16:40:30 -07:00
if ( global : : reader : : pdfOrientation = = 0 ) {
defaultPdfPageHeight = 974 ;
defaultPdfPageWidth = 708 ;
}
else {
defaultPdfPageHeight = 708 ;
defaultPdfPageWidth = 974 ;
}
2021-08-29 12:05:07 -07:00
}
2022-04-02 13:49:18 -07:00
else if ( global : : deviceID = = " n437 \n " ) {
2022-04-16 16:40:30 -07:00
if ( global : : reader : : pdfOrientation = = 0 ) {
defaultPdfPageHeight = 1398 ;
defaultPdfPageWidth = 1022 ;
}
else {
defaultPdfPageHeight = 1022 ;
defaultPdfPageWidth = 1398 ;
}
2022-02-06 19:49:06 -08:00
}
2022-04-02 13:49:18 -07:00
else if ( global : : deviceID = = " n873 \n " ) {
2022-04-16 16:40:30 -07:00
if ( global : : reader : : pdfOrientation = = 0 ) {
defaultPdfPageHeight = 1630 ;
defaultPdfPageWidth = 1214 ;
}
else {
defaultPdfPageHeight = 1214 ;
defaultPdfPageWidth = 1630 ;
}
2021-08-29 12:05:07 -07:00
}
2022-04-06 20:24:16 -07:00
QString function = __func__ ;
log ( function + " Defined default PDF page height to " + QString : : number ( defaultPdfPageHeight ) , " functions " ) ;
log ( function + " Defined default PDF page width to " + QString : : number ( defaultPdfPageWidth ) , " functions " ) ;
2021-07-10 22:08:38 -07:00
}
2021-06-20 19:57:10 -07:00
}
2021-06-28 12:26:04 -07:00
void pre_set_brightness ( int brightnessValue ) {
2022-05-22 12:38:02 -07:00
if ( global : : deviceID = = " n705 \n " or global : : deviceID = = " n905 \n " or global : : deviceID = = " n873 \n " or global : : deviceID = = " n236 \n " or global : : deviceID = = " n437 \n " or global : : deviceID = = " n306 \n " or global : : deviceID = = " kt \n " ) {
2021-06-28 12:26:04 -07:00
set_brightness ( brightnessValue ) ;
}
2022-04-02 13:49:18 -07:00
else if ( global : : deviceID = = " n613 \n " ) {
2021-06-28 12:26:04 -07:00
set_brightness_ntxio ( brightnessValue ) ;
}
else {
set_brightness ( brightnessValue ) ;
}
}
void cinematicBrightness ( int value , int mode ) {
2022-04-15 19:28:25 -07:00
/* mode can be 0, 1, or 2, respectively:
2021-06-28 12:26:04 -07:00
* 0 : Bring UP brightness
* 1 : Bring DOWN brightness
2022-04-15 19:28:25 -07:00
* 2 : Auto ; smooth brightness transition between two brightness levels
2021-06-28 12:26:04 -07:00
*/
2022-05-22 12:38:02 -07:00
if ( global : : deviceID ! = " n705 \n " & & global : : deviceID ! = " n905 \n " & & global : : deviceID ! = " kt \n " ) {
2022-04-16 16:40:30 -07:00
QString function = __func__ ; log ( function + " : Setting brightness to " + QString : : number ( value ) , " functions " ) ;
}
2021-06-28 12:26:04 -07:00
if ( mode = = 0 ) {
int brightness = 0 ;
while ( brightness ! = value ) {
brightness = brightness + 1 ;
pre_set_brightness ( brightness ) ;
2021-06-28 13:13:44 -07:00
QThread : : msleep ( 30 ) ;
2021-06-28 12:26:04 -07:00
}
}
2022-04-15 19:28:25 -07:00
else if ( mode = = 1 ) {
2021-06-28 12:26:04 -07:00
int brightness = get_brightness ( ) ;
while ( brightness ! = 0 ) {
brightness = brightness - 1 ;
pre_set_brightness ( brightness ) ;
2021-06-28 13:13:44 -07:00
QThread : : msleep ( 30 ) ;
2021-06-28 12:26:04 -07:00
}
}
2022-04-15 19:28:25 -07:00
else if ( mode = = 2 ) {
int brightness = get_brightness ( ) ;
if ( brightness < = value ) {
while ( brightness ! = value ) {
brightness = brightness + 1 ;
pre_set_brightness ( brightness ) ;
QThread : : msleep ( 30 ) ;
}
}
else if ( brightness > = value ) {
while ( brightness ! = value ) {
brightness = brightness - 1 ;
pre_set_brightness ( brightness ) ;
QThread : : msleep ( 30 ) ;
}
}
}
2021-06-28 12:26:04 -07:00
}
2021-07-14 15:23:54 -07:00
bool connectToNetwork ( QString essid , QString passphrase ) {
2022-04-16 16:40:30 -07:00
log ( " Connecting to network ' " + essid + " ' " , " functions " ) ;
2021-07-14 15:23:54 -07:00
std : : string essid_str = essid . toStdString ( ) ;
std : : string passphrase_str = passphrase . toStdString ( ) ;
string_writeconfig ( " /run/wifi_network_essid " , essid_str ) ;
string_writeconfig ( " /run/wifi_network_passphrase " , passphrase_str ) ;
string_writeconfig ( " /opt/ibxd " , " connect_to_wifi_network \n " ) ;
int connectionSuccessful = 0 ;
while ( connectionSuccessful = = 0 ) {
if ( QFile : : exists ( " /run/wifi_connected_successfully " ) ) {
if ( checkconfig ( " /run/wifi_connected_successfully " ) = = true ) {
QFile : : remove ( " /run/wifi_connected_successfully " ) ;
2021-07-14 15:27:39 -07:00
connectionSuccessful = 1 ;
2021-08-19 05:23:18 -07:00
global : : network : : isConnected = true ;
2021-09-06 12:14:32 -07:00
setDefaultWorkDir ( ) ;
string_writeconfig ( " .config/17-wifi_connection_information/essid " , essid_str ) ;
string_writeconfig ( " .config/17-wifi_connection_information/passphrase " , passphrase_str ) ;
2022-04-06 20:24:16 -07:00
QString function = __func__ ; log ( function + " : Connection successful " , " functions " ) ;
2021-07-14 15:23:54 -07:00
return true ;
}
else {
QFile : : remove ( " /run/wifi_connected_successfully " ) ;
2021-07-14 15:27:39 -07:00
connectionSuccessful = 0 ;
2021-08-19 05:23:18 -07:00
global : : network : : isConnected = false ;
2022-04-06 20:24:16 -07:00
QString function = __func__ ; log ( function + " : Connection failed " , " functions " ) ;
2021-07-14 15:23:54 -07:00
return false ;
}
}
else {
QThread : : msleep ( 100 ) ;
}
}
}
2021-07-16 13:41:36 -07:00
int get_warmth ( ) {
QString sysfsWarmthPath ;
2022-04-02 13:49:18 -07:00
if ( global : : deviceID = = " n873 \n " ) {
2021-07-16 13:41:36 -07:00
sysfsWarmthPath = " /sys/class/backlight/lm3630a_led/color " ;
}
string_checkconfig_ro ( sysfsWarmthPath ) ;
int warmthValue = checkconfig_str_val . toInt ( ) ;
warmthValue = 10 - warmthValue ;
return warmthValue ;
}
void set_warmth ( int warmthValue ) {
// Value 0 gives a warmer lighting than value 10
warmthValue = 10 - warmthValue ;
std : : string warmthValueStr = std : : to_string ( warmthValue ) ;
std : : string sysfsWarmthPath ;
2022-04-02 13:49:18 -07:00
if ( global : : deviceID = = " n873 \n " ) {
2021-07-16 13:41:36 -07:00
sysfsWarmthPath = " /sys/class/backlight/lm3630a_led/color " ;
}
string_writeconfig ( sysfsWarmthPath , warmthValueStr ) ;
}
2021-08-19 05:23:18 -07:00
void installUpdate ( ) {
2022-04-15 17:27:58 -07:00
log ( " Installing update package " , " functions " ) ;
2021-08-19 05:23:18 -07:00
string_writeconfig ( " /mnt/onboard/onboard/.inkbox/can_really_update " , " true " ) ;
string_writeconfig ( " /external_root/opt/update/will_update " , " true " ) ;
string_writeconfig ( " /external_root/boot/flags/WILL_UPDATE " , " true " ) ;
reboot ( true ) ;
}
2021-11-14 18:22:58 -08:00
bool getEncFSStatus ( ) {
2021-11-14 19:23:09 -08:00
return checkconfig ( " /external_root/run/encfs_mounted " ) ;
2021-11-14 18:22:58 -08:00
}
2022-02-12 20:54:46 -08:00
bool isUsbPluggedIn ( ) {
2022-05-23 12:24:21 -07:00
if ( global : : deviceID = = " kt \n " ) {
if ( readFile ( " /sys/devices/system/yoshi_battery/yoshi_battery0/battery_status " ) = = " 1 \n " ) {
return 1 ;
}
else {
return 0 ;
}
}
else {
2022-05-22 12:38:02 -07:00
// Thanks to https://github.com/koreader/KoboUSBMS/blob/2efdf9d920c68752b2933f21c664dc1afb28fc2e/usbms.c#L148-L158
int ntxfd ;
if ( ( ntxfd = open ( " /dev/ntx_io " , O_RDWR ) ) = = - 1 ) {
fprintf ( stderr , " Error opening ntx_io device \n " ) ;
}
unsigned long ptr = 0U ;
ioctl ( ntxfd , 108 , & ptr ) ;
close ( ntxfd ) ;
return ! ! ptr ;
2022-02-12 20:54:46 -08:00
}
}
2022-04-16 16:40:30 -07:00
int testPing ( bool blocking ) {
2022-03-23 20:41:14 -07:00
QProcess * pingProcess = new QProcess ( ) ;
2022-04-16 16:40:30 -07:00
if ( blocking = = true ) {
QString pingProg = " ping " ;
QStringList pingArgs ;
pingArgs < < " -c " < < " 1 " < < " 1.1.1.1 " ;
pingProcess - > start ( pingProg , pingArgs ) ;
pingProcess - > waitForFinished ( ) ;
int exitCode = pingProcess - > exitCode ( ) ;
pingProcess - > deleteLater ( ) ;
if ( exitCode = = 0 ) {
global : : network : : isConnected = true ;
}
else {
global : : network : : isConnected = false ;
}
return exitCode ;
}
2022-05-15 16:18:45 -07:00
/* For some reason, implementing a non-blocking version of this functions triggers a "terminate called without an active exception" error with a platform plugin compiled with a newer GCC 11 toolchain. The problem has been solved by transplanting this function into the related area which uses it.
2022-04-16 16:40:30 -07:00
else {
QString pingProg = " sh " ;
QStringList pingArgs ;
pingArgs < < " /mnt/onboard/.adds/inkbox/test_ping.sh " ;
pingProcess - > startDetached ( pingProg , pingArgs ) ;
}
2022-05-15 16:18:45 -07:00
*/
2022-03-23 20:41:14 -07:00
pingProcess - > deleteLater ( ) ;
2022-04-16 16:40:30 -07:00
}
bool getTestPingResults ( ) {
// To be used when the testPing() function is used in non-blocking mode.
if ( QFile : : exists ( " /run/test_ping_status " ) ) {
if ( checkconfig ( " /run/test_ping_status " ) = = true ) {
global : : network : : isConnected = true ;
return true ;
}
else {
global : : network : : isConnected = false ;
return false ;
}
}
else {
global : : network : : isConnected = false ;
return false ;
2022-03-23 20:41:14 -07:00
}
}
2022-06-18 06:26:52 -07:00
void updateUserAppsMainJsonFile ( ) {
QDirIterator appsDir ( " /mnt/onboard/onboard/.apps " , QDirIterator : : NoIteratorFlags ) ;
QFile newJsonFile = QFile { " /mnt/onboard/onboard/.apps/apps.json " } ;
QJsonDocument newJsonDocument ;
QJsonArray array ;
while ( appsDir . hasNext ( ) )
{
QDir dir ( appsDir . next ( ) ) ;
if ( dir . exists ( ) = = true ) {
if ( dir . path ( ) . split ( " / " ) . last ( ) . contains ( " . " ) = = false ) {
QFile jsonSmall = QFile { dir . path ( ) + " /app.json " } ;
if ( jsonSmall . exists ( ) = = true ) {
jsonSmall . open ( QIODevice : : ReadOnly | QIODevice : : Text ) ;
QString jsonString = jsonSmall . readAll ( ) ;
jsonSmall . close ( ) ;
QJsonDocument jsonSmallDoc = QJsonDocument : : fromJson ( jsonString . toUtf8 ( ) ) ;
if ( jsonSmallDoc [ " app " ] . isObject ( ) = = true ) {
QJsonObject jsonSmallMainObj = jsonSmallDoc [ " app " ] . toObject ( ) ;
array . append ( jsonSmallMainObj ) ;
}
else {
log ( " Error: User application ' " + appsDir . path ( ) + " ''s JSON file descriptor is missing main object 'app' " , " main " ) ;
}
}
else {
QString message = " User application ' " + appsDir . path ( ) + " ' does not contain any 'app.json' file: " ;
message . append ( jsonSmall . fileName ( ) ) ;
log ( message , " main " ) ;
}
}
}
}
// https://forum.qt.io/topic/104791/how-i-can-create-json-format-in-qt/5
QJsonObject root ;
root [ " list " ] = array ;
newJsonDocument . setObject ( root ) ;
newJsonFile . open ( QFile : : WriteOnly | QFile : : Text | QFile : : Truncate ) ;
newJsonFile . write ( newJsonDocument . toJson ( ) ) ;
newJsonFile . flush ( ) ;
newJsonFile . close ( ) ;
}
void updateUserAppsSmallJsonFiles ( ) {
QFile jsonFile = QFile { " /mnt/onboard/onboard/.apps/apps.json " } ;
jsonFile . open ( QIODevice : : ReadOnly | QIODevice : : Text ) ;
QString fileRead = jsonFile . readAll ( ) ;
jsonFile . close ( ) ;
QJsonDocument jsonDocument = QJsonDocument : : fromJson ( fileRead . toUtf8 ( ) ) ;
if ( jsonDocument [ " list " ] . isArray ( ) = = true ) {
QJsonArray jsonArray = jsonDocument [ " list " ] . toArray ( ) ;
for ( QJsonValueRef refJsonObject : jsonArray ) {
QJsonObject jsonMainObject = refJsonObject . toObject ( ) ;
QString appName = jsonMainObject [ " Name " ] . toString ( ) ;
// This needs to be here and not at the beggining of this function because it is an iterator
QDirIterator appsDir ( " /mnt/onboard/onboard/.apps " , QDirIterator : : NoIteratorFlags ) ;
while ( appsDir . hasNext ( ) ) {
QDir dir ( appsDir . next ( ) ) ;
if ( dir . exists ( ) = = true ) {
if ( dir . path ( ) . split ( " / " ) . last ( ) . toLower ( ) . contains ( appName . toLower ( ) ) = = true ) {
QJsonObject root ;
root [ " app " ] = refJsonObject . toObject ( ) ; ;
QJsonDocument newJsonDocument ;
newJsonDocument . setObject ( root ) ;
QFile newSmallJson = QFile { dir . path ( ) + " / " + " app.json " } ;
newSmallJson . open ( QIODevice : : ReadWrite ) ;
QTextStream stream ( & newSmallJson ) ;
stream < < newJsonDocument . toJson ( ) < < Qt : : endl ;
newSmallJson . flush ( ) ;
newSmallJson . close ( ) ;
}
}
}
}
}
}
2022-06-28 23:15:13 -07:00
QByteArray fileChecksum ( const QString & fileName , QCryptographicHash : : Algorithm hashAlgorithm ) {
QFile f ( fileName ) ;
if ( f . open ( QFile : : ReadOnly ) ) {
QCryptographicHash hash ( hashAlgorithm ) ;
if ( hash . addData ( & f ) ) {
return hash . result ( ) ;
}
}
}
2022-07-06 11:24:23 -07:00
QJsonObject getBookMetadata ( int bookID ) {
// Read library database from file
QFile database ( global : : localLibrary : : databasePath ) ;
QByteArray data ;
if ( database . open ( QIODevice : : ReadOnly ) ) {
data = database . readAll ( ) ;
database . close ( ) ;
}
else {
QString function = __func__ ; log ( function + " : Failed to open local library database file for reading at ' " + database . fileName ( ) + " ' " , " functions " ) ;
}
// Parse JSON data
QJsonObject jsonObject = QJsonDocument : : fromJson ( qUncompress ( QByteArray : : fromBase64 ( data ) ) ) . object ( ) ;
QJsonArray jsonArrayList = jsonObject [ " database " ] . toArray ( ) ;
return jsonArrayList . at ( bookID - 1 ) . toObject ( ) ;
}
2022-07-12 09:34:36 -07:00
float determineYIncrease ( ) {
if ( global : : deviceID = = " n705 \n " or global : : deviceID = = " n905 \n " ) {
return 2 ;
}
else if ( global : : deviceID = = " n613 \n " or global : : deviceID = = " n236 \n " or global : : deviceID = = " n306 \n " ) {
return 2.6 ;
}
else if ( global : : deviceID = = " n437 \n " or global : : deviceID = = " n873 \n " ) {
return 3 ;
}
else {
return 2 ;
}
}
2021-04-05 06:50:58 -07:00
}
2021-07-16 13:41:36 -07:00
2021-04-05 06:50:58 -07:00
# endif // FUNCTIONS_H