mirror of
https://github.com/KLayout/klayout.git
synced 2026-09-02 10:57:51 +02:00
121 lines
2.3 KiB
C++
121 lines
2.3 KiB
C++
|
|
/*
|
|
|
|
KLayout Layout Viewer
|
|
Copyright (C) 2006-2019 Matthias Koefferlein
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
#ifndef HDR_dbGDS2Writer
|
|
#define HDR_dbGDS2Writer
|
|
|
|
#include "dbPluginCommon.h"
|
|
#include "dbGDS2WriterBase.h"
|
|
#include "dbWriterTools.h"
|
|
#include "tlProgress.h"
|
|
|
|
namespace db
|
|
{
|
|
|
|
/**
|
|
* @brief A GDS2 writer abstraction
|
|
*/
|
|
|
|
class DB_PLUGIN_PUBLIC GDS2Writer
|
|
: public db::GDS2WriterBase
|
|
{
|
|
public:
|
|
/**
|
|
* @brief Instantiate the writer
|
|
*/
|
|
GDS2Writer ();
|
|
|
|
protected:
|
|
/**
|
|
* @brief Write a byte
|
|
*/
|
|
void write_byte (unsigned char b);
|
|
|
|
/**
|
|
* @brief Write a record length short
|
|
*/
|
|
virtual void write_record_size (int16_t i);
|
|
|
|
/**
|
|
* @brief Write a record type short
|
|
*/
|
|
virtual void write_record (int16_t i);
|
|
|
|
/**
|
|
* @brief Write a short
|
|
*/
|
|
void write_short (int16_t i);
|
|
|
|
/**
|
|
* @brief Write a long
|
|
*/
|
|
void write_int (int32_t l);
|
|
|
|
/**
|
|
* @brief Write a double
|
|
*/
|
|
void write_double (double d);
|
|
|
|
/**
|
|
* @brief Write the time
|
|
*/
|
|
void write_time (const short *t);
|
|
|
|
/**
|
|
* @brief Write a string
|
|
*/
|
|
void write_string (const char *t);
|
|
|
|
/**
|
|
* @brief Write a string
|
|
*/
|
|
void write_string (const std::string &t);
|
|
|
|
/**
|
|
* @brief Write a string plus record
|
|
*/
|
|
void write_string_record (short record, const std::string &t);
|
|
|
|
/**
|
|
* @brief Set the stream to write the data to
|
|
*/
|
|
void set_stream (tl::OutputStream &stream)
|
|
{
|
|
mp_stream = &stream;
|
|
}
|
|
|
|
/**
|
|
* @brief Establish a checkpoint for progress reporting
|
|
*/
|
|
void progress_checkpoint ();
|
|
|
|
private:
|
|
tl::OutputStream *mp_stream;
|
|
tl::AbsoluteProgress m_progress;
|
|
};
|
|
|
|
} // namespace db
|
|
|
|
#endif
|
|
|