2011-01-14 17:43:30 +00:00
|
|
|
/*
|
2011-09-30 18:15:37 +00:00
|
|
|
* This program source code file is part of KiCad, a free EDA CAD application.
|
2011-01-14 17:43:30 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2007-2010 SoftPLC Corporation, Dick Hollenbeck <dick@softplc.com>
|
2020-12-19 16:00:52 +00:00
|
|
|
* Copyright (C) 2007-2020 KiCad Developers, see change_log.txt for contributors.
|
2011-01-14 17:43:30 +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 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, you may find one here:
|
|
|
|
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
|
|
|
* or you may search the http://www.gnu.org website for the version 2 license,
|
|
|
|
* or you may write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FILTER_READER_H_
|
|
|
|
#define FILTER_READER_H_
|
|
|
|
|
2012-01-23 04:33:36 +00:00
|
|
|
#include <richio.h>
|
2021-06-04 00:26:58 +00:00
|
|
|
#include <wx/string.h>
|
2011-01-14 17:43:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2020-12-19 16:00:52 +00:00
|
|
|
* Read lines of text from another #LINE_READER but only returns non-comment lines and
|
|
|
|
* non-blank lines from its ReadLine() function.
|
2011-01-14 17:43:30 +00:00
|
|
|
*/
|
|
|
|
class FILTER_READER : public LINE_READER
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
2020-12-19 16:00:52 +00:00
|
|
|
* Does not take ownership over @a aReader so will not destroy it.
|
2011-01-14 17:43:30 +00:00
|
|
|
*/
|
2012-11-27 13:50:01 +00:00
|
|
|
FILTER_READER( LINE_READER& aReader );
|
|
|
|
|
|
|
|
~FILTER_READER();
|
2011-01-14 17:43:30 +00:00
|
|
|
|
2017-06-08 21:47:21 +00:00
|
|
|
char* ReadLine() override;
|
2011-01-14 17:43:30 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
const wxString& GetSource() const override
|
2011-01-14 17:43:30 +00:00
|
|
|
{
|
|
|
|
return reader.GetSource();
|
|
|
|
}
|
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
unsigned LineNumber() const override
|
2011-01-14 17:43:30 +00:00
|
|
|
{
|
|
|
|
return reader.LineNumber();
|
|
|
|
}
|
2020-12-19 16:00:52 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
LINE_READER& reader;
|
2011-01-14 17:43:30 +00:00
|
|
|
};
|
|
|
|
|
2012-12-28 20:52:12 +00:00
|
|
|
|
|
|
|
/**
|
2020-12-19 16:00:52 +00:00
|
|
|
* Read lines of text from another #LINE_READER but only returns non-comment lines and
|
|
|
|
* non-blank lines with leading whitespace characters (space and tab) removed from its
|
|
|
|
* ReadLine() function.
|
2012-12-28 20:52:12 +00:00
|
|
|
*/
|
|
|
|
class WHITESPACE_FILTER_READER : public LINE_READER
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
2020-12-19 16:00:52 +00:00
|
|
|
* Doe not take ownership over @a aReader, so will not destroy it.
|
2012-12-28 20:52:12 +00:00
|
|
|
*/
|
|
|
|
WHITESPACE_FILTER_READER( LINE_READER& aReader );
|
|
|
|
|
|
|
|
~WHITESPACE_FILTER_READER();
|
|
|
|
|
2017-06-08 21:47:21 +00:00
|
|
|
char* ReadLine() override;
|
2012-12-28 20:52:12 +00:00
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
const wxString& GetSource() const override
|
2012-12-28 20:52:12 +00:00
|
|
|
{
|
|
|
|
return reader.GetSource();
|
|
|
|
}
|
|
|
|
|
2016-09-24 18:53:15 +00:00
|
|
|
unsigned LineNumber() const override
|
2012-12-28 20:52:12 +00:00
|
|
|
{
|
|
|
|
return reader.LineNumber();
|
|
|
|
}
|
2020-12-19 16:00:52 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
LINE_READER& reader;
|
2012-12-28 20:52:12 +00:00
|
|
|
};
|
|
|
|
|
2011-01-14 17:43:30 +00:00
|
|
|
#endif // FILTER_READER_H_
|