KiCad PCB EDA Suite
Loading...
Searching...
No Matches
netlist_exporter_kicad.cpp
Go to the documentation of this file.
1/*
2 * This program source code file is part of KiCad, a free EDA CAD application.
3 *
4 * Copyright (C) 1992-2013 jp.charras at wanadoo.fr
5 * Copyright (C) 2013 SoftPLC Corporation, Dick Hollenbeck <[email protected]>
6 * Copyright The KiCad Developers, see AUTHORS.TXT for contributors.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 */
21
23
24#include <algorithm>
25#include <confirm.h>
26
27#include <connection_graph.h>
28#include <richio.h>
29#include <xnode.h>
30
31
32bool NETLIST_EXPORTER_KICAD::WriteNetlist( const wxString& aOutFileName, unsigned aNetlistOptions,
33 REPORTER& aReporter )
34{
35 try
36 {
37 PRETTIFIED_FILE_OUTPUTFORMATTER formatter( aOutFileName );
38 Format( &formatter, GNL_ALL | GNL_OPT_KICAD );
39 formatter.Finish();
40 }
41
42 catch( const IO_ERROR& ioe )
43 {
44 aReporter.Report( ioe.What(), RPT_SEVERITY_ERROR );
45 return false;
46 }
47
48 return true;
49}
50
51
53{
54 std::unique_ptr<XNODE> xroot( makeRoot( aCtl ) );
55
56 xroot->Format( aOut );
57}
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
virtual const wxString What() const
A composite of Problem() and Where()
void Format(OUTPUTFORMATTER *aOutputFormatter, int aCtl)
Output this s-expression netlist into aOutputFormatter.
bool WriteNetlist(const wxString &aOutFileName, unsigned aNetlistOptions, REPORTER &aReporter) override
Write netlist to aOutFileName.
XNODE * makeRoot(unsigned aCtl=GNL_ALL)
Build the entire document tree for the generic export.
An interface used to output 8 bit text in a convenient way.
Definition richio.h:291
bool Finish() override
Runs prettification over the buffered bytes, writes them to the sibling temp file,...
Definition richio.cpp:696
A pure virtual class used to derive REPORTER objects from.
Definition reporter.h:71
virtual REPORTER & Report(const wxString &aText, SEVERITY aSeverity=RPT_SEVERITY_UNDEFINED)
Report a string with a given severity.
Definition reporter.h:100
This file is part of the common library.
#define GNL_ALL
@ GNL_OPT_KICAD
@ RPT_SEVERITY_ERROR