KiCad PCB EDA Suite
Loading...
Searching...
No Matches
dialog_global_fp_lib_table_config.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 Wayne Stambaugh <[email protected]>
5 * Copyright (C) 2019 KiCad Developers, see AUTHORS.txt for contributors.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
22
23#include <confirm.h>
24#include <kiface_base.h>
25#include <kiway.h>
26
27#include "fp_lib_table.h"
28
29
31 DIALOG_GLOBAL_LIB_TABLE_CONFIG( aParent, _( "footprint" ), KIWAY::FACE_PCB )
32{
33}
34
35
37{
38}
39
40
42{
44}
45
46
48{
49 // Create an empty table if requested by the user.
50 if( m_emptyRb->GetValue() )
51 {
52 FP_LIB_TABLE emptyTable;
53
54 try
55 {
57 }
58 catch( const IO_ERROR& ioe )
59 {
60 DisplayError( this, wxString::Format( _( "Error occurred writing empty footprint "
61 "library table '%s'." ),
63 + wxS( "\n" ) + ioe.What() );
64 return false;
65 }
66
67 return true;
68 }
69
70 wxString fileName = m_filePicker1->GetPath();
71
72 if( fileName.IsEmpty() )
73 {
74 DisplayError( this, _( "Please select a footprint library table file." ) );
75 return false;
76 }
77
78 wxFileName fn = fileName;
79
80 // Make sure the footprint library table to copy actually exists.
81 if( !fn.FileExists() )
82 {
83 DisplayError( this, wxString::Format( _( "File '%s' not found." ), fn.GetFullPath() ) );
84 return false;
85 }
86
87 // Make sure the footprint library table to copy is a valid footprint library table file.
88 FP_LIB_TABLE tmpTable;
89
90 try
91 {
92 tmpTable.Load( fn.GetFullPath() );
93 }
94 catch( const IO_ERROR& ioe )
95 {
96 DisplayError( this, wxString::Format( _( "'%s' is not a valid footprint library table." ),
97 fn.GetFullPath() )
98 + wxS( "\n" ) + ioe.What() );
99 return false;
100 }
101
102 // Create the config path if it doesn't already exist.
103 wxFileName fpTableFileName = FP_LIB_TABLE::GetGlobalTableFileName();
104
105 if( !fpTableFileName.DirExists() && !fpTableFileName.Mkdir( 0x777, wxPATH_MKDIR_FULL ) )
106 {
107 DisplayError( this, wxString::Format( _( "Cannot create library table path '%s'." ),
108 fpTableFileName.GetPath() ) );
109 return false;
110 }
111
112 // Copy the global footprint library table file to the user config.
113 if( !::wxCopyFile( fn.GetFullPath(), fpTableFileName.GetFullPath() ) )
114 {
115 DisplayError( this, wxString::Format( _( "Cannot copy footprint library table from:\n"
116 "%s\n"
117 "to:\n"
118 "%s." ),
119 fn.GetFullPath(),
120 fpTableFileName.GetFullPath() ) );
121 return false;
122 }
123
124 // Load the successfully copied footprint library table file. This should not fail
125 // since the file was tested above. Check for failure anyway to keep the compiler
126 // from complaining.
127 try
128 {
130 return false;
131 }
132 catch( const IO_ERROR& ioe )
133 {
134 DisplayError( this, _( "Error loading footprint library table." )
135 + wxS( "\n" ) + ioe.What() );
136 return false;
137 }
138
139 return true;
140}
static bool LoadGlobalTable(FP_LIB_TABLE &aTable)
Load the global footprint library table into aTable.
static wxString GetGlobalTableFileName()
Hold an error message and may be used when throwing exceptions containing meaningful error messages.
Definition: ki_exception.h:77
virtual const wxString What() const
A composite of Problem() and Where()
Definition: exceptions.cpp:30
A minimalistic software bus for communications between various DLLs/DSOs (DSOs) within the same KiCad...
Definition: kiway.h:279
void Load(const wxString &aFileName)
Load the library table using the path defined by aFileName aFallBackTable.
void Save(const wxString &aFileName) const
Write this library table to aFileName in s-expression form.
void DisplayError(wxWindow *aParent, const wxString &aText, int aDisplayTime)
Display an error or warning message box with aMessage.
Definition: confirm.cpp:280
This file is part of the common library.
FP_LIB_TABLE GFootprintTable
The global footprint library table.
Definition: cvpcb.cpp:150
#define _(s)