mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
101 lines
3.6 KiB
C++
101 lines
3.6 KiB
C++
#ifndef JEZUK_DOM_DOMIMPLEMENTATION_H
|
|
#define JEZUK_DOM_DOMIMPLEMENTATION_H
|
|
|
|
////////////////////////////
|
|
// C++ DOM definition
|
|
//
|
|
// $Id$
|
|
////////////////////////////
|
|
|
|
#include <DOM/Proxy.hpp>
|
|
#include <Arabica/StringAdaptor.hpp>
|
|
|
|
namespace Arabica
|
|
{
|
|
namespace DOM
|
|
{
|
|
|
|
template<class stringT, class string_adaptorT> class Document;
|
|
template<class stringT, class string_adaptorT> class DocumentType;
|
|
template<class stringT, class string_adaptorT> class DOMImplementation_impl;
|
|
|
|
template<class stringT, class string_adaptorT = Arabica::default_string_adaptor<stringT> >
|
|
class DOMImplementation
|
|
{
|
|
public:
|
|
DOMImplementation() : impl_(0) { }
|
|
DOMImplementation(DOMImplementation_impl<stringT, string_adaptorT>* impl) : impl_(impl) { }
|
|
DOMImplementation(const DOMImplementation& rhs) : impl_(rhs.impl_) { }
|
|
|
|
operator bool() const { return impl_; }
|
|
bool operator==(const DOMImplementation& rhs) const { return impl_ == rhs.impl_; }
|
|
bool operator!=(const DOMImplementation& rhs) const { return impl_ != rhs.impl_; }
|
|
bool operator==(int dummy) const { return impl_ == dummy; }
|
|
bool operator!=(int dummy) const { return impl_ != dummy; }
|
|
|
|
DOMImplementation& operator=(const DOMImplementation& rhs)
|
|
{
|
|
impl_ = rhs.impl_;
|
|
return *this;
|
|
} // operator=
|
|
|
|
bool hasFeature(const stringT& feature, const stringT& version) const
|
|
{
|
|
return impl_->hasFeature(feature, version);
|
|
} // hasFeature
|
|
|
|
DocumentType<stringT, string_adaptorT> createDocumentType(const stringT& qualifiedName,
|
|
const stringT& publicId,
|
|
const stringT& systemId) const
|
|
{
|
|
return impl_->createDocumentType(qualifiedName, publicId, systemId);
|
|
} // createDocumentType
|
|
|
|
Document<stringT, string_adaptorT> createDocument(const stringT& namespaceURI,
|
|
const stringT& qualifiedName,
|
|
DocumentType<stringT, string_adaptorT> docType) const
|
|
{
|
|
return impl_->createDocument(namespaceURI, qualifiedName, docType.dtImpl());
|
|
} // createDocument
|
|
|
|
private:
|
|
Proxy<DOMImplementation_impl<stringT, string_adaptorT> > impl_;
|
|
}; // class DOMImplementation
|
|
|
|
/////////////////////////////////////////////////
|
|
template<class stringT, class string_adaptorT> class Document_impl;
|
|
template<class stringT, class string_adaptorT> class DocumentType_impl;
|
|
|
|
// derive from this class to implement your own
|
|
// DOM provider
|
|
template<class stringT, class string_adaptorT>
|
|
class DOMImplementation_impl
|
|
{
|
|
public:
|
|
///////////////////////////////////////////////////////
|
|
// Ref counting
|
|
virtual void addRef() = 0;
|
|
virtual void releaseRef() = 0;
|
|
|
|
///////////////////////////////////////////////////////
|
|
// DOM implementation methods
|
|
virtual bool hasFeature(const stringT& feature, const stringT& version) const = 0;
|
|
|
|
virtual DocumentType_impl<stringT, string_adaptorT>* createDocumentType(const stringT& qualifiedName,
|
|
const stringT& publicId,
|
|
const stringT& systemId) = 0;
|
|
|
|
virtual Document_impl<stringT, string_adaptorT>* createDocument(const stringT& namespaceURI,
|
|
const stringT& qualifiedName,
|
|
DocumentType_impl<stringT, string_adaptorT>* docType) = 0;
|
|
|
|
protected:
|
|
DOMImplementation_impl() { }
|
|
virtual ~DOMImplementation_impl() { }
|
|
}; // class DOMImplementation_impl
|
|
|
|
} // namespace DOM
|
|
} // namespace Arabica
|
|
|
|
#endif // JEZUK_DOM_NODE_H
|
|
// end of file
|