2017-03-02 22:53:49 +00:00
|
|
|
/*
|
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2017 Cirilo Bernardo <cirilo.bernardo@gmail.com>
|
2020-12-21 15:17:52 +00:00
|
|
|
* Copyright (C) 2020 KiCad Developers, see AUTHORS.txt for contributors.
|
2017-03-02 22:53:49 +00:00
|
|
|
*
|
|
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2017-07-04 09:07:36 +00:00
|
|
|
/**
|
|
|
|
* @file streamwrapper.h
|
|
|
|
*/
|
2017-03-02 22:53:49 +00:00
|
|
|
|
|
|
|
#ifndef STREAMWRAPPER_H
|
|
|
|
#define STREAMWRAPPER_H
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
|
2018-10-20 07:22:24 +00:00
|
|
|
#if defined( _WIN32 ) && defined( __GNUC__ )
|
2020-12-21 15:17:52 +00:00
|
|
|
#include <ext/stdio_filebuf.h>
|
2017-03-02 22:53:49 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
#define OSTREAM std::ostream
|
2017-03-04 10:10:58 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
#define OPEN_OSTREAM( var, name ) \
|
|
|
|
kicad::stream var##_BUF_; \
|
|
|
|
std::ostream& var = *var##_BUF_.Open( name, std::ios_base::out | std::ios_base::trunc \
|
|
|
|
| std::ios_base::binary )
|
2017-03-02 22:53:49 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
#define OPEN_ISTREAM( var, name ) \
|
|
|
|
kicad::stream var##_BUF_; \
|
|
|
|
std::istream& var = *var##_BUF_.Open( name, std::ios_base::in | std::ios_base::binary )
|
2017-03-02 22:53:49 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
#define OPEN_IOSTREAM( var, name ) \
|
|
|
|
kicad::stream var##_BUF_; \
|
|
|
|
std::iostream& var = *var##_BUF_.Open( name, std::ios_base::out | std::ios_base::in \
|
|
|
|
| std::ios_base::binary )
|
2017-03-02 22:53:49 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
#define CLOSE_STREAM( var ) var##_BUF_.Close()
|
2017-03-02 22:53:49 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
/**
|
|
|
|
* \namespace kicad
|
|
|
|
*/
|
|
|
|
namespace kicad
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* This is equivalent to std::stream but accepts UTF8 chars in filenames.
|
|
|
|
*/
|
|
|
|
class stream
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
__gnu_cxx::stdio_filebuf<char>* m_buf;
|
|
|
|
std::iostream* m_stream;
|
2017-03-02 22:53:49 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
public:
|
|
|
|
stream();
|
|
|
|
virtual ~stream();
|
2017-03-02 22:53:49 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
std::iostream* Open( const char* aFileName, std::ios_base::openmode aMode );
|
|
|
|
void Close( void );
|
2017-03-02 22:53:49 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
std::iostream* GetStream( void );
|
|
|
|
};
|
|
|
|
} // namespace kicad
|
2017-03-02 22:53:49 +00:00
|
|
|
|
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
#elif defined( _MSC_VER ) // defined( _WIN32 ) && defined( __GNUC__ )
|
2017-03-02 22:53:49 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
#define OSTREAM std::ofstream
|
2017-03-04 10:10:58 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
#define OPEN_OSTREAM( var, name ) \
|
|
|
|
std::ofstream var; \
|
|
|
|
var.open( wxString::FromUTF8Unchecked( name ).wc_str(), \
|
|
|
|
std::ios_base::out | std::ios_base::trunc | std::ios_base::binary )
|
2017-03-02 22:53:49 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
#define OPEN_ISTREAM( var, name ) \
|
|
|
|
std::ifstream var; \
|
|
|
|
var.open( wxString::FromUTF8Unchecked( name ).wc_str(), \
|
|
|
|
std::ios_base::in | std::ios_base::binary )
|
2017-03-02 22:53:49 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
#define OPEN_IOSTREAM( var, name ) \
|
|
|
|
std::fstream var; \
|
|
|
|
var.open( wxString::FromUTF8Unchecked( name ).wc_str(), \
|
|
|
|
std::ios_base::out | std::ios_base::in | std::ios_base::binary )
|
2017-03-02 22:53:49 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
#define CLOSE_STREAM( var ) var.close()
|
2017-03-02 22:53:49 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
#else // defined( _WIN32 ) && defined( __GNUC__ )
|
2017-03-02 22:53:49 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
#define OSTREAM std::ofstream
|
2017-03-04 10:10:58 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
#define OPEN_OSTREAM( var, name ) \
|
|
|
|
std::ofstream var; \
|
|
|
|
var.open( name, std::ios_base::out | std::ios_base::trunc )
|
2017-03-02 22:53:49 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
#define OPEN_ISTREAM( var, name ) \
|
|
|
|
std::ifstream var; \
|
|
|
|
var.open( name, std::ios_base::in )
|
2017-03-02 22:53:49 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
#define OPEN_IOSTREAM( var, name ) \
|
|
|
|
std::fstream var; \
|
|
|
|
var.open( name, std::ios_base::out | std::ios_base::in )
|
2017-03-02 22:53:49 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
#define CLOSE_STREAM( var ) var.close()
|
2017-03-02 22:53:49 +00:00
|
|
|
|
2020-12-21 15:17:52 +00:00
|
|
|
#endif // defined( _WIN32 ) && defined( __GNUC__ )
|
2017-03-02 22:53:49 +00:00
|
|
|
|
|
|
|
#endif // STREAMWRAPPER_H
|