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
|
/*
* Copyright (C) 2009, 2010, 2011 Nicolas Bonnefon and other contributors
*
* This file is part of glogg.
*
* glogg 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.
*
* glogg 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 glogg. If not, see <http://www.gnu.org/licenses/>.
*/
// This file implements class SavedSearch
#include <QSettings>
#include "log.h"
#include "savedsearches.h"
const int SavedSearches::SAVEDSEARCHES_VERSION = 1;
const int SavedSearches::maxNumberOfRecentSearches = 50;
SavedSearches::SavedSearches() : savedSearches_()
{
qRegisterMetaTypeStreamOperators<SavedSearches>( "SavedSearches" );
}
void SavedSearches::addRecent( const QString& text )
{
// We're not interested in blank lines
if ( text.isEmpty() )
return;
// Remove any copy of the about to be added text
savedSearches_.removeAll( text );
// Add at the front
savedSearches_.push_front( text );
// Trim the list if it's too long
while (savedSearches_.size() > maxNumberOfRecentSearches)
savedSearches_.pop_back();
}
QStringList SavedSearches::recentSearches() const
{
return savedSearches_;
}
//
// Operators for serialization
//
QDataStream& operator<<( QDataStream& out, const SavedSearches& object )
{
LOG(logDEBUG) << "<<operator from SavedSearches";
out << object.savedSearches_;
return out;
}
QDataStream& operator>>( QDataStream& in, SavedSearches& object )
{
LOG(logDEBUG) << ">>operator from SavedSearches";
in >> object.savedSearches_;
return in;
}
//
// Persistable virtual functions implementation
//
void SavedSearches::saveToStorage( QSettings& settings ) const
{
LOG(logDEBUG) << "SavedSearches::saveToStorage";
settings.beginGroup( "SavedSearches" );
// Remove everything in case the array is shorter than the previous one
settings.remove("");
settings.setValue( "version", SAVEDSEARCHES_VERSION );
settings.beginWriteArray( "searchHistory" );
for (int i = 0; i < savedSearches_.size(); ++i) {
settings.setArrayIndex( i );
settings.setValue( "string", savedSearches_.at( i ) );
}
settings.endArray();
settings.endGroup();
}
void SavedSearches::retrieveFromStorage( QSettings& settings )
{
LOG(logDEBUG) << "SavedSearches::retrieveFromStorage";
savedSearches_.clear();
if ( settings.contains( "SavedSearches/version" ) ) {
// Unserialise the "new style" stored history
settings.beginGroup( "SavedSearches" );
if ( settings.value( "version" ) == SAVEDSEARCHES_VERSION ) {
int size = settings.beginReadArray( "searchHistory" );
for (int i = 0; i < size; ++i) {
settings.setArrayIndex(i);
QString search = settings.value( "string" ).toString();
savedSearches_.append( search );
}
settings.endArray();
}
else {
LOG(logERROR) << "Unknown version of FilterSet, ignoring it...";
}
settings.endGroup();
}
else {
LOG(logWARNING) << "Trying to import legacy (<=0.8.2) saved searches...";
SavedSearches tmp_saved_searches =
settings.value( "savedSearches" ).value<SavedSearches>();
*this = tmp_saved_searches;
LOG(logWARNING) << "...imported searches: "
<< savedSearches_.count() << " elements";
// Remove the old key once migration is done
settings.remove( "savedSearches" );
// And replace it with the new one
saveToStorage( settings );
settings.sync();
}
}
|