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 {
100 }
101
103 {
104 SCH_SHEET_LIST sheets;
105 sheets.BuildSheetList( m_rootSheet, false );
106 return sheets;
107 }
108
112 SCH_SHEET_LIST Hierarchy() const override;
113
114 void RefreshHierarchy();
115
116 SCH_ITEM* GetItem( const KIID& aID, SCH_SHEET_PATH* aPathOut = nullptr ) const
117 {
118 return BuildUnorderedSheetList().GetItem( aID, aPathOut );
119 }
120
122 {
123 return *m_rootSheet;
124 }
125
134 void SetRoot( SCH_SHEET* aRootSheet );
135
137 bool IsValid() const
138 {
139 return m_rootSheet != nullptr;
140 }
141
143 SCH_SCREEN* RootScreen() const;
144
145 void GetContextualTextVars( wxArrayString* aVars ) const;
146
147 bool ResolveTextVar( const SCH_SHEET_PATH* aSheetPath, wxString* token, int aDepth ) const;
148
150 wxString GetFileName() const override;
151
152 SCH_SHEET_PATH& CurrentSheet() const override
153 {
154 return *m_currentSheet;
155 }
156
157 void SetCurrentSheet( const SCH_SHEET_PATH& aPath ) override
158 {
159 *m_currentSheet = aPath;
160 }
161
163 {
164 return m_connectionGraph;
165 }
166
168
169 ERC_SETTINGS& ErcSettings() const;
170
171 std::vector<SCH_MARKER*> ResolveERCExclusions();
172
174 const EMBEDDED_FILES* GetEmbeddedFiles() const;
175
180 std::shared_ptr<BUS_ALIAS> GetBusAlias( const wxString& aLabel ) const;
181
187 std::set<wxString> GetNetClassAssignmentCandidates();
188
194 bool ResolveCrossReference( wxString* token, int aDepth ) const;
195
196 std::map<wxString, std::set<int>>& GetPageRefsMap() { return m_labelToPageRefsMap; }
197
198 std::map<int, wxString> GetVirtualPageToSheetNamesMap() const;
199 std::map<int, wxString> GetVirtualPageToSheetPagesMap() const;
200
201 wxString ConvertRefsToKIIDs( const wxString& aSource ) const;
202 wxString ConvertKIIDsToRefs( const wxString& aSource ) const;
203
212
221
228
233 void RecomputeIntersheetRefs( const std::function<void( SCH_GLOBALLABEL* )>& aItemCallback );
234
239 {
240 m_operatingPoints.clear();
241 }
242
246 void SetOperatingPoint( const wxString& aSignal, double aValue )
247 {
248 m_operatingPoints[ aSignal ] = aValue;
249 }
250
251 wxString GetOperatingPoint( const wxString& aNetName, int aPrecision, const wxString& aRange );
252
257 void FixupJunctions();
258
262 void RecordERCExclusions();
263
268
273 void OnItemsAdded( std::vector<SCH_ITEM*>& aNewItems );
274
279 void OnItemsRemoved( std::vector<SCH_ITEM*>& aRemovedItems );
280
285 void OnItemsChanged( std::vector<SCH_ITEM*>& aItems );
286
292 void OnSchSheetChanged();
293
302 void AddListener( SCHEMATIC_LISTENER* aListener );
303
308 void RemoveListener( SCHEMATIC_LISTENER* aListener );
309
313 void RemoveAllListeners();
314
318 void EmbedFonts() override;
319
326 std::set<const SCH_SCREEN*> GetSchematicsSharedByMultipleProjects() const;
327
333 bool IsComplexHierarchy() const;
334
339
340#if defined(DEBUG)
341 void Show( int nestLevel, std::ostream& os ) const override {}
342#endif
343
344private:
345 friend class SCH_EDIT_FRAME;
346
347 template <typename Func, typename... Args>
348 void InvokeListeners( Func&& aFunc, Args&&... args )
349 {
350 for( auto&& l : m_listeners )
351 ( l->*aFunc )( std::forward<Args>( args )... );
352 }
353
355
358
366
369
374 std::map<wxString, std::set<int>> m_labelToPageRefsMap;
375
379 std::map<wxString, wxString> m_properties;
380
384 std::map<wxString, double> m_operatingPoints;
385
390
394 std::vector<SCHEMATIC_LISTENER*> m_listeners;
395};
396
397#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:128
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:916
void SetLegacySymbolInstanceData()
Update the symbol value and footprint instance data for legacy designs.
Definition: schematic.cpp:622
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:768
CONNECTION_GRAPH * m_connectionGraph
Holds and calculates connectivity information of this schematic.
Definition: schematic.h:368
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:246
SCH_SHEET_LIST m_hierarchy
Cache of the entire schematic hierarchy sorted by sheet page number.
Definition: schematic.h:389
SCH_SHEET_PATH & CurrentSheet() const override
Definition: schematic.h:152
void ResolveERCExclusionsPostUpdate()
Update markers to match recorded exclusions.
Definition: schematic.cpp:843
void RemoveListener(SCHEMATIC_LISTENER *aListener)
Remove the specified listener.
Definition: schematic.cpp:799
bool IsComplexHierarchy() const
Test if the schematic is a complex hierarchy.
Definition: schematic.cpp:951
void OnSchSheetChanged()
Notify the schematic and its listeners that the current sheet has been changed.
Definition: schematic.cpp:786
SCH_SHEET_PATH * m_currentSheet
The sheet path of the sheet currently being edited or displayed.
Definition: schematic.h:365
wxString GetOperatingPoint(const wxString &aNetName, int aPrecision, const wxString &aRange)
Definition: schematic.cpp:720
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:774
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:410
std::vector< SCH_MARKER * > ResolveERCExclusions()
Definition: schematic.cpp:328
wxString GetFileName() const override
Helper to retrieve the filename from the root sheet screen.
Definition: schematic.cpp:308
void EmbedFonts() override
Embed fonts in the schematic.
Definition: schematic.cpp:872
SCHEMATIC_SETTINGS & Settings() const
Definition: schematic.cpp:314
void ClearOperatingPoints()
Clear operating points from a .op simulation.
Definition: schematic.h:238
CONNECTION_GRAPH * ConnectionGraph() const override
Definition: schematic.h:162
wxString ConvertKIIDsToRefs(const wxString &aSource) const
Definition: schematic.cpp:572
void RecordERCExclusions()
Scan existing markers and record data from any that are Excluded.
Definition: schematic.cpp:817
std::map< wxString, std::set< int > > & GetPageRefsMap()
Definition: schematic.h:196
SCH_SHEET_LIST BuildUnorderedSheetList() const
Definition: schematic.h:102
void SetCurrentSheet(const SCH_SHEET_PATH &aPath) override
Definition: schematic.h:157
void FixupJunctions()
Add junctions to this schematic where required.
Definition: schematic.cpp:740
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:374
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:116
wxString ConvertRefsToKIIDs(const wxString &aSource) const
Definition: schematic.cpp:505
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:792
std::map< int, wxString > GetVirtualPageToSheetPagesMap() const
Definition: schematic.cpp:494
EMBEDDED_FILES * GetEmbeddedFiles() override
Definition: schematic.cpp:860
PROJECT * m_project
Definition: schematic.h:354
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:255
std::set< wxString > GetNetClassAssignmentCandidates()
Return the set of netname candidates for netclass assignment.
Definition: schematic.cpp:425
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:675
void InvokeListeners(Func &&aFunc, Args &&... args)
Definition: schematic.h:348
bool IsValid() const
A simple test if the schematic is loaded, not a complete one.
Definition: schematic.h:137
static bool m_IsSchematicExists
True if a SCHEMATIC exists, false if not.
Definition: schematic.h:338
void RemoveAllListeners()
Remove all listeners.
Definition: schematic.cpp:811
const std::map< wxString, wxString > * GetProperties()
Definition: schematic.h:95
void GetContextualTextVars(wxArrayString *aVars) const
Definition: schematic.cpp:230
SCH_SHEET & Root() const
Definition: schematic.h:121
std::map< int, wxString > GetVirtualPageToSheetNamesMap() const
Definition: schematic.cpp:478
SCH_SHEET_LIST BuildSheetListSortedByPageNumbers() const override
Definition: schematic.h:97
wxString GetUniqueFilenameForCurrentSheet()
Definition: schematic.cpp:630
void SetSheetNumberAndCount()
Set the m_ScreenNumber and m_NumberOfScreens members for screens.
Definition: schematic.cpp:646
std::vector< SCHEMATIC_LISTENER * > m_listeners
Currently installed listeners.
Definition: schematic.h:394
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:444
std::map< wxString, double > m_operatingPoints
Simulation operating points for text variable substitution.
Definition: schematic.h:384
std::map< wxString, wxString > m_properties
Properties for text variable substitution (and perhaps other uses in future).
Definition: schematic.h:379
ERC_SETTINGS & ErcSettings() const
Definition: schematic.cpp:321
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:780
SCH_SHEET * m_rootSheet
The top-level sheet in this schematic hierarchy (or potentially the only one)
Definition: schematic.h:357
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 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.