LibrePCB Developers Documentation
Loading...
Searching...
No Matches
fileformatmigrationunstable.h
Go to the documentation of this file.
1/*
2 * LibrePCB - Professional EDA for everyone!
3 * Copyright (C) 2013 LibrePCB Developers, see AUTHORS.md for contributors.
4 * https://librepcb.org/
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#ifndef LIBREPCB_CORE_FILEFORMATMIGRATIONUNSTABLE_H
21#define LIBREPCB_CORE_FILEFORMATMIGRATIONUNSTABLE_H
22
23/*******************************************************************************
24 * Includes
25 ******************************************************************************/
27
28#include <QtCore>
29
30/*******************************************************************************
31 * Namespace / Forward Declarations
32 ******************************************************************************/
33namespace librepcb {
34
35class SExpression;
36
37/*******************************************************************************
38 * Class FileFormatMigrationUnstable
39 ******************************************************************************/
40
51 Q_OBJECT
52
53public:
54 // Constructors / Destructor
55 explicit FileFormatMigrationUnstable(QObject* parent = nullptr) noexcept;
57 delete;
59
60 // General Methods
61 virtual void upgradeComponentCategory(TransactionalDirectory& dir) override;
62 virtual void upgradePackageCategory(TransactionalDirectory& dir) override;
63 virtual void upgradeSymbol(TransactionalDirectory& dir) override;
64 virtual void upgradePackage(TransactionalDirectory& dir) override;
65 virtual void upgradeComponent(TransactionalDirectory& dir) override;
66 virtual void upgradeDevice(TransactionalDirectory& dir) override;
67 virtual void upgradeLibrary(TransactionalDirectory& dir) override;
68 virtual void upgradeWorkspaceData(TransactionalDirectory& dir) override;
69
70 // Operator Overloadings
72 const FileFormatMigrationUnstable& rhs) = delete;
73
74protected:
75 virtual void upgradeOutputJobs(SExpression& root,
76 ProjectContext& context) override;
77 virtual void upgradeCircuit(SExpression& root,
78 QList<Message>& messages) override;
79 virtual void upgradeBoard(SExpression& root) override;
80};
81
82/*******************************************************************************
83 * End of File
84 ******************************************************************************/
85
86} // namespace librepcb
87
88#endif
Migration to upgrade a previous unstable file format.
Definition fileformatmigrationunstable.h:50
virtual void upgradeComponent(TransactionalDirectory &dir) override
Definition fileformatmigrationunstable.cpp:72
virtual void upgradeOutputJobs(SExpression &root, ProjectContext &context) override
Definition fileformatmigrationunstable.cpp:106
virtual void upgradePackage(TransactionalDirectory &dir) override
Definition fileformatmigrationunstable.cpp:68
virtual void upgradeCircuit(SExpression &root, QList< Message > &messages) override
Definition fileformatmigrationunstable.cpp:112
virtual void upgradeDevice(TransactionalDirectory &dir) override
Definition fileformatmigrationunstable.cpp:77
virtual void upgradeComponentCategory(TransactionalDirectory &dir) override
Definition fileformatmigrationunstable.cpp:54
~FileFormatMigrationUnstable() noexcept
Definition fileformatmigrationunstable.cpp:47
virtual void upgradeLibrary(TransactionalDirectory &dir) override
Definition fileformatmigrationunstable.cpp:93
virtual void upgradeWorkspaceData(TransactionalDirectory &dir) override
Definition fileformatmigrationunstable.cpp:97
FileFormatMigrationUnstable(const FileFormatMigrationUnstable &other)=delete
virtual void upgradeBoard(SExpression &root) override
Definition fileformatmigrationunstable.cpp:118
virtual void upgradePackageCategory(TransactionalDirectory &dir) override
Definition fileformatmigrationunstable.cpp:59
virtual void upgradeSymbol(TransactionalDirectory &dir) override
Definition fileformatmigrationunstable.cpp:64
Migration to upgrade file format v1.0.
Definition fileformatmigrationv1.h:46
The SExpression class.
Definition sexpression.h:69
Helper class to access a subdirectory of TransactionalFileSystem.
Definition transactionaldirectory.h:51
Definition occmodel.cpp:77
Definition fileformatmigration.h:51
Definition fileformatmigrationv1.h:50