File indexing completed on 2024-05-12 05:10:17

0001 /***************************************************************************
0002     Copyright (C) 2023 Robby Stephenson <robby@periapsis.org>
0003  ***************************************************************************/
0004 
0005 /***************************************************************************
0006  *                                                                         *
0007  *   This program is free software; you can redistribute it and/or         *
0008  *   modify it under the terms of the GNU General Public License as        *
0009  *   published by the Free Software Foundation; either version 2 of        *
0010  *   the License or (at your option) version 3 or any later version        *
0011  *   accepted by the membership of KDE e.V. (or its successor approved     *
0012  *   by the membership of KDE e.V.), which shall act as a proxy            *
0013  *   defined in Section 14 of version 3 of the license.                    *
0014  *                                                                         *
0015  *   This program is distributed in the hope that it will be useful,       *
0016  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
0017  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
0018  *   GNU General Public License for more details.                          *
0019  *                                                                         *
0020  *   You should have received a copy of the GNU General Public License     *
0021  *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
0022  *                                                                         *
0023  ***************************************************************************/
0024 
0025 #ifndef MAPVALUE_H
0026 #define MAPVALUE_H
0027 
0028 #include "../fieldformat.h"
0029 
0030 #include <QMetaType>
0031 #include <QVariant>
0032 
0033 namespace Tellico {
0034   // helper methods for the QVariantMaps used by the JSON importers
0035   template<typename T>
0036   QString mapValue(const QVariantMap& map, T name) {
0037     const QVariant v = map.value(QLatin1String(name));
0038     if(v.isNull())  {
0039       return QString();
0040     } else if(v.canConvert(QVariant::String)) {
0041       return v.toString();
0042     } else if(v.canConvert(QVariant::StringList)) {
0043       return v.toStringList().join(FieldFormat::delimiterString());
0044     } else {
0045       return QString();
0046     }
0047   }
0048   template<typename T, typename... Args>
0049   QString mapValue(const QVariantMap& map, T name, Args... args) {
0050     const QVariant v = map.value(QLatin1String(name));
0051     if(v.isNull())  {
0052       return QString();
0053     } else if(v.canConvert(QVariant::Map)) {
0054       return mapValue(v.toMap(), args...);
0055     } else if(v.canConvert(QVariant::List)) {
0056       QStringList values;
0057       const auto list = v.toList();
0058       for(const QVariant& v : list) {
0059         const QString s = mapValue(v.toMap(), args...);
0060         if(!s.isEmpty()) values += s;
0061       }
0062       return values.join(FieldFormat::delimiterString());
0063     } else {
0064       return QString();
0065     }
0066   }
0067 }
0068 
0069 #endif