// Copyright 2014 Google Inc. All rights reserved. // // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file or at // https://developers.google.com/open-source/licenses/bsd // // scoped_ptr alias for libxml2 objects. Deleters for the objects are also // defined in this file. #ifndef MPD_BASE_XML_SCOPED_XML_PTR_H_ #define MPD_BASE_XML_SCOPED_XML_PTR_H_ #include "base/memory/scoped_ptr.h" #include "third_party/libxml/src/include/libxml/tree.h" #include "third_party/libxml/src/include/libxml/xmlschemas.h" namespace dash_packager { namespace xml { /// Deleter functor for deleting libxml2 pointers. This is used with /// ScopedXmlPtr. struct XmlDeleter { // Called by scoped_ptr. http://goo.gl/YaLbcS inline void operator()(xmlSchemaParserCtxtPtr ptr) const { xmlSchemaFreeParserCtxt(ptr); } inline void operator()(xmlSchemaValidCtxtPtr ptr) const { xmlSchemaFreeValidCtxt(ptr); } inline void operator()(xmlSchemaPtr ptr) const { xmlSchemaFree(ptr); } inline void operator()(xmlNodePtr ptr) const { xmlFreeNode(ptr); } inline void operator()(xmlDocPtr ptr) const { xmlFreeDoc(ptr); } inline void operator()(xmlChar* ptr) const { xmlFree(ptr); } }; // C++11 allows template alias but standards before it do not. This struct is // for aliasing scoped_ptr with libxml2 object deleter. /// scoped_ptr for libxml2 resources. template struct ScopedXmlPtr { typedef scoped_ptr type; }; } // namespace xml } // namespace dash_packager #endif // MPD_BASE_XML_SCOPED_XML_PTR_H_