DASH Media Packaging SDK
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator
xml_node.cc
1 // Copyright 2014 Google Inc. All rights reserved.
2 //
3 // Use of this source code is governed by a BSD-style
4 // license that can be found in the LICENSE file or at
5 // https://developers.google.com/open-source/licenses/bsd
6 
7 #include "packager/mpd/base/xml/xml_node.h"
8 
9 #include <limits>
10 #include <set>
11 
12 #include "packager/base/logging.h"
13 #include "packager/base/macros.h"
14 #include "packager/base/strings/string_number_conversions.h"
15 #include "packager/base/sys_byteorder.h"
16 #include "packager/mpd/base/media_info.pb.h"
17 #include "packager/mpd/base/mpd_utils.h"
18 #include "packager/mpd/base/segment_info.h"
19 
20 namespace shaka {
21 
22 using xml::XmlNode;
23 typedef MediaInfo::AudioInfo AudioInfo;
24 typedef MediaInfo::VideoInfo VideoInfo;
25 
26 namespace {
27 const char kEC3Codec[] = "ec-3";
28 
29 std::string RangeToString(const Range& range) {
30  return base::Uint64ToString(range.begin()) + "-" +
31  base::Uint64ToString(range.end());
32 }
33 
34 bool PopulateSegmentTimeline(const std::list<SegmentInfo>& segment_infos,
35  XmlNode* segment_timeline) {
36  for (std::list<SegmentInfo>::const_iterator it = segment_infos.begin();
37  it != segment_infos.end();
38  ++it) {
39  XmlNode s_element("S");
40  s_element.SetIntegerAttribute("t", it->start_time);
41  s_element.SetIntegerAttribute("d", it->duration);
42  if (it->repeat > 0)
43  s_element.SetIntegerAttribute("r", it->repeat);
44 
45  CHECK(segment_timeline->AddChild(s_element.PassScopedPtr()));
46  }
47 
48  return true;
49 }
50 
51 } // namespace
52 
53 namespace xml {
54 
55 XmlNode::XmlNode(const char* name) : node_(xmlNewNode(NULL, BAD_CAST name)) {
56  DCHECK(name);
57  DCHECK(node_);
58 }
59 
60 XmlNode::~XmlNode() {}
61 
62 bool XmlNode::AddChild(scoped_xml_ptr<xmlNode> child) {
63  DCHECK(node_);
64  DCHECK(child);
65  if (!xmlAddChild(node_.get(), child.get()))
66  return false;
67 
68  // Reaching here means the ownership of |child| transfered to |node_|.
69  // Release the pointer so that it doesn't get destructed in this scope.
70  ignore_result(child.release());
71  return true;
72 }
73 
74 bool XmlNode::AddElements(const std::vector<Element>& elements) {
75  for (size_t element_index = 0; element_index < elements.size();
76  ++element_index) {
77  const Element& child_element = elements[element_index];
78  XmlNode child_node(child_element.name.c_str());
79  for (std::map<std::string, std::string>::const_iterator attribute_it =
80  child_element.attributes.begin();
81  attribute_it != child_element.attributes.end(); ++attribute_it) {
82  child_node.SetStringAttribute(attribute_it->first.c_str(),
83  attribute_it->second);
84  }
85  // Recursively set children for the child.
86  if (!child_node.AddElements(child_element.subelements))
87  return false;
88 
89  child_node.SetContent(child_element.content);
90 
91  if (!xmlAddChild(node_.get(), child_node.GetRawPtr())) {
92  LOG(ERROR) << "Failed to set child " << child_element.name
93  << " to parent element "
94  << reinterpret_cast<const char*>(node_->name);
95  return false;
96  }
97  // Reaching here means the ownership of |child_node| transfered to |node_|.
98  // Release the pointer so that it doesn't get destructed in this scope.
99  ignore_result(child_node.Release());
100  }
101  return true;
102 }
103 
104 void XmlNode::SetStringAttribute(const char* attribute_name,
105  const std::string& attribute) {
106  DCHECK(node_);
107  DCHECK(attribute_name);
108  xmlSetProp(node_.get(), BAD_CAST attribute_name, BAD_CAST attribute.c_str());
109 }
110 
111 void XmlNode::SetIntegerAttribute(const char* attribute_name, uint64_t number) {
112  DCHECK(node_);
113  DCHECK(attribute_name);
114  xmlSetProp(node_.get(),
115  BAD_CAST attribute_name,
116  BAD_CAST (base::Uint64ToString(number).c_str()));
117 }
118 
119 void XmlNode::SetFloatingPointAttribute(const char* attribute_name,
120  double number) {
121  DCHECK(node_);
122  DCHECK(attribute_name);
123  xmlSetProp(node_.get(), BAD_CAST attribute_name,
124  BAD_CAST(DoubleToString(number).c_str()));
125 }
126 
127 void XmlNode::SetId(uint32_t id) {
128  SetIntegerAttribute("id", id);
129 }
130 
131 void XmlNode::SetContent(const std::string& content) {
132  DCHECK(node_);
133  xmlNodeSetContent(node_.get(), BAD_CAST content.c_str());
134 }
135 
136 scoped_xml_ptr<xmlNode> XmlNode::PassScopedPtr() {
137  DVLOG(2) << "Passing node_.";
138  DCHECK(node_);
139  return std::move(node_);
140 }
141 
142 xmlNodePtr XmlNode::Release() {
143  DVLOG(2) << "Releasing node_.";
144  DCHECK(node_);
145  return node_.release();
146 }
147 
148 xmlNodePtr XmlNode::GetRawPtr() {
149  return node_.get();
150 }
151 
152 RepresentationBaseXmlNode::RepresentationBaseXmlNode(const char* name)
153  : XmlNode(name) {}
154 RepresentationBaseXmlNode::~RepresentationBaseXmlNode() {}
155 
156 bool RepresentationBaseXmlNode::AddContentProtectionElements(
157  const std::list<ContentProtectionElement>& content_protection_elements) {
158  std::list<ContentProtectionElement>::const_iterator content_protection_it =
159  content_protection_elements.begin();
160  for (; content_protection_it != content_protection_elements.end();
161  ++content_protection_it) {
162  if (!AddContentProtectionElement(*content_protection_it))
163  return false;
164  }
165 
166  return true;
167 }
168 
170  const std::string& scheme_id_uri,
171  const std::string& value) {
172  XmlNode supplemental_property("SupplementalProperty");
173  supplemental_property.SetStringAttribute("schemeIdUri", scheme_id_uri);
174  supplemental_property.SetStringAttribute("value", value);
175  AddChild(supplemental_property.PassScopedPtr());
176 }
177 
178 bool RepresentationBaseXmlNode::AddContentProtectionElement(
179  const ContentProtectionElement& content_protection_element) {
180  XmlNode content_protection_node("ContentProtection");
181 
182  // @value is an optional attribute.
183  if (!content_protection_element.value.empty()) {
184  content_protection_node.SetStringAttribute(
185  "value", content_protection_element.value);
186  }
187  content_protection_node.SetStringAttribute(
188  "schemeIdUri", content_protection_element.scheme_id_uri);
189 
190  typedef std::map<std::string, std::string> AttributesMapType;
191  const AttributesMapType& additional_attributes =
192  content_protection_element.additional_attributes;
193 
194  AttributesMapType::const_iterator attributes_it =
195  additional_attributes.begin();
196  for (; attributes_it != additional_attributes.end(); ++attributes_it) {
197  content_protection_node.SetStringAttribute(attributes_it->first.c_str(),
198  attributes_it->second);
199  }
200 
201  if (!content_protection_node.AddElements(
202  content_protection_element.subelements)) {
203  return false;
204  }
205  return AddChild(content_protection_node.PassScopedPtr());
206 }
207 
208 AdaptationSetXmlNode::AdaptationSetXmlNode()
209  : RepresentationBaseXmlNode("AdaptationSet") {}
210 AdaptationSetXmlNode::~AdaptationSetXmlNode() {}
211 
212 void AdaptationSetXmlNode::AddRoleElement(const std::string& scheme_id_uri,
213  const std::string& value) {
214  XmlNode role("Role");
215  role.SetStringAttribute("schemeIdUri", scheme_id_uri);
216  role.SetStringAttribute("value", value);
217  AddChild(role.PassScopedPtr());
218 }
219 
220 RepresentationXmlNode::RepresentationXmlNode()
221  : RepresentationBaseXmlNode("Representation") {}
222 RepresentationXmlNode::~RepresentationXmlNode() {}
223 
224 bool RepresentationXmlNode::AddVideoInfo(const VideoInfo& video_info,
225  bool set_width,
226  bool set_height,
227  bool set_frame_rate) {
228  if (!video_info.has_width() || !video_info.has_height()) {
229  LOG(ERROR) << "Missing width or height for adding a video info.";
230  return false;
231  }
232 
233  if (video_info.has_pixel_width() && video_info.has_pixel_height()) {
234  SetStringAttribute("sar", base::IntToString(video_info.pixel_width()) +
235  ":" +
236  base::IntToString(video_info.pixel_height()));
237  }
238 
239  if (set_width)
240  SetIntegerAttribute("width", video_info.width());
241  if (set_height)
242  SetIntegerAttribute("height", video_info.height());
243  if (set_frame_rate) {
244  SetStringAttribute("frameRate",
245  base::IntToString(video_info.time_scale()) + "/" +
246  base::IntToString(video_info.frame_duration()));
247  }
248  return true;
249 }
250 
251 bool RepresentationXmlNode::AddAudioInfo(const AudioInfo& audio_info) {
252  if (!AddAudioChannelInfo(audio_info))
253  return false;
254 
255  AddAudioSamplingRateInfo(audio_info);
256  return true;
257 }
258 
259 bool RepresentationXmlNode::AddVODOnlyInfo(const MediaInfo& media_info) {
260  if (media_info.has_media_file_name()) {
261  XmlNode base_url("BaseURL");
262  base_url.SetContent(media_info.media_file_name());
263 
264  if (!AddChild(base_url.PassScopedPtr()))
265  return false;
266  }
267 
268  const bool need_segment_base = media_info.has_index_range() ||
269  media_info.has_init_range() ||
270  media_info.has_reference_time_scale();
271 
272  if (need_segment_base) {
273  XmlNode segment_base("SegmentBase");
274  if (media_info.has_index_range()) {
275  segment_base.SetStringAttribute("indexRange",
276  RangeToString(media_info.index_range()));
277  }
278 
279  if (media_info.has_reference_time_scale()) {
280  segment_base.SetIntegerAttribute("timescale",
281  media_info.reference_time_scale());
282  }
283 
284  if (media_info.has_init_range()) {
285  XmlNode initialization("Initialization");
286  initialization.SetStringAttribute("range",
287  RangeToString(media_info.init_range()));
288 
289  if (!segment_base.AddChild(initialization.PassScopedPtr()))
290  return false;
291  }
292 
293  if (!AddChild(segment_base.PassScopedPtr()))
294  return false;
295  }
296 
297  return true;
298 }
299 
301  const MediaInfo& media_info,
302  const std::list<SegmentInfo>& segment_infos,
303  uint32_t start_number) {
304  XmlNode segment_template("SegmentTemplate");
305  if (media_info.has_reference_time_scale()) {
306  segment_template.SetIntegerAttribute("timescale",
307  media_info.reference_time_scale());
308  }
309 
310  if (media_info.has_init_segment_name()) {
311  // The spec does not allow '$Number$' and '$Time$' in initialization
312  // attribute.
313  // TODO(rkuroiwa, kqyang): Swap this check out with a better check. These
314  // templates allow formatting as well.
315  const std::string& init_segment_name = media_info.init_segment_name();
316  if (init_segment_name.find("$Number$") != std::string::npos ||
317  init_segment_name.find("$Time$") != std::string::npos) {
318  LOG(ERROR) << "$Number$ and $Time$ cannot be used for "
319  "SegmentTemplate@initialization";
320  return false;
321  }
322  segment_template.SetStringAttribute("initialization",
323  media_info.init_segment_name());
324  }
325 
326  if (media_info.has_segment_template()) {
327  segment_template.SetStringAttribute("media", media_info.segment_template());
328 
329  // TODO(rkuroiwa): Need a better check. $$Number is legitimate but not a
330  // template.
331  if (media_info.segment_template().find("$Number") != std::string::npos) {
332  DCHECK_GE(start_number, 1u);
333  segment_template.SetIntegerAttribute("startNumber", start_number);
334  }
335  }
336 
337  // TODO(rkuroiwa): Find out when a live MPD doesn't require SegmentTimeline.
338  XmlNode segment_timeline("SegmentTimeline");
339 
340  return PopulateSegmentTimeline(segment_infos, &segment_timeline) &&
341  segment_template.AddChild(segment_timeline.PassScopedPtr()) &&
342  AddChild(segment_template.PassScopedPtr());
343 }
344 
345 bool RepresentationXmlNode::AddAudioChannelInfo(const AudioInfo& audio_info) {
346  std::string audio_channel_config_scheme;
347  std::string audio_channel_config_value;
348 
349  if (audio_info.codec() == kEC3Codec) {
350  // Convert EC3 channel map into string of hexadecimal digits. Spec: DASH-IF
351  // Interoperability Points v3.0 9.2.1.2.
352  const uint16_t ec3_channel_map =
353  base::HostToNet16(audio_info.codec_specific_data().ec3_channel_map());
354  audio_channel_config_value =
355  base::HexEncode(&ec3_channel_map, sizeof(ec3_channel_map));
356  audio_channel_config_scheme =
357  "tag:dolby.com,2014:dash:audio_channel_configuration:2011";
358  } else {
359  audio_channel_config_value = base::UintToString(audio_info.num_channels());
360  audio_channel_config_scheme =
361  "urn:mpeg:dash:23003:3:audio_channel_configuration:2011";
362  }
363 
364  XmlNode audio_channel_config("AudioChannelConfiguration");
365  audio_channel_config.SetStringAttribute("schemeIdUri",
366  audio_channel_config_scheme);
367  audio_channel_config.SetStringAttribute("value", audio_channel_config_value);
368 
369  return AddChild(audio_channel_config.PassScopedPtr());
370 }
371 
372 // MPD expects one number for sampling frequency, or if it is a range it should
373 // be space separated.
374 void RepresentationXmlNode::AddAudioSamplingRateInfo(
375  const AudioInfo& audio_info) {
376  if (audio_info.has_sampling_frequency())
377  SetIntegerAttribute("audioSamplingRate", audio_info.sampling_frequency());
378 }
379 
380 } // namespace xml
381 } // namespace shaka
bool AddVideoInfo(const MediaInfo::VideoInfo &video_info, bool set_width, bool set_height, bool set_frame_rate)
Definition: xml_node.cc:224
void SetFloatingPointAttribute(const char *attribute_name, double number)
Definition: xml_node.cc:119
scoped_xml_ptr< xmlNode > PassScopedPtr()
Definition: xml_node.cc:136
XmlNode(const char *name)
Definition: xml_node.cc:55
bool AddVODOnlyInfo(const MediaInfo &media_info)
Definition: xml_node.cc:259
void SetStringAttribute(const char *attribute_name, const std::string &attribute)
Definition: xml_node.cc:104
bool AddChild(scoped_xml_ptr< xmlNode > child)
Definition: xml_node.cc:62
xmlNodePtr Release()
Definition: xml_node.cc:142
bool AddLiveOnlyInfo(const MediaInfo &media_info, const std::list< SegmentInfo > &segment_infos, uint32_t start_number)
Definition: xml_node.cc:300
void SetId(uint32_t id)
Definition: xml_node.cc:127
bool AddElements(const std::vector< Element > &elements)
Adds Elements to this node using the Element struct.
Definition: xml_node.cc:74
std::string DoubleToString(double value)
Definition: mpd_utils.cc:174
void AddSupplementalProperty(const std::string &scheme_id_uri, const std::string &value)
Definition: xml_node.cc:169
void SetIntegerAttribute(const char *attribute_name, uint64_t number)
Definition: xml_node.cc:111
void AddRoleElement(const std::string &scheme_id_uri, const std::string &value)
Definition: xml_node.cc:212
void SetContent(const std::string &content)
Definition: xml_node.cc:131
bool AddAudioInfo(const MediaInfo::AudioInfo &audio_info)
Definition: xml_node.cc:251
xmlNodePtr GetRawPtr()
Definition: xml_node.cc:148