mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-04 16:56:53 +08:00
* signal when data have been published * parsing of publishing JSON object * utility functions
51 lines
1.6 KiB
C++
51 lines
1.6 KiB
C++
/* Copyright (C) 2015
|
|
* swift project Community / Contributors
|
|
*
|
|
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
|
* directory of this distribution and at http://www.swift-project.org/license.html. No part of swift project,
|
|
* including this file, may be copied, modified, propagated, or distributed except according to the terms
|
|
* contained in the LICENSE file.
|
|
*/
|
|
|
|
//! \file
|
|
|
|
#ifndef BLACKMISC_DATASTOREUTILITY_H
|
|
#define BLACKMISC_DATASTOREUTILITY_H
|
|
|
|
#include "blackmisc/blackmiscexport.h"
|
|
#include "blackmisc/statusmessagelist.h"
|
|
#include "timestampbased.h"
|
|
#include "propertyindex.h"
|
|
#include "variant.h"
|
|
|
|
namespace BlackMisc
|
|
{
|
|
/*!
|
|
* Class with datastore related utilities
|
|
*/
|
|
class BLACKMISC_EXPORT CDatastoreUtility
|
|
{
|
|
public:
|
|
//! No constructor
|
|
CDatastoreUtility() = delete;
|
|
|
|
//! DB Bool value to bool
|
|
static bool dbBoolStringToBool(const QString &dbBool);
|
|
|
|
//! Bool to DB yes/no
|
|
static const QString &boolToDbYN(bool v);
|
|
|
|
//! Extract key from string like "MyAircraft (33)"
|
|
static int extractIntegerKey(const QString &stringWithKey);
|
|
|
|
//! Parse a timestamp object
|
|
static QDateTime parseTimestamp(const QString ×tamp);
|
|
|
|
//! Get data from a DB response
|
|
static bool parseSwiftPublishResponse(const QString &jsonResponse, BlackMisc::Simulation::CAircraftModelList &publishedModels, BlackMisc::Simulation::CAircraftModelList &skippedModels, BlackMisc::CStatusMessageList &messages);
|
|
};
|
|
|
|
} // namespace
|
|
|
|
#endif // guard
|