You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

109 lines
3.0 KiB
C++

/***************************************************************************
* Copyright (C) gempa GmbH *
* All rights reserved. *
* Contact: gempa GmbH (seiscomp-dev@gempa.de) *
* *
* GNU Affero General Public License Usage *
* This file may be used under the terms of the GNU Affero *
* Public License version 3.0 as published by the Free Software Foundation *
* and appearing in the file LICENSE included in the packaging of this *
* file. Please review the following information to ensure the GNU Affero *
* Public License version 3.0 requirements will be met: *
* https://www.gnu.org/licenses/agpl-3.0.html. *
* *
* Other Usage *
* Alternatively, this file may be used in accordance with the terms and *
* conditions contained in a signed written agreement between you and *
* gempa GmbH. *
***************************************************************************/
#ifndef SEISCOMP_QML_XML_H
#define SEISCOMP_QML_XML_H
#include <string>
#include <seiscomp/datamodel/types.h>
#include <seiscomp/io/xml/exporter.h>
#include <seiscomp/io/xml/handler.h>
namespace Seiscomp {
namespace DataModel {
/** @version 15.1 */
const char *QML_NS();
/** @version 15.1 */
const char *QML_NS_RT();
/** @version 15.1 */
const char *QML_NS_BED();
/** @version 15.1 */
const char *QML_NS_BED_RT();
/** @version 15.1 */
constexpr const char *QML_SMIPrefixEnvVar = "QML_SMI_PREFIX";
/** @version 15.1 */
const std::string &QML_SMIPrefix();
}
namespace QML {
class TypeMapper {
public:
/**
* @brief Maps an QML event type string to the EventType enumeration.
*
* If the conversion fails, an ValueException is thrown.
*
* @param str The input string
* @return The mapped event type or an exception
*/
static DataModel::EventType EventTypeFromString(const std::string &str);
/**
* @brief Maps an EventType to an QML event type string.
* @param type The EventType
* @return The QML event type string
*/
static std::string EventTypeToString(DataModel::EventType type);
/**
* @brief Maps an EventTypeCertainty to an QML event type string.
* @param type The EventTypeCertainty
* @return The QML event type certainty string
*/
static std::string EventTypeCertaintyToString(DataModel::EventTypeCertainty type);
};
class Exporter : public IO::XML::Exporter {
public:
Exporter();
protected:
void collectNamespaces(Core::BaseObject *) override;
};
class RTExporter : public IO::XML::Exporter {
public:
RTExporter();
protected:
void collectNamespaces(Core::BaseObject *) override;
};
}
}
#endif