diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-12-22 01:59:11 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-12-22 23:43:03 +0100 |
| commit | 4ddd146759e5346bd6c4b4444ee1424327f14a2a (patch) | |
| tree | c927e85f5a2a040788b159f6591c3679b9bfab49 /src/pkl.cc | |
| parent | f657337815c5f21e2edd99fdaa501f0ff8acc6b1 (diff) | |
Write OriginalFileName tags in PKL (DoM #2394).
Without these it EasyDCP gives errors like
"Id field in PKL must match uuid in asset"
"Each Id used in the PKL files must be unique or reference the same file"
which seem wrong but, as usual, here we are.
Diffstat (limited to 'src/pkl.cc')
| -rw-r--r-- | src/pkl.cc | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -87,9 +87,9 @@ PKL::PKL (boost::filesystem::path file) void -PKL::add_asset (std::string id, boost::optional<std::string> annotation_text, std::string hash, int64_t size, std::string type) +PKL::add_asset(std::string id, boost::optional<std::string> annotation_text, std::string hash, int64_t size, std::string type, std::string original_filename) { - _asset_list.push_back (make_shared<Asset>(id, annotation_text, hash, size, type)); + _asset_list.push_back(make_shared<Asset>(id, annotation_text, hash, size, type, original_filename)); } @@ -122,6 +122,9 @@ PKL::write_xml (boost::filesystem::path file, shared_ptr<const CertificateChain> asset->add_child("Hash")->add_child_text (i->hash()); asset->add_child("Size")->add_child_text (raw_convert<string>(i->size())); asset->add_child("Type")->add_child_text (i->type()); + if (auto filename = i->original_filename()) { + asset->add_child("OriginalFileName")->add_child_text(*filename); + } } indent (pkl, 0); |
