* Copyright (c) 1999-2000, Eric Moon.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions, and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions, and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef __XML_H__
#define __XML_H__
#include "IPersistent.h"
#include "XMLElementMapping.h"
#include <map>
#include <set>
#include <DataIO.h>
#include <Locker.h>
#include <Mime.h>
#include <String.h>
#include "cortex_defs.h"
__BEGIN_CORTEX_NAMESPACE
class Importer;
class XML {
friend class Importer;
public:
class DocumentType;
public:
static void AddDocumentType(
XML::DocumentType* type);
public:
static status_t Identify(
BDataIO* stream,
DocumentType** outType,
std::list<BString>* outErrors);
static status_t Read(
BDataIO* stream,
IPersistent** outObject,
std::list<BString>* outErrors);
static status_t Read(
BDataIO* stream,
IPersistent** outObject,
ImportContext* context);
static status_t Read(
BDataIO* stream,
IPersistent* rootObject,
XML::DocumentType* documentType,
std::list<BString>* outErrors);
static status_t Read(
BDataIO* stream,
IPersistent* rootObject,
XML::DocumentType* documentType,
ImportContext* context);
static status_t Write(
BDataIO* stream,
IPersistent* object,
BString* outError);
private:
typedef std::map<BString, DocumentType*> doc_type_map;
static doc_type_map s_docTypeMap;
static BLocker s_docTypeLock;
private:
static status_t _DoRead(
BDataIO* stream,
Importer& i,
std::list<BString>* outErrors);
};
class XML::DocumentType {
public:
const BString rootElement;
const BMimeType mimeType;
static const BMimeType s_defaultMimeType;
public:
virtual ~DocumentType();
DocumentType(
const char* _rootElement,
const char* _mimeType=0);
public:
virtual status_t addMapping(
XMLElementMapping* mapping);
virtual IPersistent* objectFor(
const char* element);
private:
typedef std::set<XMLElementMapping*, _mapping_ptr_less> mapping_set;
mapping_set m_mappingSet;
};
__END_CORTEX_NAMESPACE
#endif