KiCad PCB EDA Suite
Loading...
Searching...
No Matches
schematic.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 (C) 2020-2023, 2024 KiCad Developers, see AUTHORS.txt for contributors.
5 *
6 * This program is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef KICAD_SCHEMATIC_H
21#define KICAD_SCHEMATIC_H
22
23#include <eda_item.h>
24#include <embedded_files.h>
25#include <sch_sheet_path.h>
26#include <schematic_settings.h>
27
28
29class BUS_ALIAS;
31class EDA_BASE_FRAME;
32class ERC_SETTINGS;
33class PROJECT;
34class SCH_SCREEN;
35class SCH_SHEET;
36class SCH_SHEET_LIST;
37class SCH_GLOBALLABEL;
38
39
41{
42public:
44 virtual ~SCHEMATIC_IFACE() {};
45
46 virtual CONNECTION_GRAPH* ConnectionGraph() const = 0;
48 virtual void SetCurrentSheet( const SCH_SHEET_PATH& aPath ) = 0;
49 virtual SCH_SHEET_PATH& CurrentSheet() const = 0;
50 virtual wxString GetFileName() const = 0;
51 virtual PROJECT& Prj() const = 0;
52 virtual SCH_SHEET_LIST Hierarchy() const = 0;
53};
54
55class SCHEMATIC;
56
58{
59public:
61 virtual void OnSchItemsAdded( SCHEMATIC& aSch, std::vector<SCH_ITEM*>& aSchItem ) {}
62 virtual void OnSchItemsRemoved( SCHEMATIC& aSch, std::vector<SCH_ITEM*>& aSchItem ) {}
63 virtual void OnSchItemsChanged( SCHEMATIC& aSch, std::vector<SCH_ITEM*>& aSchItem ) {}
64 // This is called when the user changes to a new sheet, not when a sheet is altered.
65 // Sheet alteration events will call OnSchItems*
66 virtual void OnSchSheetChanged( SCHEMATIC& aSch ) {}
67};
68
76class SCHEMATIC : public SCHEMATIC_IFACE, public EDA_ITEM, public EMBEDDED_FILES
77{
78public:
79 SCHEMATIC( PROJECT* aPrj );
80
81 virtual ~SCHEMATIC();
82
83 virtual wxString GetClass() const override
84 {
85 return wxT( "SCHEMATIC" );
86 }
87
89 void Reset();
90
92 PROJECT& Prj() const override { return *m_project; }
93 void SetProject( PROJECT* aPrj );
94
95 const std::map<wxString, wxString>* GetProperties() { return &m_properties; }
96
98 {
99 SCH_SHEET_LIST hierarchy( m_rootSheet );
100
101 hierarchy.SortByPageNumbers();
102
103 return hierarchy;
104 }
105
107 {
108 SCH_SHEET_LIST sheets;
109 sheets.BuildSheetList( m_rootSheet, false );
110 return sheets;
111 }
112
116 SCH_SHEET_LIST Hierarchy() const override;
117
118 void RefreshHierarchy();
119
120 SCH_ITEM* GetItem( const KIID& aID, SCH_SHEET_PATH* aPathOut = nullptr ) const
121 {
122 return BuildUnorderedSheetList().GetItem( aID, aPathOut );
123 }
124
126 {
127 return *m_rootSheet;
128 }
129
138 void SetRoot( SCH_SHEET* aRootSheet );
139
141 bool IsValid() const
142 {
143 return m_rootSheet != nullptr;
144 }
145
147 SCH_SCREEN* RootScreen() const;
148
149 void GetContextualTextVars( wxArrayString* aVars ) const;
150
151 bool ResolveTextVar( const SCH_SHEET_PATH* aSheetPath, wxString* token, int aDepth ) const;
152
154 wxString GetFileName() const override;
155
156 SCH_SHEET_PATH& CurrentSheet() const override
157 {
158 return *m_currentSheet;
159 }
160
161 void SetCurrentSheet( const SCH_SHEET_PATH& aPath ) override
162 {
163 *m_currentSheet = aPath;
164 }
165
167 {
168 return m_connectionGraph;
169 }
170
172
173 ERC_SETTINGS& ErcSettings() const;
174
175 std::vector<SCH_MARKER*> ResolveERCExclusions();
176
178 const EMBEDDED_FILES* GetEmbeddedFiles() const;
179
184 std::shared_ptr<BUS_ALIAS> GetBusAlias( const wxString& aLabel ) const;
185
191 std::set<wxString> GetNetClassAssignmentCandidates();
192
198 bool ResolveCrossReference( wxString* token, int aDepth ) const;
199
200 std::map<wxString, std::set<int>>& GetPageRefsMap() { return m_labelToPageRefsMap; }
201
202 std::map<int, wxString> GetVirtualPageToSheetNamesMap() const;
203 std::map<int, wxString> GetVirtualPageToSheetPagesMap() const;
204
205 wxString ConvertRefsToKIIDs( const wxString& aSource ) const;
206 wxString ConvertKIIDsToRefs( const wxString& aSource ) const;
207
216
225
232
237 void RecomputeIntersheetRefs( const std::function<void( SCH_GLOBALLABEL* )>& aItemCallback );
238
243 {
244 m_operatingPoints.clear();
245 }
246
250 void SetOperatingPoint( const wxString& aSignal, double aValue )
251 {
252 m_operatingPoints[ aSignal ] = aValue;
253 }
254
255 wxString GetOperatingPoint( const wxString& aNetName, int aPrecision, const wxString& aRange );
256
261 void FixupJunctions();
262
266 void RecordERCExclusions();
267
272
277 void OnItemsAdded( std::vector<SCH_ITEM*>& aNewItems );
278
283 void OnItemsRemoved( std::vector<SCH_ITEM*>& aRemovedItems );
284
289 void OnItemsChanged( std::vector<SCH_ITEM*>& aItems );
290
296 void OnSchSheetChanged();
297
306 void AddListener( SCHEMATIC_LISTENER* aListener );
307
312 void RemoveListener( SCHEMATIC_LISTENER* aListener );
313
317 void RemoveAllListeners();
318
322 void EmbedFonts() override;
323
330 std::set<const SCH_SCREEN*> GetSchematicsSharedByMultipleProjects() const;
331
337 bool IsComplexHierarchy() const;
338
343
344#if defined(DEBUG)
345 void Show( int nestLevel, std::ostream& os ) const override {}
346#endif
347
348private:
349 friend class SCH_EDIT_FRAME;
350
351 template <typename Func, typename... Args>
352 void InvokeListeners( Func&& aFunc, Args&&... args )
353 {
354 for( auto&& l : m_listeners )
355 ( l->*aFunc )( std::forward<Args>( args )... );
356 }
357
359
362
370
373
378 std::map<wxString, std::set<int>> m_labelToPageRefsMap;
379
383 std::map<wxString, wxString> m_properties;
384
388 std::map<wxString, double> m_operatingPoints;
389
394
398 std::vector<SCHEMATIC_LISTENER*> m_listeners;
399};
400
401#endif
Calculate the connectivity of a schematic and generates netlists.
The base frame for deriving all KiCad main window classes.
A base class for most all the KiCad significant classes used in schematics and boards.
Definition: eda_item.h:89
Container for ERC settings.
Definition: erc_settings.h:135
Definition: kiid.h:49
Container for project specific data.
Definition: project.h:64
virtual void SetCurrentSheet(const SCH_SHEET_PATH &aPath)=0
virtual wxString GetFileName() const =0
virtual CONNECTION_GRAPH * ConnectionGraph() const =0
virtual SCH_SHEET_PATH & CurrentSheet() const =0
virtual SCH_SHEET_LIST BuildSheetListSortedByPageNumbers() const =0
virtual PROJECT & Prj() const =0
virtual ~SCHEMATIC_IFACE()
Definition: schematic.h:44
virtual SCH_SHEET_LIST Hierarchy() const =0
virtual void OnSchItemsRemoved(SCHEMATIC &aSch, std::vector< SCH_ITEM * > &aSchItem)
Definition: schematic.h:62
virtual ~SCHEMATIC_LISTENER()
Definition: schematic.h:60
virtual void OnSchItemsChanged(SCHEMATIC &aSch, std::vector< SCH_ITEM * > &aSchItem)
Definition: schematic.h:63
virtual void OnSchSheetChanged(SCHEMATIC &aSch)
Definition: schematic.h:66
virtual void OnSchItemsAdded(SCHEMATIC &aSch, std::vector< SCH_ITEM * > &aSchItem)
Definition: schematic.h:61
These are loaded from Eeschema settings but then overwritten by the project settings.
Holds all the data relating to one schematic.
Definition: schematic.h:77
void Reset()
Initialize this schematic to a blank one, unloading anything existing.
Definition: schematic.cpp:138
std::set< const SCH_SCREEN * > GetSchematicsSharedByMultipleProjects() const
Return a list of schematic files in the current project that contain instance data for multiple proje...
Definition: schematic.cpp:914
void SetLegacySymbolInstanceData()
Update the symbol value and footprint instance data for legacy designs.
Definition: schematic.cpp:620
void OnItemsAdded(std::vector< SCH_ITEM * > &aNewItems)
Must be used if Add() is used using a BULK_x ADD_MODE to generate a change event for listeners.
Definition: schematic.cpp:766
CONNECTION_GRAPH * m_connectionGraph
Holds and calculates connectivity information of this schematic.
Definition: schematic.h:372
virtual wxString GetClass() const override
Return the class name.
Definition: schematic.h:83
void SetOperatingPoint(const wxString &aSignal, double aValue)
Set operating points from a .op simulation.
Definition: schematic.h:250
SCH_SHEET_LIST m_hierarchy
Cache of the entire schematic hierarchy sorted by sheet page number.
Definition: schematic.h:393
SCH_SHEET_PATH & CurrentSheet() const override
Definition: schematic.h:156
void ResolveERCExclusionsPostUpdate()
Update markers to match recorded exclusions.
Definition: schematic.cpp:841
void RemoveListener(SCHEMATIC_LISTENER *aListener)
Remove the specified listener.
Definition: schematic.cpp:797
bool IsComplexHierarchy() const
Test if the schematic is a complex hierarchy.
Definition: schematic.cpp:949
void OnSchSheetChanged()
Notify the schematic and its listeners that the current sheet has been changed.
Definition: schematic.cpp:784
SCH_SHEET_PATH * m_currentSheet
The sheet path of the sheet currently being edited or displayed.
Definition: schematic.h:369
wxString GetOperatingPoint(const wxString &aNetName, int aPrecision, const wxString &aRange)
Definition: schematic.cpp:718
void OnItemsRemoved(std::vector< SCH_ITEM * > &aRemovedItems)
Must be used if Remove() is used using a BULK_x REMOVE_MODE to generate a change event for listeners.
Definition: schematic.cpp:772
virtual ~SCHEMATIC()
Definition: schematic.cpp:127
std::shared_ptr< BUS_ALIAS > GetBusAlias(const wxString &aLabel) const
Return a pointer to a bus alias object for the given label, or null if one doesn't exist.
Definition: schematic.cpp:408
std::vector< SCH_MARKER * > ResolveERCExclusions()
Definition: schematic.cpp:326
wxString GetFileName() const override
Helper to retrieve the filename from the root sheet screen.
Definition: schematic.cpp:306
void EmbedFonts() override
Embed fonts in the schematic.
Definition: schematic.cpp:870
SCHEMATIC_SETTINGS & Settings() const
Definition: schematic.cpp:312
void ClearOperatingPoints()
Clear operating points from a .op simulation.
Definition: schematic.h:242
CONNECTION_GRAPH * ConnectionGraph() const override
Definition: schematic.h:166
wxString ConvertKIIDsToRefs(const wxString &aSource) const
Definition: schematic.cpp:570
void RecordERCExclusions()
Scan existing markers and record data from any that are Excluded.
Definition: schematic.cpp:815
std::map< wxString, std::set< int > > & GetPageRefsMap()
Definition: schematic.h:200
SCH_SHEET_LIST BuildUnorderedSheetList() const
Definition: schematic.h:106
void SetCurrentSheet(const SCH_SHEET_PATH &aPath) override
Definition: schematic.h:161
void FixupJunctions()
Add junctions to this schematic where required.
Definition: schematic.cpp:738
std::map< wxString, std::set< int > > m_labelToPageRefsMap
Holds a map of labels to the page sequence (virtual page number) that they appear on.
Definition: schematic.h:378
SCH_SHEET_LIST Hierarchy() const override
Return the full schematic flattened hierarchical sheet list.
Definition: schematic.cpp:214
SCH_ITEM * GetItem(const KIID &aID, SCH_SHEET_PATH *aPathOut=nullptr) const
Definition: schematic.h:120
wxString ConvertRefsToKIIDs(const wxString &aSource) const
Definition: schematic.cpp:503
void SetRoot(SCH_SHEET *aRootSheet)
Initialize the schematic with a new root sheet.
Definition: schematic.cpp:194
void SetProject(PROJECT *aPrj)
Definition: schematic.cpp:164
void AddListener(SCHEMATIC_LISTENER *aListener)
Add a listener to the schematic to receive calls whenever something on the schematic has been modifie...
Definition: schematic.cpp:790
std::map< int, wxString > GetVirtualPageToSheetPagesMap() const
Definition: schematic.cpp:492
EMBEDDED_FILES * GetEmbeddedFiles() override
Definition: schematic.cpp:858
PROJECT * m_project
Definition: schematic.h:358
SCH_SCREEN * RootScreen() const
Helper to retrieve the screen of the root sheet.
Definition: schematic.cpp:208
bool ResolveTextVar(const SCH_SHEET_PATH *aSheetPath, wxString *token, int aDepth) const
Definition: schematic.cpp:253
std::set< wxString > GetNetClassAssignmentCandidates()
Return the set of netname candidates for netclass assignment.
Definition: schematic.cpp:423
void RecomputeIntersheetRefs(const std::function< void(SCH_GLOBALLABEL *)> &aItemCallback)
Update the schematic's page reference map for all global labels, and refresh the labels so that they ...
Definition: schematic.cpp:673
void InvokeListeners(Func &&aFunc, Args &&... args)
Definition: schematic.h:352
bool IsValid() const
A simple test if the schematic is loaded, not a complete one.
Definition: schematic.h:141
static bool m_IsSchematicExists
True if a SCHEMATIC exists, false if not.
Definition: schematic.h:342
void RemoveAllListeners()
Remove all listeners.
Definition: schematic.cpp:809
const std::map< wxString, wxString > * GetProperties()
Definition: schematic.h:95
void GetContextualTextVars(wxArrayString *aVars) const
Definition: schematic.cpp:228
SCH_SHEET & Root() const
Definition: schematic.h:125
std::map< int, wxString > GetVirtualPageToSheetNamesMap() const
Definition: schematic.cpp:476
SCH_SHEET_LIST BuildSheetListSortedByPageNumbers() const override
Definition: schematic.h:97
wxString GetUniqueFilenameForCurrentSheet()
Definition: schematic.cpp:628
void SetSheetNumberAndCount()
Set the m_ScreenNumber and m_NumberOfScreens members for screens.
Definition: schematic.cpp:644
std::vector< SCHEMATIC_LISTENER * > m_listeners
Currently installed listeners.
Definition: schematic.h:398
PROJECT & Prj() const override
Return a reference to the project this schematic is part of.
Definition: schematic.h:92
bool ResolveCrossReference(wxString *token, int aDepth) const
Resolves text vars that refer to other items.
Definition: schematic.cpp:442
std::map< wxString, double > m_operatingPoints
Simulation operating points for text variable substitution.
Definition: schematic.h:388
std::map< wxString, wxString > m_properties
Properties for text variable substitution (and perhaps other uses in future).
Definition: schematic.h:383
ERC_SETTINGS & ErcSettings() const
Definition: schematic.cpp:319
void RefreshHierarchy()
Definition: schematic.cpp:222
void OnItemsChanged(std::vector< SCH_ITEM * > &aItems)
Notify the schematic and its listeners that an item on the schematic has been modified in some way.
Definition: schematic.cpp:778
SCH_SHEET * m_rootSheet
The top-level sheet in this schematic hierarchy (or potentially the only one)
Definition: schematic.h:361
Schematic editor (Eeschema) main window.
Base class for any item which can be embedded within the SCHEMATIC container class,...
Definition: sch_item.h:166
A container for handling SCH_SHEET_PATH objects in a flattened hierarchy.
SCH_ITEM * GetItem(const KIID &aID, SCH_SHEET_PATH *aPathOut=nullptr) const
Fetch a SCH_ITEM by ID.
void SortByPageNumbers(bool aUpdateVirtualPageNums=true)
Sort the list of sheets by page number.
void BuildSheetList(SCH_SHEET *aSheet, bool aCheckIntegrity)
Build the list of sheets and their sheet path from aSheet.
Handle access to a stack of flattened SCH_SHEET objects by way of a path for creating a flattened sch...
Sheet symbol placed in a schematic, and is the entry point for a sub schematic.
Definition: sch_sheet.h:57
Definition of the SCH_SHEET_PATH and SCH_SHEET_LIST classes for Eeschema.