KiCad PCB EDA Suite
Loading...
Searching...
No Matches
generate_footprint_info.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) 2017 Chris Pavlina <[email protected]>
5 * Copyright The 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#include <ki_exception.h>
23#include <string_utils.h>
24#include <footprint.h>
26#include <wx/log.h>
27
28
29static const wxString DescriptionFormat = wxT(
30 "<b>__NAME__</b>"
31 "<br>__DESC__"
32 "<hr><table border=0>"
33 "__FIELDS__"
34 "</table>" );
35
36static const wxString KeywordsFormat = wxT(
37 "<tr>"
38 " <td><b>" + _( "Keywords" ) + "</b></td>"
39 " <td>__KEYWORDS__</td>"
40 "</tr>" );
41
42static const wxString DocFormat = wxT(
43 "<tr>"
44 " <td><b>" + _( "Documentation" ) + "</b></td>"
45 " <td><a href=\"__HREF__\">__TEXT__</a></td>"
46 "</tr>" );
47
48
49std::optional<wxString> GetFootprintDocumentationURL( const FOOTPRINT& aFootprint )
50{
51 // Footprints have now a field (FIELD_T::DATASHEET) containing the url datasheet
52 // But old footprints did not have this field, so this fiels can be empty.
53 // So we use this field is not empty, and if empty see if the documentation has an URL
54 const PCB_FIELD* data_field = aFootprint.GetField( FIELD_T::DATASHEET );
55 wxString url = data_field->GetText();
56
57 if( !url.IsEmpty() )
58 return url;
59
60 wxString desc = aFootprint.GetLibDescription();
61
62 // It is (or was) currently common practice to store a documentation link in the description.
63 size_t idx = desc.find( wxT( "http:" ) );
64
65 if( idx == wxString::npos )
66 idx = desc.find( wxT( "https:" ) );
67
68 if( idx == wxString::npos )
69 return std::nullopt;
70
71 int nesting = 0;
72
73 for( auto chit = desc.begin() + idx; chit != desc.end(); ++chit )
74 {
75 int ch = *chit;
76
77 // Break on invalid URI characters
78 if( ch <= 0x20 || ch >= 0x7F || ch == '"' )
79 break;
80
81 // Check for nesting parentheses, e.g. (Body style from: https://this.url/part.pdf)
82 if( ch == '(' )
83 ++nesting;
84 else if( ch == ')' && --nesting < 0 )
85 break;
86
87 url += ch;
88 }
89
90 // Trim trailing punctuation
91 static wxString punct = wxS( ".,:;" );
92
93 if( punct.find( url.Last() ) != wxString::npos )
94 url = url.Left( url.Length() - 1 );
95
96 if( url.IsEmpty() )
97 return std::nullopt;
98
99 return url;
100}
101
102
104{
105public:
108 m_adapter( aAdapter ),
109 m_lib_id( aLibId ),
110 m_footprint( nullptr )
111 { }
112
117 {
118 wxCHECK_RET( m_adapter, wxT( "Footprint library table pointer is not valid" ) );
119
120 if( !m_lib_id.IsValid() )
121 return;
122
123 try
124 {
125 m_footprint = m_adapter->LoadFootprint( m_lib_id, false );
126 }
127 catch( const IO_ERROR& ioe )
128 {
129 wxLogError( _( "Error loading footprint %s from library '%s'." ) + wxS( "\n%s" ),
130 m_lib_id.GetLibItemName().wx_str(),
131 m_lib_id.GetLibNickname().wx_str(),
132 ioe.What() );
133 return;
134 }
135
136 if( m_footprint )
137 {
138 wxString name = m_lib_id.GetLibItemName();
139 wxString desc = m_footprint->GetLibDescription();
140 wxString keywords = m_footprint->GetKeywords();
141 wxString doc;
142
143 if( std::optional<wxString> url = GetFootprintDocumentationURL( *m_footprint ) )
144 doc = *url;
145
146 wxString esc_desc = EscapeHTML( UnescapeString( desc ) );
147
148 // Add line breaks
149 esc_desc.Replace( wxS( "\n" ), wxS( "<br>" ) );
150
151 // Add links
152 esc_desc = LinkifyHTML( esc_desc );
153
154 m_html.Replace( "__DESC__", esc_desc );
155 m_html.Replace( "__NAME__", EscapeHTML( name ) );
156
157 wxString keywordsHtml = KeywordsFormat;
158 keywordsHtml.Replace( "__KEYWORDS__", EscapeHTML( keywords ) );
159
160 wxString docHtml = DocFormat;
161 docHtml.Replace( "__HREF__", EscapeHTML( doc ) );
162
163 if( doc.Length() > 75 )
164 doc = doc.Left( 72 ) + wxT( "..." );
165
166 docHtml.Replace( "__TEXT__", EscapeHTML( doc ) );
167
168 m_html.Replace( "__FIELDS__", keywordsHtml + docHtml );
169 }
170 }
171
175 wxString GetHtml()
176 {
177 return m_html;
178 }
179
180private:
181 wxString m_html;
183 LIB_ID const m_lib_id;
184
186};
187
188
189wxString GenerateFootprintInfo( FOOTPRINT_LIBRARY_ADAPTER* aAdapter, LIB_ID const& aLibId )
190{
191 FOOTPRINT_INFO_GENERATOR gen( aAdapter, aLibId );
192 gen.GenerateHtml();
193 return gen.GetHtml();
194}
const char * name
virtual const wxString & GetText() const
Return the string associated with the text object.
Definition eda_text.h:98
void GenerateHtml()
Generate the HTML internally.
FOOTPRINT_LIBRARY_ADAPTER * m_adapter
FOOTPRINT_INFO_GENERATOR(FOOTPRINT_LIBRARY_ADAPTER *aAdapter, LIB_ID const &aLibId)
wxString GetHtml() const
Return the generated HTML.
wxString GetHtml()
Return the generated HTML.
An interface to the global shared library manager that is schematic-specific and linked to one projec...
wxString GetLibDescription() const
Definition footprint.h:278
PCB_FIELD * GetField(FIELD_T aFieldType)
Return a mandatory field in this footprint.
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()
A logical library item identifier and consists of various portions much like a URI.
Definition lib_id.h:49
#define _(s)
static const wxString KeywordsFormat
static const wxString DescriptionFormat
static const wxString KeywordsFormat
static const wxString DescriptionFormat
wxString GenerateFootprintInfo(FOOTPRINT_LIBRARY_ADAPTER *aAdapter, LIB_ID const &aLibId)
Return an HTML page describing a LIB_ID in a footprint library.
static const wxString DocFormat
std::optional< wxString > GetFootprintDocumentationURL(const FOOTPRINT &aFootprint)
Get a URL to the documentation for a LIB_ID in a #FP_LIB_TABLE.
wxString EscapeHTML(const wxString &aString)
Return a new wxString escaped for embedding in HTML.
wxString UnescapeString(const wxString &aSource)
wxString LinkifyHTML(wxString aStr)
Wraps links in HTML tags.
@ DATASHEET
name of datasheet