199 lines
4.9 KiB
C++
199 lines
4.9 KiB
C++
// Merge/Merge.cpp
|
|
//
|
|
// Copyright (C) 2015-2026 Jaye Evins <evins@snaught.com>
|
|
//
|
|
// This file is part of gLabels-qt.
|
|
//
|
|
// gLabels-qt 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.
|
|
//
|
|
// gLabels-qt 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 gLabels-qt. If not, see <http://www.gnu.org/licenses/>.
|
|
//
|
|
|
|
|
|
#include "Merge.hpp"
|
|
|
|
|
|
namespace glabels::merge
|
|
{
|
|
|
|
///
|
|
/// Constructor
|
|
///
|
|
Merge::Merge( const Merge* merge )
|
|
: mId(merge->mId),
|
|
mSource(merge->mSource),
|
|
mRecordList(merge->mRecordList)
|
|
{
|
|
}
|
|
|
|
|
|
///
|
|
/// Get id
|
|
///
|
|
QString Merge::id() const
|
|
{
|
|
return mId;
|
|
}
|
|
|
|
|
|
///
|
|
/// Get source
|
|
///
|
|
QString Merge::source() const
|
|
{
|
|
return mSource;
|
|
}
|
|
|
|
|
|
///
|
|
/// Set source
|
|
///
|
|
void Merge::setSource( const QString& source )
|
|
{
|
|
mSource = source;
|
|
|
|
// Clear out any old records
|
|
mRecordList.clear();
|
|
|
|
open();
|
|
for ( Record record = readNextRecord(); !record.isEmpty(); record = readNextRecord() )
|
|
{
|
|
mRecordList.push_back( record );
|
|
}
|
|
close();
|
|
|
|
emit sourceChanged();
|
|
}
|
|
|
|
|
|
///
|
|
/// Reload source
|
|
///
|
|
void Merge::reloadSource()
|
|
{
|
|
// temporary map of original selections
|
|
QMap<QString,bool> origSelectionMap;
|
|
|
|
for ( auto& record : mRecordList )
|
|
{
|
|
origSelectionMap[ record[ primaryKey() ] ] = record.isSelected();
|
|
}
|
|
|
|
// Clear the original records
|
|
mRecordList.clear();
|
|
|
|
// Read the new records, preserve any original selections
|
|
open();
|
|
for ( Record record = readNextRecord(); !record.isEmpty(); record = readNextRecord() )
|
|
{
|
|
auto key = record[ primaryKey() ];
|
|
auto it = origSelectionMap.find( key );
|
|
if ( it != origSelectionMap.end() )
|
|
{
|
|
record.setSelected( it.value() );
|
|
}
|
|
|
|
mRecordList.push_back( record );
|
|
}
|
|
close();
|
|
|
|
emit sourceChanged();
|
|
}
|
|
|
|
|
|
///
|
|
/// Get record list
|
|
///
|
|
const QList<Record>& Merge::recordList( ) const
|
|
{
|
|
return mRecordList;
|
|
}
|
|
|
|
|
|
///
|
|
/// Select/unselect i'th record
|
|
///
|
|
void Merge::setSelected( int i, bool state )
|
|
{
|
|
if ( (i >= 0) && (i < mRecordList.size()) )
|
|
{
|
|
mRecordList[i].setSelected( state );
|
|
emit selectionChanged();
|
|
}
|
|
}
|
|
|
|
|
|
///
|
|
/// Select all records
|
|
///
|
|
void Merge::selectAll()
|
|
{
|
|
for ( auto& record : mRecordList )
|
|
{
|
|
record.setSelected( true );
|
|
}
|
|
emit selectionChanged();
|
|
}
|
|
|
|
|
|
///
|
|
/// Unselect all records
|
|
///
|
|
void Merge::unselectAll()
|
|
{
|
|
for ( auto& record : mRecordList )
|
|
{
|
|
record.setSelected( false );
|
|
}
|
|
emit selectionChanged();
|
|
}
|
|
|
|
|
|
///
|
|
/// Return count of selected records
|
|
///
|
|
int Merge::nSelectedRecords() const
|
|
{
|
|
int count = 0;
|
|
|
|
for ( const auto& record : mRecordList )
|
|
{
|
|
if ( record.isSelected() )
|
|
{
|
|
count++;
|
|
}
|
|
}
|
|
|
|
return count;
|
|
}
|
|
|
|
|
|
///
|
|
/// Return list of selected records
|
|
///
|
|
const QList<Record> Merge::selectedRecords() const
|
|
{
|
|
QList<Record> list;
|
|
|
|
for ( const auto& record : mRecordList )
|
|
{
|
|
if ( record.isSelected() )
|
|
{
|
|
list.append( record );
|
|
}
|
|
}
|
|
|
|
return list;
|
|
}
|
|
|
|
}
|