summaryrefslogtreecommitdiff
path: root/src/pkl.cc
blob: 0ede1d57e08eafd3c6a46cfb4b8539744f6d57f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <iostream>
#include "pkl.h"

using namespace std;
using namespace boost;
using namespace libdcp;

PKL::PKL (string file)
	: XMLFile (file, "PackingList")
{
	id = string_node ("Id");
	annotation_text = string_node ("AnnotationText");
	issue_date = string_node ("IssueDate");
	issuer = string_node ("Issuer");
	creator = string_node ("Creator");
	assets = sub_nodes<PKLAsset> ("AssetList", "Asset");
}

PKLAsset::PKLAsset (xmlpp::Node const * node)
	: XMLNode (node)
{
	id = string_node ("Id");
	annotation_text = optional_string_node ("AnnotationText");
	hash = string_node ("Hash");
	size = int64_node ("Size");
	type = string_node ("Type");
	original_file_name = optional_string_node ("OriginalFileName");
}
	
shared_ptr<PKLAsset>
PKL::asset_from_id (string id) const
{
	for (list<shared_ptr<PKLAsset> >::const_iterator i = assets.begin (); i != assets.end(); ++i) {
		if ((*i)->id == id) {
			return *i;
		}
	}

	return shared_ptr<PKLAsset> ();
}