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.
108 lines
3.7 KiB
C++
108 lines
3.7 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_SERVICES_RECORDSTREAM_COMBINED_H
|
|
#define SEISCOMP_SERVICES_RECORDSTREAM_COMBINED_H
|
|
|
|
#include <string>
|
|
#include <iostream>
|
|
#include <seiscomp/core/datetime.h>
|
|
#include <seiscomp/core/timewindow.h>
|
|
#include <seiscomp/io/recordstream.h>
|
|
#include <seiscomp/core.h>
|
|
|
|
namespace Seiscomp {
|
|
namespace RecordStream {
|
|
|
|
DEFINE_SMARTPOINTER(CombinedConnection);
|
|
|
|
class SC_SYSTEM_CORE_API CombinedConnection : public IO::RecordStream {
|
|
public:
|
|
//! C'tor
|
|
CombinedConnection();
|
|
|
|
//! Initializing Constructor
|
|
CombinedConnection(std::string serverloc);
|
|
|
|
//! Destructor
|
|
virtual ~CombinedConnection();
|
|
|
|
virtual bool setRecordType(const char*);
|
|
|
|
//! Initialize the combined connection.
|
|
virtual bool setSource(const std::string &serverloc);
|
|
|
|
//! Adds the given stream to the server connection description
|
|
virtual bool addStream(const std::string &networkCode,
|
|
const std::string &stationCode,
|
|
const std::string &locationCode,
|
|
const std::string &channelCode);
|
|
|
|
//! Adds the given stream to the server connection description
|
|
virtual bool addStream(const std::string &networkCode,
|
|
const std::string &stationCode,
|
|
const std::string &locationCode,
|
|
const std::string &channelCode,
|
|
const Seiscomp::Core::Time &startTime,
|
|
const Seiscomp::Core::Time &endTime);
|
|
|
|
//! Adds the given start time to the server connection description
|
|
virtual bool setStartTime(const Core::Time &stime);
|
|
|
|
//! Adds the given end time to the server connection description
|
|
virtual bool setEndTime(const Core::Time &etime);
|
|
|
|
//! Sets timeout
|
|
virtual bool setTimeout(int seconds);
|
|
|
|
//! Terminates the combined connection.
|
|
virtual void close();
|
|
|
|
//! Returns the data stream
|
|
virtual Record *next();
|
|
|
|
private:
|
|
void init();
|
|
|
|
private:
|
|
bool _started;
|
|
|
|
size_t _nStream;
|
|
size_t _nArchive;
|
|
size_t _nRealtime;
|
|
|
|
Core::Time _startTime;
|
|
Core::Time _endTime;
|
|
Core::Time _archiveEndTime;
|
|
Core::TimeSpan _realtimeAvailability;
|
|
|
|
std::set<StreamIdx> _tmpStreams;
|
|
IO::RecordStreamPtr _realtime;
|
|
IO::RecordStreamPtr _archive;
|
|
};
|
|
|
|
|
|
} // namespace RecordStream
|
|
} // namespace Seiscomp
|
|
|
|
|
|
#endif
|
|
|