Sat, 14 Dec 2019 23:00:01 +0200
fixed build
|
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
1 | #include <QFile> |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
2 | #include <QDir> |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
3 | #include <QFileInfo> |
| 3 | 4 | #include "documentmanager.h" |
|
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
5 | #include "modeleditcontext.h" |
| 14 | 6 | #include "linetypes/comment.h" |
|
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
7 | #include "parser.h" |
| 3 | 8 | |
|
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
9 | /** |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
10 | * @brief Constructs a new document manager |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
11 | * @param parent Parent object |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
12 | */ |
| 5 | 13 | DocumentManager::DocumentManager(QObject* parent) : |
| 14 | QObject{parent} | |
| 15 | { | |
| 16 | } | |
| 17 | ||
|
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
18 | /** |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
19 | * @brief Creates a new model. |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
20 | * @returns the name to the new model |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
21 | */ |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
22 | QString DocumentManager::newModel() |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
23 | { |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
24 | const QString name = makeNewModelName(); |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
25 | this->openModels.emplace(name, new Model); |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
26 | return name; |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
27 | } |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
28 | |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
29 | /** |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
30 | * @brief Looks for a model by name |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
31 | * @param name Name of the model |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
32 | * @returns model or null |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
33 | * ' |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
34 | */ |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
35 | Model* DocumentManager::findModelByName(const QString& name) |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
36 | { |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
37 | const auto iterator = this->openModels.find(name); |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
38 | if (iterator == std::end(this->openModels)) |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
39 | { |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
40 | return nullptr; |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
41 | } |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
42 | else |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
43 | { |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
44 | return iterator->second.get(); |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
45 | } |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
46 | } |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
47 | |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
48 | QString pathToName(const QFileInfo& path) |
| 3 | 49 | { |
|
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
50 | static const char* paths[] = { |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
51 | "s", |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
52 | "48" |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
53 | "8" |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
54 | }; |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
55 | const QString baseName = path.fileName(); |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
56 | const QString dirName = QFileInfo{path.dir().path()}.fileName(); |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
57 | QString result; |
| 17 | 58 | if (std::find(std::begin(paths), std::end(paths), dirName) != std::end(paths)) |
|
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
59 | { |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
60 | result = dirName + "\\" + baseName; |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
61 | } |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
62 | else |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
63 | { |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
64 | result = baseName; |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
65 | } |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
66 | return result; |
| 3 | 67 | } |
|
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
68 | |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
69 | QString DocumentManager::openModel(const QString& path, QTextStream& errorStream) |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
70 | { |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
71 | QFile file{path}; |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
72 | const QString name = pathToName(path); |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
73 | file.open(QFile::ReadOnly | QFile::Text); |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
74 | std::unique_ptr<Model> newModel = std::make_unique<Model>(); |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
75 | QTextStream textStream{&file}; |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
76 | Model::EditContext editor = newModel->edit(); |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
77 | Parser parser{file}; |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
78 | parser.parseBody(editor); |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
79 | QString result; |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
80 | if (file.error() == QFile::NoError) |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
81 | { |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
82 | openModels[name] = std::move(newModel); |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
83 | result = name; |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
84 | } |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
85 | else |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
86 | { |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
87 | errorStream << file.errorString(); |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
88 | } |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
89 | return result; |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
90 | } |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
91 | |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
92 | QString DocumentManager::makeNewModelName() |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
93 | { |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
94 | untitledNameCounter += 1; |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
95 | return "untitled-" + QString::number(untitledNameCounter); |
|
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
96 | } |
| 12 | 97 | |
| 98 | void DocumentManager::loadDependenciesForModel( | |
| 99 | const QString& modelName, | |
| 100 | const LibraryManager& libraries, | |
| 101 | QTextStream& errorStream) | |
| 102 | { | |
| 103 | QStringList missing; | |
| 104 | QStringList processed; | |
| 105 | loadDependenciesForModel(modelName, libraries, missing, processed, errorStream); | |
| 106 | if (not missing.empty()) | |
| 107 | { | |
| 108 | missing.sort(Qt::CaseInsensitive); | |
| 109 | errorStream << utility::format( | |
| 110 | "The following files could not be opened: %1", | |
| 111 | missing.join(", ")); | |
| 112 | } | |
| 113 | } | |
| 114 | ||
| 115 | void DocumentManager::loadDependenciesForModel( | |
| 116 | const QString& modelName, | |
| 117 | const LibraryManager& libraries, | |
| 118 | QStringList& missing, | |
| 119 | QStringList& processed, | |
| 120 | QTextStream& errorStream) | |
| 121 | { | |
| 122 | struct LoadingError | |
| 123 | { | |
| 124 | QString message; | |
| 125 | }; | |
| 126 | processed.append(modelName); | |
| 127 | Model* model = this->findModelByName(modelName); | |
| 128 | for (int i = 0; i < model->size(); i += 1) | |
| 129 | { | |
| 13 | 130 | const QString referenceName = model->getObjectProperty(i, linetypes::Property::ReferenceName).toString(); |
| 12 | 131 | if (not referenceName.isEmpty() |
| 132 | and openModels.find(referenceName) == std::end(openModels) | |
| 133 | and not missing.contains(referenceName)) | |
| 134 | { | |
| 135 | try | |
| 136 | { | |
| 137 | const QString path = libraries.findFile(referenceName); | |
| 138 | if (path.isEmpty()) | |
| 139 | { | |
| 140 | throw LoadingError{utility::format("'%1' was not found.", referenceName)}; | |
| 141 | } | |
| 142 | QString errorString; | |
| 143 | QTextStream localErrorStream{&errorString}; | |
| 144 | QString resultName = this->openModel(path, localErrorStream); | |
| 145 | if (resultName.isEmpty()) | |
| 146 | { | |
| 147 | throw LoadingError{utility::format( | |
| 148 | "could not load '%1': %2", | |
| 149 | path, | |
| 150 | errorString)}; | |
| 151 | } | |
| 152 | if (not processed.contains(referenceName)) | |
| 153 | { | |
| 154 | loadDependenciesForModel(referenceName, libraries, missing, processed, errorStream); | |
| 155 | } | |
| 156 | } | |
| 157 | catch(const LoadingError& error) | |
| 158 | { | |
| 159 | errorStream << error.message << "\n"; | |
| 160 | missing.append(referenceName); | |
| 161 | processed.append(referenceName); | |
| 162 | } | |
| 163 | } | |
| 164 | } | |
| 165 | } |