profiles.xml and user/chanels.xml are never used. commented out respective code

This commit is contained in:
LoudSnorer 2023-09-08 05:22:12 -04:00
parent c2a7e2b059
commit 000caca665
5 changed files with 26 additions and 4 deletions

View File

@ -26,6 +26,7 @@
#define EXTRA_ASSERTS 1 #define EXTRA_ASSERTS 1
#if 0
QDataStream & operator<<(QDataStream & stream, const DottedLine & dot) QDataStream & operator<<(QDataStream & stream, const DottedLine & dot)
{ {
stream << dot.code; stream << dot.code;
@ -46,6 +47,7 @@ QDataStream & operator>>(QDataStream & stream, DottedLine & dot)
dot.type = (ChannelCalcType)tmp; dot.type = (ChannelCalcType)tmp;
return stream; return stream;
} }
#endif
QColor darken(QColor color, float p) QColor darken(QColor color, float p)
{ {

View File

@ -1049,6 +1049,8 @@ Profile *Get()
return profiles[getUserName()];; return profiles[getUserName()];;
} }
//profiles.xml is never read so it does not need to be saved.
#if 0
void saveProfileList() void saveProfileList()
{ {
QString filename = p_pref->Get("{home}/profiles.xml"); QString filename = p_pref->Get("{home}/profiles.xml");
@ -1078,6 +1080,7 @@ void saveProfileList()
file.close(); file.close();
} }
#endif
int CleanupProfile(Profile *prof) int CleanupProfile(Profile *prof)
{ {
@ -1157,7 +1160,8 @@ void Scan()
p_pref->Save(); p_pref->Save();
} }
// Update profiles.xml for mobile version // Update profiles.xml for mobile version
saveProfileList(); // profiles.xml is never read so it does not need to be saved.
// saveProfileList();
} }
@ -1993,7 +1997,8 @@ const quint16 chandata_version = 1;
void Profile::saveChannels() void Profile::saveChannels()
{ {
// First save the XML version for Mobile versions // First save the XML version for Mobile versions
schema::channel.Save(Get("{DataFolder}/") + "channels.xml"); // Profile/User/chanels.xml is not read so it does not need to be saved
// schema::channel.Save(Get("{DataFolder}/") + "channels.xml");
QString filename = Get("{DataFolder}/") + "channels.dat"; QString filename = Get("{DataFolder}/") + "channels.dat";
QFile f(filename); QFile f(filename);

View File

@ -47,7 +47,7 @@ void resetChannels();
ChannelList channel; ChannelList channel;
Channel EmptyChannel; Channel EmptyChannel;
Channel *SessionEnabledChannel; // SessionEnabledChannel is not used//Channel *SessionEnabledChannel;
QHash<QString, ChanType> ChanTypes; QHash<QString, ChanType> ChanTypes;
QHash<QString, DataType> DataTypes; QHash<QString, DataType> DataTypes;
@ -91,11 +91,13 @@ void init()
schema_initialized = true; schema_initialized = true;
EmptyChannel = Channel(0, DATA, MT_UNKNOWN, DAY, "Empty", "Empty", "Empty Channel", "", ""); EmptyChannel = Channel(0, DATA, MT_UNKNOWN, DAY, "Empty", "Empty", "Empty Channel", "", "");
#if 0 // SessionEnabledChannel is not used
SessionEnabledChannel = new Channel(1, DATA, MT_UNKNOWN, DAY, "Enabled", "Enabled", "Session Enabled", "", ""); SessionEnabledChannel = new Channel(1, DATA, MT_UNKNOWN, DAY, "Enabled", "Enabled", "Session Enabled", "", "");
channel.channels[1] = SessionEnabledChannel; channel.channels[1] = SessionEnabledChannel;
channel.names["Enabled"] = SessionEnabledChannel; channel.names["Enabled"] = SessionEnabledChannel;
SESSION_ENABLED = 1; SESSION_ENABLED = 1;
#endif // SessionEnabledChannel is not used
ChanTypes["data"] = DATA; ChanTypes["data"] = DATA;
//Types["waveform"]=WAVEFORM; //Types["waveform"]=WAVEFORM;
ChanTypes["setting"] = SETTING; ChanTypes["setting"] = SETTING;
@ -695,6 +697,7 @@ void ChannelList::add(QString group, Channel *chan)
} }
} }
#if 0 // Profile/User/chanels.xml is not read so it does not need to be saved
bool ChannelList::Save(QString filename) bool ChannelList::Save(QString filename)
{ {
if (filename.isEmpty()) if (filename.isEmpty())
@ -757,6 +760,7 @@ bool ChannelList::Save(QString filename)
return true; return true;
} }
#endif // Profile/User/chanels.xml is not read so it does not need to be saved
} // namespace } // namespace

View File

@ -274,7 +274,7 @@ void MainWindow::closeEvent(QCloseEvent * event)
QThread::msleep(1000); QThread::msleep(1000);
QApplication::processEvents(); QApplication::processEvents();
} }
schema::channel.Save(); // Profile/User/chanels.xml is not read so it does not need to be saved//schema::channel.Save();
if (p_profile) { if (p_profile) {
CloseProfile(); CloseProfile();
} }

View File

@ -142,7 +142,18 @@ void Statistics::loadRXChanges()
in >> rxitems; in >> rxitems;
{ // Bug Fix. during testing, a crash occured due to a null machie value. in saveRxChanges. out << rx.machine->loaderName()
QList<QDate> toErase;
for (auto ri = rxitems.begin(); ri != rxitems.end();++ri ) {
RXItem rxitem = ri.value();
if (rxitem.machine==0) toErase.append(ri.key());
}
for (auto date : toErase) {
rxitems.remove(date) ;
}
}
} }
void Statistics::saveRXChanges() void Statistics::saveRXChanges()
{ {
QString path = p_profile->Get("{" + STR_GEN_DataFolder + "}/RXChanges.cache" ); QString path = p_profile->Get("{" + STR_GEN_DataFolder + "}/RXChanges.cache" );