KiCad PCB EDA Suite
Loading...
Searching...
No Matches
board_file_utils.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) 2019-2021 KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, you may find one here:
18 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
19 * or you may search the http://www.gnu.org website for the version 2 license,
20 * or you may write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
22 */
23
25
26// For PCB parsing
29#include <richio.h>
30
31#include <board.h>
32#include <footprint.h>
33
35
36namespace KI_TEST
37{
38
39#ifndef QA_PCBNEW_DATA_LOCATION
40 #define QA_PCBNEW_DATA_LOCATION "???"
41#endif
42
44{
45 const char* env = std::getenv( "KICAD_TEST_PCBNEW_DATA_DIR" );
46 std::string fn;
47
48 if( !env )
49 {
50 // Use the compiled-in location of the data dir (i.e. where the files were at build time)
52 }
53 else
54 {
55 // Use whatever was given in the env var
56 fn = env;
57 }
58
59 // Ensure the string ends in / to force a directory interpretation
60 fn += "/";
61
62 return fn;
63}
64
65
66void DumpBoardToFile( BOARD& board, const std::string& aFilename )
67{
69 io.SaveBoard( aFilename, &board );
70}
71
72
73std::unique_ptr<BOARD_ITEM> ReadBoardItemFromStream( std::istream& aStream )
74{
75 // Take input from stdin
77 reader.SetStream( aStream );
78
79 PCB_IO_KICAD_SEXPR_PARSER parser( &reader, nullptr, nullptr );
80 std::unique_ptr<BOARD_ITEM> board;
81
82 try
83 {
84 board.reset( parser.Parse() );
85 }
86 catch( const IO_ERROR& e )
87 {
88 throw e;
89 }
90
91 return board;
92}
93
94
95std::unique_ptr<BOARD> ReadBoardFromFileOrStream( const std::string& aFilename,
96 std::istream& aFallback )
97{
98 std::istream* in_stream = nullptr;
99 std::ifstream file_stream;
100
101 if( aFilename.empty() )
102 {
103 // no file, read stdin
104 in_stream = &aFallback;
105 }
106 else
107 {
108 file_stream.open( aFilename );
109
110 if( !file_stream.is_open() )
111 {
112 return nullptr;
113 }
114
115 in_stream = &file_stream;
116 }
117
118 return ReadItemFromStream<BOARD>( *in_stream );
119}
120
121
122std::unique_ptr<FOOTPRINT> ReadFootprintFromFileOrStream( const std::string& aFilename,
123 std::istream& aFallback )
124{
125 std::istream* in_stream = nullptr;
126 std::ifstream file_stream;
127
128 if( aFilename.empty() )
129 {
130 // no file, read stdin
131 in_stream = &aFallback;
132 }
133 else
134 {
135 file_stream.open( aFilename );
136
137 if( !file_stream.is_open() )
138 {
139 return nullptr;
140 }
141
142 in_stream = &file_stream;
143 }
144
145 return ReadItemFromStream<FOOTPRINT>( *in_stream );
146}
147
148
149
150} // namespace KI_TEST
#define QA_PCBNEW_DATA_LOCATION
General utilities for PCB file IO for QA programs.
Information pertinent to a Pcbnew printed circuit board.
Definition: board.h:282
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
Definition: ki_exception.h:77
Read a Pcbnew s-expression formatted LINE_READER object and returns the appropriate BOARD_ITEM object...
A #PLUGIN derivation for saving and loading Pcbnew s-expression formatted files.
void SaveBoard(const wxString &aFileName, BOARD *aBoard, const STRING_UTF8_MAP *aProperties=nullptr) override
Write aBoard to a storage file in a format that this PCB_IO implementation knows about or it can be u...
LINE_READER that wraps a given std::istream instance.
void SetStream(std::istream &aStream)
Set the stream for this line reader.
std::string GetPcbnewTestDataDir()
Utility which returns a path to the data directory where the test board files are stored.
std::unique_ptr< BOARD > ReadBoardFromFileOrStream(const std::string &aFilename, std::istream &aFallback)
Read a board from a file, or another stream, as appropriate.
std::unique_ptr< FOOTPRINT > ReadFootprintFromFileOrStream(const std::string &aFilename, std::istream &aFallback)
void DumpBoardToFile(BOARD &board, const std::string &aFilename)
Utility function to simply write a Board out to a file.
std::unique_ptr< BOARD_ITEM > ReadBoardItemFromStream(std::istream &aStream)
Utility function to read a BOARD_ITEM (probably a FOOTPRINT or a BOARD) from a file.
Pcbnew s-expression file format parser definition.