KiCad PCB EDA Suite
Loading...
Searching...
No Matches
board_file_utils.h
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 The 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, see <https://www.gnu.org/licenses/>.
18 */
19
20
21#ifndef QA_PCBNEW_UTILS_BOARD_FILE_UTILS__H
22#define QA_PCBNEW_UTILS_BOARD_FILE_UTILS__H
23
24#include <iostream>
25#include <memory>
26#include <string>
27
28class BOARD;
29class BOARD_ITEM;
30class FOOTPRINT;
31
36namespace KI_TEST
37{
41std::string GetPcbnewTestDataDir();
42
55void DumpBoardToFile( BOARD& aBoard, const std::string& aFilename );
56
60void DumpFootprintToFile( const FOOTPRINT& aFootprint, const std::string& aLibraryPath );
61
71std::unique_ptr<BOARD_ITEM> ReadBoardItemFromStream( std::istream& aStream );
72
79template <typename ITEM> std::unique_ptr<ITEM> ReadItemFromStream( std::istream& aStream )
80{
81 auto bi_ptr = ReadBoardItemFromStream( aStream );
82 std::unique_ptr<ITEM> downcast_ptr;
83
84 // if it's the right type, downcast and "steal" (and we'll return ownership)
85 ITEM* const tmp = dynamic_cast<ITEM*>( bi_ptr.get() );
86 if( tmp != nullptr )
87 {
88 bi_ptr.release();
89 downcast_ptr.reset( tmp );
90 }
91
92 return downcast_ptr;
93}
94
102std::unique_ptr<BOARD> ReadBoardFromFileOrStream( const std::string& aFilename,
103 std::istream& aFallback = std::cin );
104
105std::unique_ptr<FOOTPRINT> ReadFootprintFromFileOrStream( const std::string& aFilename,
106 std::istream& aFallback = std::cin );
107
108} // namespace KI_TEST
109
110#endif // QA_PCBNEW_UTILS_BOARD_FILE_UTILS__H
A base class for any item which can be embedded within the BOARD container class, and therefore insta...
Definition board_item.h:81
Information pertinent to a Pcbnew printed circuit board.
Definition board.h:372
std::string GetPcbnewTestDataDir()
Utility which returns a path to the data directory where the test board files are stored.
std::unique_ptr< ITEM > ReadItemFromStream(std::istream &aStream)
Read a specific kind of BOARD_ITEM from a stream.
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.
void DumpFootprintToFile(const FOOTPRINT &aFootprint, const std::string &aLibraryPath)
Same as DumpBoardToFile, but for footprints.
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.