diff options
| author | Carl Hetherington <cth@carlh.net> | 2023-01-01 21:27:16 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2023-01-07 22:46:32 +0100 |
| commit | cb574824a2e5d280b421e8c4e81fa90b85b877ae (patch) | |
| tree | 15e91a4e95d18ad506e6ef5f591633581170ecf0 /src/asset_map.cc | |
| parent | 05e0890d4bb991fc321ac2e11993eba37d20e077 (diff) | |
Cleanup: rename AssetMap::path -> file for consistency.
Diffstat (limited to 'src/asset_map.cc')
| -rw-r--r-- | src/asset_map.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/asset_map.cc b/src/asset_map.cc index 4b6d828c..c1bafd92 100644 --- a/src/asset_map.cc +++ b/src/asset_map.cc @@ -55,12 +55,12 @@ static string const assetmap_interop_ns = "http://www.digicine.com/PROTO-ASDCP-A static string const assetmap_smpte_ns = "http://www.smpte-ra.org/schemas/429-9/2007/AM"; -AssetMap::AssetMap(boost::filesystem::path path) - : _path(path) +AssetMap::AssetMap(boost::filesystem::path file) + : _file(file) { cxml::Document doc("AssetMap"); - doc.read_file(path); + doc.read_file(file); if (doc.namespace_uri() == assetmap_interop_ns) { _standard = Standard::INTEROP; } else if (doc.namespace_uri() == assetmap_smpte_ns) { @@ -76,7 +76,7 @@ AssetMap::AssetMap(boost::filesystem::path path) _creator = doc.string_child("Creator"); for (auto asset: doc.node_child("AssetList")->node_children("Asset")) { - _assets.push_back(Asset(asset, _path->parent_path(), _standard)); + _assets.push_back(Asset(asset, _file->parent_path(), _standard)); } } @@ -148,7 +148,7 @@ AssetMap::pkl_paths() const void -AssetMap::write_xml(boost::filesystem::path path) const +AssetMap::write_xml(boost::filesystem::path file) const { xmlpp::Document doc; xmlpp::Element* root; @@ -188,11 +188,11 @@ AssetMap::write_xml(boost::filesystem::path path) const auto asset_list = root->add_child("AssetList"); for (auto const& asset: _assets) { - asset.write_xml(asset_list, path.parent_path()); + asset.write_xml(asset_list, file.parent_path()); } - doc.write_to_file_formatted(path.string(), "UTF-8"); - _path = path; + doc.write_to_file_formatted(file.string(), "UTF-8"); + _file = file; } |
