Thu, 03 Mar 2022 21:13:16 +0200
Clean up Model
24 | 1 | /* |
2 | * LDForge: LDraw parts authoring CAD | |
3 | * Copyright (C) 2013 - 2020 Teemu Piippo | |
4 | * | |
5 | * This program is free software: you can redistribute it and/or modify | |
6 | * it under the terms of the GNU General Public License as published by | |
7 | * the Free Software Foundation, either version 3 of the License, or | |
8 | * (at your option) any later version. | |
9 | * | |
10 | * This program is distributed in the hope that it will be useful, | |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | * GNU General Public License for more details. | |
14 | * | |
15 | * You should have received a copy of the GNU General Public License | |
16 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 | */ | |
18 | ||
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
19 | #include <QFile> |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
20 | #include <QDir> |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
21 | #include <QFileInfo> |
148 | 22 | #include <QSaveFile> |
3 | 23 | #include "documentmanager.h" |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
24 | #include "modeleditcontext.h" |
14 | 25 | #include "linetypes/comment.h" |
147 | 26 | #include "linetypes/subfilereference.h" |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
27 | #include "parser.h" |
3 | 28 | |
8
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 Constructs a new document manager |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
31 | * @param parent Parent object |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
32 | */ |
5 | 33 | DocumentManager::DocumentManager(QObject* parent) : |
34 | QObject{parent} | |
35 | { | |
36 | } | |
37 | ||
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
38 | /** |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
39 | * @brief Creates a new model. |
148 | 40 | * @returns the ID of the new model |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
41 | */ |
148 | 42 | ModelId DocumentManager::newModel() |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
43 | { |
148 | 44 | const ModelId modelId{++this->modelIdCounter}; |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
45 | const QString name = makeNewModelName(); |
148 | 46 | this->openModels[modelId] = ModelInfo{ |
47 | .model = std::make_unique<Model>(), | |
150
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
48 | .id = modelId, |
148 | 49 | .opentype = OpenType::ManuallyOpened, |
50 | }; | |
150
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
51 | this->makePolygonCacheForModel(modelId); |
148 | 52 | return modelId; |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
53 | } |
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 | /** |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
56 | * @brief Looks for a model by name |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
57 | * @param name Name of the model |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
58 | * @returns model or null |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
59 | */ |
148 | 60 | Model* DocumentManager::findDependencyByName(const ModelId modelId, const QString& name) |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
61 | { |
148 | 62 | const auto modelsIterator = this->openModels.find(modelId); |
63 | if (modelsIterator != std::end(this->openModels)) | |
64 | { | |
65 | const auto& dependencies = modelsIterator->second.dependencies; | |
66 | const auto dependenciesIterator = dependencies.find(name); | |
67 | if (dependenciesIterator != dependencies.end()) | |
68 | { | |
69 | ModelInfo& modelInfo = this->openModels[dependenciesIterator->second]; | |
70 | return modelInfo.model.get(); | |
71 | } | |
72 | else | |
73 | { | |
74 | return nullptr; | |
75 | } | |
76 | } | |
77 | else | |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
78 | { |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
79 | return nullptr; |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
80 | } |
148 | 81 | } |
82 | ||
83 | /** | |
84 | * @brief Gets a model pointer by id or nullptr if not found | |
85 | * @param modelId id of model to find | |
86 | * @returns model pointer or null | |
87 | */ | |
88 | Model *DocumentManager::getModelById(ModelId modelId) | |
89 | { | |
90 | const auto iterator = this->openModels.find(modelId); | |
91 | if (iterator != this->openModels.end()) | |
92 | { | |
93 | return iterator->second.model.get(); | |
94 | } | |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
95 | else |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
96 | { |
148 | 97 | return nullptr; |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
98 | } |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
99 | } |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
100 | |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
101 | QString pathToName(const QFileInfo& path) |
3 | 102 | { |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
103 | static const char* paths[] = { |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
104 | "s", |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
105 | "48" |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
106 | "8" |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
107 | }; |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
108 | const QString baseName = path.fileName(); |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
109 | const QString dirName = QFileInfo{path.dir().path()}.fileName(); |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
110 | QString result; |
17 | 111 | 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
|
112 | { |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
113 | result = dirName + "\\" + baseName; |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
114 | } |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
115 | else |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
116 | { |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
117 | result = baseName; |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
118 | } |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
119 | return result; |
3 | 120 | } |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
121 | |
147 | 122 | /** |
123 | * @brief Tries to open the model at the specified path | |
124 | * @param path Path to the model to open | |
125 | * @param errorStream Where to write any errors | |
126 | * @param openType rationale behind opening this file | |
148 | 127 | * @returns model id, or no value on error |
147 | 128 | */ |
148 | 129 | std::optional<ModelId> DocumentManager::openModel( |
130 | const QString& path, | |
131 | QTextStream& errorStream, | |
132 | const OpenType openType | |
133 | ) { | |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
134 | QFile file{path}; |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
135 | const QString name = pathToName(path); |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
136 | file.open(QFile::ReadOnly | QFile::Text); |
148 | 137 | std::unique_ptr<Model> newModel = std::make_unique<Model>(this); |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
138 | QTextStream textStream{&file}; |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
139 | Model::EditContext editor = newModel->edit(); |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
140 | Parser parser{file}; |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
141 | parser.parseBody(editor); |
148 | 142 | std::optional<ModelId> result; |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
143 | if (file.error() == QFile::NoError) |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
144 | { |
148 | 145 | const ModelId modelId{++this->modelIdCounter}; |
150
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
146 | this->openModels[modelId] = {std::move(newModel), modelId, path, openType}; |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
147 | this->makePolygonCacheForModel(modelId); |
148 | 148 | result = modelId; |
8
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
149 | } |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
150 | else |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
151 | { |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
152 | errorStream << file.errorString(); |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
153 | } |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
154 | return result; |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
155 | } |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
156 | |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
157 | QString DocumentManager::makeNewModelName() |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
158 | { |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
159 | untitledNameCounter += 1; |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
160 | return "untitled-" + QString::number(untitledNameCounter); |
44679e468ba9
major update with many things
Teemu Piippo <teemu@hecknology.net>
parents:
5
diff
changeset
|
161 | } |
12 | 162 | |
148 | 163 | void DocumentManager::loadDependenciesForAllModels(const LibraryManager& libraries, QTextStream& errorStream) |
164 | { | |
165 | for (const auto& modelInfoPair : this->openModels) | |
166 | { | |
167 | this->loadDependenciesForModel(modelInfoPair.first, modelInfoPair.second.path, libraries, errorStream); | |
168 | } | |
169 | } | |
170 | ||
171 | struct DocumentManager::LoadDepedenciesBag | |
172 | { | |
173 | const LibraryManager& libraries; | |
174 | QStringList missing; | |
175 | QSet<ModelId> processed; | |
176 | QTextStream& errorStream; | |
177 | }; | |
178 | ||
12 | 179 | void DocumentManager::loadDependenciesForModel( |
148 | 180 | const ModelId modelId, |
23
3387a84ddaba
fixed a pile of nonsense that caused subfiles to go haywire
Teemu Piippo <teemu@hecknology.net>
parents:
17
diff
changeset
|
181 | const QString& path, |
12 | 182 | const LibraryManager& libraries, |
183 | QTextStream& errorStream) | |
184 | { | |
148 | 185 | LoadDepedenciesBag bag { |
186 | .libraries = libraries, | |
187 | .missing = {}, | |
188 | .processed = {}, | |
189 | .errorStream = errorStream, | |
190 | }; | |
191 | this->loadDependenciesForModel(modelId, path, bag); | |
192 | if (not bag.missing.empty()) | |
12 | 193 | { |
148 | 194 | bag.missing.sort(Qt::CaseInsensitive); |
12 | 195 | errorStream << utility::format( |
196 | "The following files could not be opened: %1", | |
148 | 197 | bag.missing.join(", ")); |
198 | } | |
199 | } | |
200 | ||
201 | void DocumentManager::closeDocument(const ModelId modelId) | |
202 | { | |
203 | ModelInfo* modelInfo = findInMap(this->openModels, modelId); | |
204 | if (modelInfo != nullptr) | |
205 | { | |
206 | modelInfo->opentype = OpenType::AutomaticallyOpened; | |
207 | this->prune(); | |
208 | } | |
209 | } | |
210 | ||
211 | const QString *DocumentManager::modelPath(ModelId modelId) const | |
212 | { | |
213 | const auto iterator = this->openModels.find(modelId); | |
214 | if (iterator != this->openModels.end()) | |
215 | { | |
216 | return &iterator->second.path; | |
217 | } | |
218 | else | |
219 | { | |
220 | return nullptr; | |
221 | } | |
222 | } | |
223 | ||
224 | /** | |
225 | * @brief Changes the path of the specified model. Since the name of the file may change, | |
226 | * changing the path can cause dependencies to be resolved differently. As such, dependencies | |
227 | * need to be resolved for all files after this operation. | |
228 | * @param modelId Model to change the path of | |
229 | * @param newPath New path | |
230 | * @param libraries Library manager for the purpose of dependency resolving | |
231 | * @param errorStream Where to write any errors regarding dependency resolving | |
232 | */ | |
233 | void DocumentManager::setModelPath( | |
234 | const ModelId modelId, | |
235 | const QString &newPath, | |
236 | const LibraryManager &libraries, | |
237 | QTextStream &errorStream) | |
238 | { | |
239 | auto modelInfoPair = this->openModels.find(modelId); | |
240 | if (true | |
241 | and modelInfoPair != this->openModels.end() | |
242 | and modelInfoPair->second.opentype == OpenType::ManuallyOpened | |
243 | ) { | |
244 | modelInfoPair->second.path = newPath; | |
245 | this->loadDependenciesForAllModels(libraries, errorStream); | |
12 | 246 | } |
247 | } | |
248 | ||
148 | 249 | bool DocumentManager::saveModel(const ModelId modelId, QTextStream &errors) |
147 | 250 | { |
148 | 251 | const QString* const path = this->modelPath(modelId); |
252 | if (path != nullptr) | |
147 | 253 | { |
148 | 254 | QSaveFile file{*path}; |
255 | file.setDirectWriteFallback(true); | |
256 | if (file.open(QSaveFile::WriteOnly)) | |
147 | 257 | { |
148 | 258 | // if path is not nullptr, getModelById will always return a value as well |
151 | 259 | ::save(*this->getModelById(modelId), &file); |
148 | 260 | const bool commitSucceeded = file.commit(); |
261 | if (not commitSucceeded) | |
262 | { | |
263 | errors << tr("Could not save: %1").arg(file.errorString()); | |
264 | return false; | |
265 | } | |
266 | else | |
267 | { | |
268 | return true; | |
269 | } | |
270 | } | |
271 | else | |
272 | { | |
273 | errors << tr("Could not open %1 for writing: %2") | |
274 | .arg(file.fileName()) | |
275 | .arg(file.errorString()); | |
276 | return false; | |
147 | 277 | } |
278 | } | |
148 | 279 | else |
280 | { | |
281 | errors << tr("Bad model ID %1").arg(modelId.value); | |
282 | return false; | |
283 | } | |
147 | 284 | } |
285 | ||
148 | 286 | /** |
287 | * @brief Searches the open models for the specified model and returns its id if found | |
288 | * @param model model to look for | |
289 | * @return id or no value if not found | |
290 | */ | |
291 | std::optional<ModelId> DocumentManager::findIdForModel(const Model *model) const | |
147 | 292 | { |
148 | 293 | std::optional<ModelId> result; |
294 | for (auto it = this->openModels.begin(); it != this->openModels.end(); ++it) | |
147 | 295 | { |
148 | 296 | if (it->second.model.get() == model) |
147 | 297 | { |
148 | 298 | result = it->first; |
299 | break; | |
300 | } | |
301 | } | |
302 | return result; | |
303 | } | |
304 | ||
150
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
305 | PolygonCache *DocumentManager::getPolygonCacheForModel(ModelId modelId) |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
306 | { |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
307 | auto it = this->polygonCaches.find(modelId); |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
308 | if (it != this->polygonCaches.end()) |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
309 | { |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
310 | return &it->second; |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
311 | } |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
312 | else |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
313 | { |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
314 | return nullptr; |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
315 | } |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
316 | } |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
317 | |
148 | 318 | /** |
319 | * @brief Cleans up and erases models that are no longer required. | |
320 | */ | |
321 | void DocumentManager::prune() | |
322 | { | |
323 | for (auto it = this->openModels.begin(); it != this->openModels.end(); ++it) | |
324 | { | |
325 | // Find models that are not edited by the user and are not needed by any other model | |
326 | if (true | |
327 | and it->second.opentype == OpenType::AutomaticallyOpened | |
328 | and not this->isReferencedByAnything(it->first) | |
329 | ) { | |
150
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
330 | // Remove its polygon cache |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
331 | const auto polygonCache = this->polygonCaches.find(it->first); |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
332 | if (polygonCache != this->polygonCaches.end()) |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
333 | { |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
334 | this->polygonCaches.erase(polygonCache); |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
335 | } |
148 | 336 | // Remove the model |
337 | this->openModels.erase(it); | |
338 | // We need to start over now. It is possible that other models that previously | |
339 | // were referenced by the model we just erased have become prunable. | |
340 | // Moreover, our iterator is invalid now and we cannot continue in this for loop. | |
341 | this->prune(); | |
342 | break; | |
343 | } | |
344 | } | |
345 | } | |
346 | ||
347 | /** | |
348 | * @brief Finds out whether the specified model id is referenced by any other model | |
349 | * @param modelId | |
350 | * @returns bool | |
351 | */ | |
352 | bool DocumentManager::isReferencedByAnything(const ModelId modelId) const | |
353 | { | |
354 | for (auto& haystackModelPair : this->openModels) | |
355 | { | |
356 | if (haystackModelPair.first != modelId) | |
357 | { | |
358 | for (auto& dependencyPair : haystackModelPair.second.dependencies) | |
147 | 359 | { |
148 | 360 | if (dependencyPair.second == modelId) |
361 | { | |
362 | return true; | |
363 | } | |
147 | 364 | } |
148 | 365 | } |
147 | 366 | } |
148 | 367 | return false; |
147 | 368 | } |
369 | ||
150
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
370 | void DocumentManager::makePolygonCacheForModel(const ModelId modelId) |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
371 | { |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
372 | Model* model = this->getModelById(modelId); |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
373 | if (model != nullptr) |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
374 | { |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
375 | this->polygonCaches.emplace( |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
376 | std::piecewise_construct, |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
377 | std::forward_as_tuple(modelId), |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
378 | std::forward_as_tuple(model)); |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
379 | } |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
380 | } |
b6cbba6e29a1
extract polygon cache out of Model
Teemu Piippo <teemu@hecknology.net>
parents:
148
diff
changeset
|
381 | |
23
3387a84ddaba
fixed a pile of nonsense that caused subfiles to go haywire
Teemu Piippo <teemu@hecknology.net>
parents:
17
diff
changeset
|
382 | static QString findFile(QString referenceName, const QString& path, const LibraryManager& libraries) |
3387a84ddaba
fixed a pile of nonsense that caused subfiles to go haywire
Teemu Piippo <teemu@hecknology.net>
parents:
17
diff
changeset
|
383 | { |
3387a84ddaba
fixed a pile of nonsense that caused subfiles to go haywire
Teemu Piippo <teemu@hecknology.net>
parents:
17
diff
changeset
|
384 | // Try to find the file in the same place as the model itself |
3387a84ddaba
fixed a pile of nonsense that caused subfiles to go haywire
Teemu Piippo <teemu@hecknology.net>
parents:
17
diff
changeset
|
385 | referenceName.replace("\\", "/"); |
3387a84ddaba
fixed a pile of nonsense that caused subfiles to go haywire
Teemu Piippo <teemu@hecknology.net>
parents:
17
diff
changeset
|
386 | const QDir dir = QFileInfo{path}.dir(); |
3387a84ddaba
fixed a pile of nonsense that caused subfiles to go haywire
Teemu Piippo <teemu@hecknology.net>
parents:
17
diff
changeset
|
387 | QString referencedFilePath = dir.filePath(referenceName); |
3387a84ddaba
fixed a pile of nonsense that caused subfiles to go haywire
Teemu Piippo <teemu@hecknology.net>
parents:
17
diff
changeset
|
388 | if (not QFileInfo{referencedFilePath}.exists()) |
3387a84ddaba
fixed a pile of nonsense that caused subfiles to go haywire
Teemu Piippo <teemu@hecknology.net>
parents:
17
diff
changeset
|
389 | { |
3387a84ddaba
fixed a pile of nonsense that caused subfiles to go haywire
Teemu Piippo <teemu@hecknology.net>
parents:
17
diff
changeset
|
390 | // Look for it in the libraries |
3387a84ddaba
fixed a pile of nonsense that caused subfiles to go haywire
Teemu Piippo <teemu@hecknology.net>
parents:
17
diff
changeset
|
391 | referencedFilePath = libraries.findFile(referenceName); |
3387a84ddaba
fixed a pile of nonsense that caused subfiles to go haywire
Teemu Piippo <teemu@hecknology.net>
parents:
17
diff
changeset
|
392 | } |
3387a84ddaba
fixed a pile of nonsense that caused subfiles to go haywire
Teemu Piippo <teemu@hecknology.net>
parents:
17
diff
changeset
|
393 | return referencedFilePath; |
3387a84ddaba
fixed a pile of nonsense that caused subfiles to go haywire
Teemu Piippo <teemu@hecknology.net>
parents:
17
diff
changeset
|
394 | } |
3387a84ddaba
fixed a pile of nonsense that caused subfiles to go haywire
Teemu Piippo <teemu@hecknology.net>
parents:
17
diff
changeset
|
395 | |
12 | 396 | void DocumentManager::loadDependenciesForModel( |
148 | 397 | const ModelId modelId, |
23
3387a84ddaba
fixed a pile of nonsense that caused subfiles to go haywire
Teemu Piippo <teemu@hecknology.net>
parents:
17
diff
changeset
|
398 | const QString &path, |
148 | 399 | LoadDepedenciesBag& bag) |
12 | 400 | { |
148 | 401 | QSet<QString> failedToOpen; |
12 | 402 | struct LoadingError |
403 | { | |
404 | QString message; | |
405 | }; | |
148 | 406 | bag.processed.insert(modelId); |
407 | if (not this->openModels.contains(modelId)) | |
12 | 408 | { |
148 | 409 | bag.errorStream << tr("bad model ID %1").arg(modelId.value); |
410 | return; | |
411 | } | |
412 | ModelInfo& modelInfo = this->openModels[modelId]; | |
413 | modelInfo.dependencies.clear(); | |
414 | for (int i = 0; i < modelInfo.model->size(); i += 1) | |
415 | { | |
151 | 416 | const QString referenceName = (*modelInfo.model)[i]->getProperty(ldraw::Property::ReferenceName).toString(); |
12 | 417 | if (not referenceName.isEmpty() |
148 | 418 | and modelInfo.dependencies.count(referenceName) == 0 |
419 | and not failedToOpen.contains(referenceName)) | |
12 | 420 | { |
421 | try | |
422 | { | |
148 | 423 | const QString referencedFilePath = ::findFile(referenceName, path, bag.libraries); |
23
3387a84ddaba
fixed a pile of nonsense that caused subfiles to go haywire
Teemu Piippo <teemu@hecknology.net>
parents:
17
diff
changeset
|
424 | if (referencedFilePath.isEmpty()) |
12 | 425 | { |
148 | 426 | throw LoadingError{tr("could not find '%1'").arg(referenceName)}; |
12 | 427 | } |
148 | 428 | QString loadErrorString; |
429 | QTextStream localErrorStream{&loadErrorString}; | |
430 | const std::optional<ModelId> modelIdOpt = this->openModel( | |
147 | 431 | referencedFilePath, |
432 | localErrorStream, | |
433 | OpenType::AutomaticallyOpened); | |
148 | 434 | if (not modelIdOpt.has_value()) |
12 | 435 | { |
148 | 436 | const QString& errorMessage = tr("could not load '%1': %2") |
437 | .arg(referencedFilePath) | |
438 | .arg(loadErrorString); | |
439 | throw LoadingError{errorMessage}; | |
12 | 440 | } |
148 | 441 | modelInfo.dependencies[referenceName] = modelIdOpt.value(); |
442 | if (not bag.processed.contains(modelIdOpt.value())) | |
12 | 443 | { |
148 | 444 | this->loadDependenciesForModel(modelIdOpt.value(), referencedFilePath, bag); |
12 | 445 | } |
446 | } | |
447 | catch(const LoadingError& error) | |
448 | { | |
148 | 449 | bag.errorStream << error.message << "\n"; |
450 | failedToOpen.insert(referenceName); | |
451 | bag.missing.append(referenceName); | |
12 | 452 | } |
453 | } | |
454 | } | |
455 | } |