Skip to content

Commit afc097e

Browse files
authored
Merge pull request #1052 from CesiumGS/fix-writing-schema-property
Fix crash when writing `EXT_structural_metadata` with null schema
2 parents 69dafb8 + 5fa6745 commit afc097e

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGES.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
### v0.44.0 - 2025-02-03
4+
5+
##### Fixes :wrench:
6+
7+
- Fixed a crash in `GltfWriter` that would happen when the `EXT_structural_metadata` `schema` property was null.
8+
39
### v0.43.0 - 2025-01-02
410

511
##### Breaking Changes :mega:

CesiumGltfWriter/generated/src/ModelJsonWriter.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -761,8 +761,10 @@ void writeJson(
761761
const CesiumJsonWriter::ExtensionWriterContext& context) {
762762
jsonWriter.StartObject();
763763

764-
jsonWriter.Key("schema");
765-
writeJson(obj.schema, jsonWriter, context);
764+
if (obj.schema) {
765+
jsonWriter.Key("schema");
766+
writeJson(obj.schema, jsonWriter, context);
767+
}
766768

767769
if (obj.schemaUri) {
768770
jsonWriter.Key("schemaUri");

tools/generate-classes/generate.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -621,17 +621,20 @@ function formatWriterPropertyImpl(property) {
621621
const isVector = type.startsWith("std::vector");
622622
const isMap = type.startsWith("std::unordered_map");
623623
const isOptional = type.startsWith("std::optional");
624+
const isPointer = type.startsWith("CesiumUtility::IntrusivePointer");
624625

625626
const hasDefaultValueGuard =
626627
!isId && !isRequiredEnum && defaultValue !== undefined;
627628
const hasDefaultVectorGuard = hasDefaultValueGuard && isVector;
628629
const hasEmptyGuard = isVector || isMap;
629630
const hasOptionalGuard = isOptional;
631+
const hasPointerGuard = isPointer;
630632
const hasNegativeIndexGuard = isId;
631633
const hasGuard =
632634
hasDefaultValueGuard ||
633635
hasEmptyGuard ||
634636
hasOptionalGuard ||
637+
hasPointerGuard ||
635638
hasNegativeIndexGuard;
636639

637640
if (hasDefaultVectorGuard) {
@@ -653,7 +656,7 @@ function formatWriterPropertyImpl(property) {
653656
result += `if (!obj.${property.cppSafeName}.empty()) {\n`;
654657
} else if (hasNegativeIndexGuard) {
655658
result += `if (obj.${property.cppSafeName} > -1) {\n`;
656-
} else if (hasOptionalGuard) {
659+
} else if (hasOptionalGuard || hasPointerGuard) {
657660
result += `if (obj.${property.cppSafeName}) {\n`;
658661
}
659662

0 commit comments

Comments
 (0)