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/stl_util.h"
15 #include "packager/base/sys_byteorder.h"
16 #include "packager/base/strings/string_number_conversions.h"
17 #include "packager/mpd/base/media_info.pb.h"
18 #include "packager/mpd/base/segment_info.h"
19 
20 namespace edash_packager {
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(),
124  BAD_CAST attribute_name,
125  BAD_CAST (base::DoubleToString(number).c_str()));
126 }
127 
128 void XmlNode::SetId(uint32_t id) {
129  SetIntegerAttribute("id", id);
130 }
131 
132 void XmlNode::SetContent(const std::string& content) {
133  DCHECK(node_);
134  xmlNodeSetContent(node_.get(), BAD_CAST content.c_str());
135 }
136 
137 scoped_xml_ptr<xmlNode> XmlNode::PassScopedPtr() {
138  DVLOG(2) << "Passing node_.";
139  DCHECK(node_);
140  return node_.Pass();
141 }
142 
143 xmlNodePtr XmlNode::Release() {
144  DVLOG(2) << "Releasing node_.";
145  DCHECK(node_);
146  return node_.release();
147 }
148 
149 xmlNodePtr XmlNode::GetRawPtr() {
150  return node_.get();
151 }
152 
153 RepresentationBaseXmlNode::RepresentationBaseXmlNode(const char* name)
154  : XmlNode(name) {}
155 RepresentationBaseXmlNode::~RepresentationBaseXmlNode() {}
156 
157 bool RepresentationBaseXmlNode::AddContentProtectionElements(
158  const std::list<ContentProtectionElement>& content_protection_elements) {
159  std::list<ContentProtectionElement>::const_iterator content_protection_it =
160  content_protection_elements.begin();
161  for (; content_protection_it != content_protection_elements.end();
162  ++content_protection_it) {
163  if (!AddContentProtectionElement(*content_protection_it))
164  return false;
165  }
166 
167  return true;
168 }
169 
170 bool RepresentationBaseXmlNode::AddContentProtectionElement(
171  const ContentProtectionElement& content_protection_element) {
172  XmlNode content_protection_node("ContentProtection");
173 
174  // @value is an optional attribute.
175  if (!content_protection_element.value.empty()) {
176  content_protection_node.SetStringAttribute(
177  "value", content_protection_element.value);
178  }
179  content_protection_node.SetStringAttribute(
180  "schemeIdUri", content_protection_element.scheme_id_uri);
181 
182  typedef std::map<std::string, std::string> AttributesMapType;
183  const AttributesMapType& additional_attributes =
184  content_protection_element.additional_attributes;
185 
186  AttributesMapType::const_iterator attributes_it =
187  additional_attributes.begin();
188  for (; attributes_it != additional_attributes.end(); ++attributes_it) {
189  content_protection_node.SetStringAttribute(attributes_it->first.c_str(),
190  attributes_it->second);
191  }
192 
193  if (!content_protection_node.AddElements(
194  content_protection_element.subelements)) {
195  return false;
196  }
197  return AddChild(content_protection_node.PassScopedPtr());
198 }
199 
200 AdaptationSetXmlNode::AdaptationSetXmlNode()
201  : RepresentationBaseXmlNode("AdaptationSet") {}
202 AdaptationSetXmlNode::~AdaptationSetXmlNode() {}
203 
204 void AdaptationSetXmlNode::AddRoleElement(const std::string& scheme_id_uri,
205  const std::string& value) {
206  XmlNode role("Role");
207  role.SetStringAttribute("schemeIdUri", scheme_id_uri);
208  role.SetStringAttribute("value", value);
209  AddChild(role.PassScopedPtr());
210 }
211 
212 RepresentationXmlNode::RepresentationXmlNode()
213  : RepresentationBaseXmlNode("Representation") {}
214 RepresentationXmlNode::~RepresentationXmlNode() {}
215 
216 bool RepresentationXmlNode::AddVideoInfo(const VideoInfo& video_info,
217  bool set_width,
218  bool set_height,
219  bool set_frame_rate) {
220  if (!video_info.has_width() || !video_info.has_height()) {
221  LOG(ERROR) << "Missing width or height for adding a video info.";
222  return false;
223  }
224 
225  if (video_info.has_pixel_width() && video_info.has_pixel_height()) {
226  SetStringAttribute("sar", base::IntToString(video_info.pixel_width()) +
227  ":" +
228  base::IntToString(video_info.pixel_height()));
229  }
230 
231  if (set_width)
232  SetIntegerAttribute("width", video_info.width());
233  if (set_height)
234  SetIntegerAttribute("height", video_info.height());
235  if (set_frame_rate) {
236  SetStringAttribute("frameRate",
237  base::IntToString(video_info.time_scale()) + "/" +
238  base::IntToString(video_info.frame_duration()));
239  }
240  return true;
241 }
242 
243 bool RepresentationXmlNode::AddAudioInfo(const AudioInfo& audio_info) {
244  if (!AddAudioChannelInfo(audio_info))
245  return false;
246 
247  AddAudioSamplingRateInfo(audio_info);
248  return true;
249 }
250 
251 bool RepresentationXmlNode::AddVODOnlyInfo(const MediaInfo& media_info) {
252  if (media_info.has_media_file_name()) {
253  XmlNode base_url("BaseURL");
254  base_url.SetContent(media_info.media_file_name());
255 
256  if (!AddChild(base_url.PassScopedPtr()))
257  return false;
258  }
259 
260  const bool need_segment_base = media_info.has_index_range() ||
261  media_info.has_init_range() ||
262  media_info.has_reference_time_scale();
263 
264  if (need_segment_base) {
265  XmlNode segment_base("SegmentBase");
266  if (media_info.has_index_range()) {
267  segment_base.SetStringAttribute("indexRange",
268  RangeToString(media_info.index_range()));
269  }
270 
271  if (media_info.has_reference_time_scale()) {
272  segment_base.SetIntegerAttribute("timescale",
273  media_info.reference_time_scale());
274  }
275 
276  if (media_info.has_init_range()) {
277  XmlNode initialization("Initialization");
278  initialization.SetStringAttribute("range",
279  RangeToString(media_info.init_range()));
280 
281  if (!segment_base.AddChild(initialization.PassScopedPtr()))
282  return false;
283  }
284 
285  if (!AddChild(segment_base.PassScopedPtr()))
286  return false;
287  }
288 
289  if (media_info.has_media_duration_seconds()) {
290  // Adding 'duration' attribute, so that this information can be used when
291  // generating one MPD file. This should be removed from the final MPD.
292  SetFloatingPointAttribute("duration", media_info.media_duration_seconds());
293  }
294 
295  return true;
296 }
297 
299  const MediaInfo& media_info,
300  const std::list<SegmentInfo>& segment_infos,
301  uint32_t start_number) {
302  XmlNode segment_template("SegmentTemplate");
303  if (media_info.has_reference_time_scale()) {
304  segment_template.SetIntegerAttribute("timescale",
305  media_info.reference_time_scale());
306  }
307 
308  if (media_info.has_init_segment_name()) {
309  // The spec does not allow '$Number$' and '$Time$' in initialization
310  // attribute.
311  // TODO(rkuroiwa, kqyang): Swap this check out with a better check. These
312  // templates allow formatting as well.
313  const std::string& init_segment_name = media_info.init_segment_name();
314  if (init_segment_name.find("$Number$") != std::string::npos ||
315  init_segment_name.find("$Time$") != std::string::npos) {
316  LOG(ERROR) << "$Number$ and $Time$ cannot be used for "
317  "SegmentTemplate@initialization";
318  return false;
319  }
320  segment_template.SetStringAttribute("initialization",
321  media_info.init_segment_name());
322  }
323 
324  if (media_info.has_segment_template()) {
325  segment_template.SetStringAttribute("media", media_info.segment_template());
326 
327  // TODO(rkuroiwa): Need a better check. $$Number is legitimate but not a
328  // template.
329  if (media_info.segment_template().find("$Number") != std::string::npos) {
330  DCHECK_GE(start_number, 1u);
331  segment_template.SetIntegerAttribute("startNumber", start_number);
332  }
333  }
334 
335  // TODO(rkuroiwa): Find out when a live MPD doesn't require SegmentTimeline.
336  XmlNode segment_timeline("SegmentTimeline");
337 
338  return PopulateSegmentTimeline(segment_infos, &segment_timeline) &&
339  segment_template.AddChild(segment_timeline.PassScopedPtr()) &&
340  AddChild(segment_template.PassScopedPtr());
341 }
342 
343 bool RepresentationXmlNode::AddAudioChannelInfo(const AudioInfo& audio_info) {
344  std::string audio_channel_config_scheme;
345  std::string audio_channel_config_value;
346 
347  if (audio_info.codec() == kEC3Codec) {
348  // Convert EC3 channel map into string of hexadecimal digits. Spec: DASH-IF
349  // Interoperability Points v3.0 9.2.1.2.
350  const uint16_t ec3_channel_map =
351  base::HostToNet16(audio_info.codec_specific_data().ec3_channel_map());
352  audio_channel_config_value =
353  base::HexEncode(&ec3_channel_map, sizeof(ec3_channel_map));
354  audio_channel_config_scheme =
355  "tag:dolby.com,2014:dash:audio_channel_configuration:2011";
356  } else {
357  audio_channel_config_value = base::UintToString(audio_info.num_channels());
358  audio_channel_config_scheme =
359  "urn:mpeg:dash:23003:3:audio_channel_configuration:2011";
360  }
361 
362  XmlNode audio_channel_config("AudioChannelConfiguration");
363  audio_channel_config.SetStringAttribute("schemeIdUri",
364  audio_channel_config_scheme);
365  audio_channel_config.SetStringAttribute("value", audio_channel_config_value);
366 
367  return AddChild(audio_channel_config.PassScopedPtr());
368 }
369 
370 // MPD expects one number for sampling frequency, or if it is a range it should
371 // be space separated.
372 void RepresentationXmlNode::AddAudioSamplingRateInfo(
373  const AudioInfo& audio_info) {
374  if (audio_info.has_sampling_frequency())
375  SetIntegerAttribute("audioSamplingRate", audio_info.sampling_frequency());
376 }
377 
378 } // namespace xml
379 } // namespace edash_packager
bool AddVODOnlyInfo(const MediaInfo &media_info)
Definition: xml_node.cc:251
bool AddLiveOnlyInfo(const MediaInfo &media_info, const std::list< SegmentInfo > &segment_infos, uint32_t start_number)
Definition: xml_node.cc:298
void SetStringAttribute(const char *attribute_name, const std::string &attribute)
Definition: xml_node.cc:104
void SetFloatingPointAttribute(const char *attribute_name, double number)
Definition: xml_node.cc:119
bool AddAudioInfo(const MediaInfo::AudioInfo &audio_info)
Definition: xml_node.cc:243
void SetId(uint32_t id)
Definition: xml_node.cc:128
bool AddChild(scoped_xml_ptr< xmlNode > child)
Definition: xml_node.cc:62
XmlNode(const char *name)
Definition: xml_node.cc:55
void SetIntegerAttribute(const char *attribute_name, uint64_t number)
Definition: xml_node.cc:111
bool AddElements(const std::vector< Element > &elements)
Adds Elements to this node using the Element struct.
Definition: xml_node.cc:74
scoped_xml_ptr< xmlNode > PassScopedPtr()
Definition: xml_node.cc:137
void SetContent(const std::string &content)
Definition: xml_node.cc:132
bool AddVideoInfo(const MediaInfo::VideoInfo &video_info, bool set_width, bool set_height, bool set_frame_rate)
Definition: xml_node.cc:216
void AddRoleElement(const std::string &scheme_id_uri, const std::string &value)
Definition: xml_node.cc:204