KiCad PCB EDA Suite
Loading...
Searching...
No Matches
api_handler_editor.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) 2024 Jon Evans <[email protected]>
5 * Copyright (C) 2024 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
21#ifndef KICAD_API_HANDLER_EDITOR_H
22#define KICAD_API_HANDLER_EDITOR_H
23
24#include <api/api_handler.h>
25#include <api/common/commands/editor_commands.pb.h>
26#include <commit.h>
27#include <kiid.h>
28
29using namespace kiapi::common;
30using kiapi::common::types::DocumentSpecifier;
31using kiapi::common::types::ItemRequestStatus;
32using kiapi::common::commands::ItemDeletionStatus;
33
34class EDA_BASE_FRAME;
35
40{
41public:
42 API_HANDLER_EDITOR( EDA_BASE_FRAME* aFrame = nullptr );
43
44protected:
47 const kiapi::common::types::ItemHeader& aHeader );
48
49 HANDLER_RESULT<bool> validateDocument( const DocumentSpecifier& aDocument );
50
55 virtual std::optional<ApiResponseStatus> checkForBusy();
56
58 const HANDLER_CONTEXT& aCtx );
59
61 const HANDLER_CONTEXT& aCtx );
62
64
65 virtual void pushCurrentCommit( const HANDLER_CONTEXT& aCtx, const wxString& aMessage );
66
68 const HANDLER_CONTEXT& aCtx );
69
71 const HANDLER_CONTEXT& aCtx );
72
74 const HANDLER_CONTEXT& aCtx );
75
77 const HANDLER_CONTEXT& aCtx );
78
83 virtual std::unique_ptr<COMMIT> createCommit() = 0;
84
88 virtual kiapi::common::types::DocumentType thisDocumentType() const = 0;
89
93 virtual bool validateDocumentInternal( const DocumentSpecifier& aDocument ) const = 0;
94
96 const HANDLER_CONTEXT& aCtx,
97 const types::ItemHeader &aHeader,
98 const google::protobuf::RepeatedPtrField<google::protobuf::Any>& aItems,
99 std::function<void( commands::ItemStatus, google::protobuf::Any )> aItemHandler ) = 0;
100
101 virtual void deleteItemsInternal( std::map<KIID, ItemDeletionStatus>& aItemsToDelete,
102 const HANDLER_CONTEXT& aCtx ) = 0;
103
104 virtual std::optional<EDA_ITEM*> getItemFromDocument( const DocumentSpecifier& aDocument,
105 const KIID& aId ) = 0;
106
107protected:
108 std::map<std::string, std::pair<KIID, std::unique_ptr<COMMIT>>> m_commits;
109
110 std::set<std::string> m_activeClients;
111
113};
114
115#endif //KICAD_API_HANDLER_EDITOR_H
tl::expected< T, ApiResponseStatus > HANDLER_RESULT
Definition: api_handler.h:45
Base class for API handlers related to editor frames.
HANDLER_RESULT< commands::HitTestResponse > handleHitTest(commands::HitTest &aMsg, const HANDLER_CONTEXT &aCtx)
virtual void pushCurrentCommit(const HANDLER_CONTEXT &aCtx, const wxString &aMessage)
virtual HANDLER_RESULT< ItemRequestStatus > handleCreateUpdateItemsInternal(bool aCreate, const HANDLER_CONTEXT &aCtx, const types::ItemHeader &aHeader, const google::protobuf::RepeatedPtrField< google::protobuf::Any > &aItems, std::function< void(commands::ItemStatus, google::protobuf::Any)> aItemHandler)=0
virtual kiapi::common::types::DocumentType thisDocumentType() const =0
Override this to specify which document type this editor handles.
HANDLER_RESULT< commands::BeginCommitResponse > handleBeginCommit(commands::BeginCommit &aMsg, const HANDLER_CONTEXT &aCtx)
virtual std::unique_ptr< COMMIT > createCommit()=0
Override this to create an appropriate COMMIT subclass for the frame in question.
HANDLER_RESULT< bool > validateDocument(const DocumentSpecifier &aDocument)
HANDLER_RESULT< commands::UpdateItemsResponse > handleUpdateItems(commands::UpdateItems &aMsg, const HANDLER_CONTEXT &aCtx)
virtual std::optional< EDA_ITEM * > getItemFromDocument(const DocumentSpecifier &aDocument, const KIID &aId)=0
HANDLER_RESULT< commands::EndCommitResponse > handleEndCommit(commands::EndCommit &aMsg, const HANDLER_CONTEXT &aCtx)
HANDLER_RESULT< std::optional< KIID > > validateItemHeaderDocument(const kiapi::common::types::ItemHeader &aHeader)
If the header is valid, returns the item container.
COMMIT * getCurrentCommit(const HANDLER_CONTEXT &aCtx)
HANDLER_RESULT< commands::DeleteItemsResponse > handleDeleteItems(commands::DeleteItems &aMsg, const HANDLER_CONTEXT &aCtx)
std::set< std::string > m_activeClients
std::map< std::string, std::pair< KIID, std::unique_ptr< COMMIT > > > m_commits
virtual void deleteItemsInternal(std::map< KIID, ItemDeletionStatus > &aItemsToDelete, const HANDLER_CONTEXT &aCtx)=0
virtual std::optional< ApiResponseStatus > checkForBusy()
Checks if the editor can accept commands.
HANDLER_RESULT< commands::CreateItemsResponse > handleCreateItems(commands::CreateItems &aMsg, const HANDLER_CONTEXT &aCtx)
EDA_BASE_FRAME * m_frame
virtual bool validateDocumentInternal(const DocumentSpecifier &aDocument) const =0
Represent a set of changes (additions, deletions or modifications) of a data model (e....
Definition: commit.h:74
The base frame for deriving all KiCad main window classes.
Definition: kiid.h:49