Files
lib3mf/Include/Common/Platform/NMR_XmlReader_Native.h
SaraP f8c998f6ff lib3mf :
- primo commit.
2021-09-07 16:50:23 +02:00

180 lines
6.6 KiB
C++

/*++
Copyright (C) 2019 3MF Consortium
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.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS 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.
Abstract:
NMR_XMLReader_Native.h defines a XML reader class with a native XML parsing implementation.
--*/
#ifndef __NMR_XMLREADER_NATIVE
#define __NMR_XMLREADER_NATIVE
#include "Common/Platform/NMR_XmlReader.h"
#include "Common/3MF_ProgressMonitor.h"
#include <memory>
#include <vector>
#include <string>
#include <map>
#include <set>
#include <array>
#define NMR_MAXXMLNAMELENGTH 1000000
#define NMR_MAXXMLSTRINGLENGTH 1000000
#define NMR_MAXXMLDEPTH 1024
#define NMR_NATIVEXMLREADER_MINBUFFERCAPACITY 1024
#define NMR_NATIVEXMLREADER_MAXBUFFERCAPACITY (1024 * 1024 * 1024)
#define NMR_NATIVEXMLREADER_BUFFERMARGIN 8
#define NMR_NATIVEXMLTYPE_NONE 0
#define NMR_NATIVEXMLTYPE_TEXT 1
#define NMR_NATIVEXMLTYPE_ELEMENT 2
#define NMR_NATIVEXMLTYPE_ELEMENTEND 3
#define NMR_NATIVEXMLTYPE_CLOSEELEMENT 4
#define NMR_NATIVEXMLTYPE_ATTRIBNAME 5
#define NMR_NATIVEXMLTYPE_ATTRIBVALUE 6
#define NMR_NATIVEXMLTYPE_COMMENT 7
#define NMR_NATIVEXMLTYPE_CDATA 8
#define NMR_NATIVEXMLTYPE_PROCESSINGINSTRUCTION 9
#define NMR_NATIVEXMLTYPE_PROCESSINGINSTRUCTIONEND 10
#define NMR_NATIVEXMLNS_XML_PREFIX "xml"
#define NMR_NATIVEXMLNS_XML_URI "http://www.w3.org/XML/1998/namespace"
#define NMR_NATIVEXMLNS_XMLNS_PREFIX "xmlns"
#define NMR_NATIVEXMLNS_XMLNS_URI "http://www.w3.org/2000/xmlns/"
namespace NMR {
class CXmlReader_Native : public CXmlReader {
private:
nfUint32 m_progressCounter;
PProgressMonitor m_pProgressMonitor;
nfUint32 m_cbBufferCapacity;
// Allocated memory of current and next chunk
std::vector<nfChar> m_UTF8Buffer1;
std::vector<nfChar> m_UTF8Buffer2;
// Double buffer pointers to UTF16BufferX
std::vector<nfChar> * m_pCurrentBuffer;
std::vector<nfChar> * m_pNextBuffer;
// parsed entity list
std::vector<nfChar *> m_CurrentEntityList;
std::vector<nfChar *> m_CurrentEntityPrefixes;
std::vector<nfByte> m_CurrentEntityTypes;
void performEscapeStringDecoding();
// Insert List for 0 characters
nfUint32 m_nZeroInsertIndex;
std::vector<nfChar *> m_ZeroInsertArray;
void pushZeroInsert(_In_ nfChar * pChar);
void performZeroInserts();
void clearZeroInserts();
// how large is the current buffer
nfUint32 m_nCurrentBufferSize;
nfUint32 m_nCurrentEntityCount;
nfUint32 m_nCurrentVerifiedEntityCount;
nfUint32 m_nCurrentFullEntityCount;
nfUint32 m_nCurrentEntityIndex;
nfChar * m_pCurrentEntityPointer;
// Parsing Flag
nfBool m_bIsEOF;
// How many characters have to be transferred into the next buffer?
nfUint32 m_cbCurrentOverflowSize;
nfChar * m_pCurrentName;
nfChar * m_pCurrentPrefix;
nfChar * m_pCurrentElementName;
nfChar * m_pCurrentElementPrefix;
nfChar * m_pCurrentValue;
nfChar m_cNullString;
// NameSpace handling
std::string m_sDefaultNameSpace;
nfUint32 m_cbDefaultNameSpaceLength;
nfBool m_bNameSpaceIsAttribute;
std::map<std::string, std::string> m_sNameSpaces;
void registerNameSpace(_In_ std::string sPrefix, _In_ std::string sURI);
// Fill next buffer chunk
nfBool ensureFilledBuffer();
void readNextBufferFromStream();
// Parse Text Buffer
nfChar * parseUnknown(_In_ nfChar * pszStart, _In_ nfChar * pszEnd);
nfChar * parseText(_In_ nfChar * pszStart, _In_ nfChar * pszEnd);
nfChar * parseElement(_In_ nfChar * pszStart, _In_ nfChar * pszEnd);
nfChar * parseComment(_In_ nfChar * pszStart, _In_ nfChar * pszEnd);
nfChar * parseEndElement(_In_ nfChar * pszStart, _In_ nfChar * pszEnd);
nfChar * parseCloseElement(_In_ nfChar * pszStart, _In_ nfChar * pszEnd);
nfChar * parseAttributes(_In_ nfChar * pszStart, _In_ nfChar * pszEnd);
nfChar * skipSpaces(_In_ nfChar * pszStart, _In_ nfChar * pszEnd);
nfChar * parseAttributeName(_In_ nfChar * pszStart, _In_ nfChar * pszEnd);
nfChar * parseAttributeValue(_In_ nfChar * pszStart, _In_ nfChar * pszEnd);
nfChar * parseAttributeValueDoubleQuote(_In_ nfChar * pszStart, _In_ nfChar * pszEnd);
nfChar * parseAttributeValueSingleQuote(_In_ nfChar * pszStart, _In_ nfChar * pszEnd);
nfChar * parseProcessingInstruction(_In_ nfChar * pszStart, _In_ nfChar * pszEnd);
nfChar * parseCloseProcessingInstruction(_In_ nfChar * pszStart, _In_ nfChar * pszEnd);
void pushEntity(_In_ nfChar * pszwEntityStartChar, _In_ nfChar * pszwEntityEndDelimiter, _In_ nfChar * pszwNextEntityChar, _In_ nfByte nType, _In_ nfBool bParseForNamespaces, _In_ nfBool bEntityIsFinished);
public:
CXmlReader_Native(_In_ PImportStream pImportStream, _In_ nfUint32 cbBufferCapacity, _In_ PProgressMonitor pProgressMonitor);
~CXmlReader_Native();
virtual void GetValue(_Outptr_result_buffer_maybenull_(*pcwchValue + 1) const nfChar ** ppwszValue, _Out_opt_ nfUint32 *pcwchValue);
virtual void GetLocalName(_Outptr_result_buffer_maybenull_(*pcwchLocalName + 1) const nfChar ** ppwszLocalName, _Out_opt_ nfUint32 *pcwchLocalName);
virtual void GetNamespaceURI(_Outptr_result_buffer_maybenull_(*pcwchValue + 1) const nfChar ** ppwszValue, _Out_opt_ nfUint32 *pcwchValue);
virtual bool GetNamespaceURI(const std::string &sNameSpacePrefix, std::string &sNameSpaceURI);
virtual bool NamespaceRegistered(const std::string &sNameSpaceURI);
virtual nfBool Read(_Out_ eXmlReaderNodeType & NodeType);
virtual nfBool IsEOF();
virtual nfBool IsEmptyElement();
virtual nfBool MoveToFirstAttribute();
virtual nfBool MoveToNextAttribute();
virtual nfBool IsDefault();
virtual void CloseElement();
};
typedef std::shared_ptr<CXmlReader_Native> PXmlReader_Native;
}
#endif // __NMR_XMLREADER_NATIVE