[installation] Init with inital config for global
This commit is contained in:
117
include/seiscomp/io/records/shrecord.h
Normal file
117
include/seiscomp/io/records/shrecord.h
Normal file
@ -0,0 +1,117 @@
|
||||
/***************************************************************************
|
||||
* 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. *
|
||||
***************************************************************************/
|
||||
|
||||
|
||||
|
||||
//! HACK
|
||||
//! INCOMPLETE IMPLEMENTATION OF SEISMIC HANDLER FORMAT ( SH )
|
||||
//! HACK
|
||||
|
||||
|
||||
#ifndef SEISCOMP_IO_RECORDS_SHRECORD_H
|
||||
#define SEISCOMP_IO_RECORDS_SHRECORD_H
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
#include <ostream>
|
||||
|
||||
#include <seiscomp/core/record.h>
|
||||
#include <seiscomp/core/array.h>
|
||||
#include <seiscomp/core.h>
|
||||
|
||||
|
||||
namespace Seiscomp {
|
||||
|
||||
namespace IO {
|
||||
|
||||
|
||||
DEFINE_SMARTPOINTER(SHRecord);
|
||||
|
||||
class SC_SYSTEM_CORE_API SHRecord : public Record {
|
||||
DECLARE_SC_CLASS(SHRecord);
|
||||
|
||||
public:
|
||||
//! Default Constructor
|
||||
// SHRecord();
|
||||
|
||||
//! Initializing Constructor
|
||||
SHRecord(std::string net="AB", std::string sta="ABC",
|
||||
std::string loc="", std::string cha="XYZ",
|
||||
Core::Time stime=Core::Time(), double fsamp=0., int tqual=-1,
|
||||
Array::DataType dt = Array::DOUBLE, Hint h = DATA_ONLY);
|
||||
|
||||
//! Copy Constructor
|
||||
SHRecord(const SHRecord& rec);
|
||||
SHRecord(const Record& rec);
|
||||
|
||||
//! Destructor
|
||||
virtual ~SHRecord();
|
||||
|
||||
//! Assignment operator
|
||||
SHRecord& operator=(const SHRecord& rec);
|
||||
|
||||
//! Returns the data samples if the data is available; otherwise 0
|
||||
Array* data();
|
||||
|
||||
//! Returns the data samples if the data is available; otherwise 0
|
||||
const Array* data() const;
|
||||
|
||||
const Array* raw() const;
|
||||
|
||||
//! Sets the data sample array. The ownership goes over to the record.
|
||||
void setData(Array* data);
|
||||
|
||||
//! Sets the data sample array.
|
||||
void setData(int size, const void *data, Array::DataType datatype);
|
||||
|
||||
//! Frees the memory allocated for the data samples.
|
||||
void saveSpace() const {}
|
||||
|
||||
//! Returns a deep copy of the calling object.
|
||||
SHRecord* copy() const;
|
||||
|
||||
void read(std::istream &in);
|
||||
void write(std::ostream &out);
|
||||
|
||||
|
||||
private:
|
||||
ArrayPtr _data;
|
||||
|
||||
};
|
||||
|
||||
class SC_SYSTEM_CORE_API SHOutput {
|
||||
public:
|
||||
SHOutput() : _ofstream(0) {}
|
||||
SHOutput(const std::string& filename);
|
||||
SHOutput(const Record *rec);
|
||||
|
||||
~SHOutput();
|
||||
|
||||
bool put(const SHRecord *rec);
|
||||
|
||||
private:
|
||||
std::string _filename;
|
||||
std::ofstream *_ofstream;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user