2012-05-30 00:19:22 +02:00
|
|
|
/***************************************************************************
|
2012-04-21 00:57:18 +02:00
|
|
|
|
2012-05-30 00:19:22 +02:00
|
|
|
(c) 2012 Adrien Prokopowicz <prokopy@users.sourceforge.net>
|
2012-04-21 00:57:18 +02:00
|
|
|
|
2012-05-30 00:19:22 +02:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
[GB.XML]
OPT : A few compilation optimizations in headers inclusions.
OPT : Use of separated internal classes of gambas objects. This might prevent from a lot of problems.
OPT : Strings are not stored as wchar_t* anymore, but as simple char*, and are converted only when necessary (like UTF8 characters verification).
OPT : Does not use STL classes anymore. They are too slow. Uses now handmade classes.
OPT : Nodes are now internally linked to their brothers, so it makes find them really fasters, and allows no longer use of external linked list.
OPT : When creating new nodes, linked Gambas objects are created only when necessary, so it makes internals instanciations very faster (such as the parser).
OPT : Handmade string/memory classes and functions are now separated from the main.cpp component file.
OPT : Use specialized memory management functions (like memcpy, memchr ...) into the parser. They are really faster than C loops, and speeds up the parser for documents that have a lot of plain text.
OPT : Internally, the stream parser (XmlReader) takes only one char, not a unuseful wole string object.
OPT : Does not updates debugging data when parsing a file. They will be generated only if an error is raised (not implemented yet). It will allow a speedier parser and more precise informations.
BUG : When loading a document from a file, now correctly releases the file data.
BUG : Solved a few XmlReader uninitialized variables, that could make the stream parser crash or returns strange results.
git-svn-id: svn://localhost/gambas/trunk@4737 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2012-05-17 22:49:54 +02:00
|
|
|
|
2012-05-30 00:19:22 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2012-04-21 00:57:18 +02:00
|
|
|
|
2012-05-30 00:19:22 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA.
|
2012-04-30 01:51:39 +02:00
|
|
|
|
2012-05-30 00:19:22 +02:00
|
|
|
***************************************************************************/
|
2012-04-30 01:51:39 +02:00
|
|
|
|
2012-05-30 00:19:22 +02:00
|
|
|
#ifndef ELEMENT_H
|
|
|
|
#define ELEMENT_H
|
2012-04-30 01:51:39 +02:00
|
|
|
|
2012-05-30 00:19:22 +02:00
|
|
|
#include "node.h"
|
2012-04-30 01:51:39 +02:00
|
|
|
|
2012-05-30 00:19:22 +02:00
|
|
|
class Attribute : public Node
|
[GB.XML]
OPT : A few compilation optimizations in headers inclusions.
OPT : Use of separated internal classes of gambas objects. This might prevent from a lot of problems.
OPT : Strings are not stored as wchar_t* anymore, but as simple char*, and are converted only when necessary (like UTF8 characters verification).
OPT : Does not use STL classes anymore. They are too slow. Uses now handmade classes.
OPT : Nodes are now internally linked to their brothers, so it makes find them really fasters, and allows no longer use of external linked list.
OPT : When creating new nodes, linked Gambas objects are created only when necessary, so it makes internals instanciations very faster (such as the parser).
OPT : Handmade string/memory classes and functions are now separated from the main.cpp component file.
OPT : Use specialized memory management functions (like memcpy, memchr ...) into the parser. They are really faster than C loops, and speeds up the parser for documents that have a lot of plain text.
OPT : Internally, the stream parser (XmlReader) takes only one char, not a unuseful wole string object.
OPT : Does not updates debugging data when parsing a file. They will be generated only if an error is raised (not implemented yet). It will allow a speedier parser and more precise informations.
BUG : When loading a document from a file, now correctly releases the file data.
BUG : Solved a few XmlReader uninitialized variables, that could make the stream parser crash or returns strange results.
git-svn-id: svn://localhost/gambas/trunk@4737 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2012-05-17 22:49:54 +02:00
|
|
|
{
|
|
|
|
public:
|
2012-05-30 00:19:22 +02:00
|
|
|
Attribute();
|
|
|
|
Attribute(const char *nattrName, const size_t nlenAttrName);
|
|
|
|
Attribute(const char *nattrName, const size_t nlenAttrName,
|
|
|
|
const char *nattrVal, const size_t nlenAttrVal);
|
|
|
|
~Attribute();
|
|
|
|
|
|
|
|
|
|
|
|
void setName(const char *nattrName, const size_t nlenAttrName);
|
|
|
|
void setValue(const char *nattrVal, const size_t nlenAttrVal);
|
|
|
|
char *attrName;
|
|
|
|
size_t lenAttrName;
|
|
|
|
char *attrValue;
|
|
|
|
size_t lenAttrValue;
|
|
|
|
|
|
|
|
virtual Node::Type getType();
|
2012-07-23 20:28:15 +02:00
|
|
|
virtual void addStringLen(size_t &len, int indent = -1);
|
|
|
|
virtual void addString(char *&data, int indent = -1);
|
2012-05-30 00:19:22 +02:00
|
|
|
virtual void setTextContent(const char *ncontent, const size_t nlen);
|
|
|
|
virtual void addTextContentLen(size_t &len);
|
|
|
|
virtual void addTextContent(char *&data);
|
|
|
|
virtual void NewGBObject();
|
2012-04-30 01:51:39 +02:00
|
|
|
};
|
[GB.XML]
* NEW : Added a new property "State" to XmlExplorer and XmlReader, that allows to know the reader state, without knowing Read() return value.
* NEW : When enumerating XmlReader.Node.Attributes, XmlReader.Node represents the current attribute.
* NEW : Added an new method Open() that loads an HtmlDocument from a file and defines it as the document to read.
* NEW : The Attributes property has now moved from XmlElement to XmlNode. XmlNode.Attributes returns Null if the node isn't an element.
* NEW : Then enumeration of XmlNode.Attributes now returns an .XmlElementAttribute instead of a string.
* NEW : The XmlNode.Attribute constant is not obsolete anymore.
* NEW : Two consecutives whitespaces are now ignored (only one is preserved).
* NEW : When parsing a file, line-breaks and tabulations are replaced by spaces.
* BUG : XmlExplorer flags are now correctly initialized.
* BUG : Added an Eof property on XmlExplorer, that was missing.
* BUG : Calling XmlExplorer.Read() after Eof just returns XmlReaderNodeType.Eof, not more.
* BUG : Calling XmlNode.Next() when the node hasn't got any brother after him doesn't crash anymore, it just returns Null.
* BUG : Calling XmlElement.NextSibling() when the node hasn't got any element brother after him doesn't crash anymore, it just returns Null.
* BUG : By default, XmlReader correctly stops when reading the end of an element.
* BUG : XmlExplorer now correctly initializes and releases itself.
* BUG : XmlExplorer now correctly supports its read flags.
* OPT : Solved a memory leak when releasing a XmlReader.
* OPT : When setting text content to a XmlNode, the string is not duplicated anymore.
* OPT : When testing if characters are whitespaces or names characters while parsing texts, puts the temporary variable into registers instead of memory.
git-svn-id: svn://localhost/gambas/trunk@4669 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2012-04-25 01:47:14 +02:00
|
|
|
|
2012-04-21 00:57:18 +02:00
|
|
|
class Element : public Node
|
|
|
|
{
|
|
|
|
public:
|
2012-05-30 00:19:22 +02:00
|
|
|
Element();
|
|
|
|
Element(const char *ntagName, size_t nlenTagName);
|
|
|
|
virtual ~Element();
|
|
|
|
virtual Type getType();
|
|
|
|
|
|
|
|
//Tag Name
|
|
|
|
void setTagName(const char *ntagName, size_t nlenTagName);//(re)defines the tag name
|
2012-05-30 23:18:16 +02:00
|
|
|
bool isSingle();
|
2012-05-30 00:19:22 +02:00
|
|
|
char *tagName;
|
|
|
|
size_t lenTagName;
|
2012-06-25 18:33:14 +02:00
|
|
|
|
|
|
|
void setPrefix(const char *nprefix, size_t nlenPrefix);
|
|
|
|
char *prefix;
|
|
|
|
size_t lenPrefix;
|
2012-08-12 14:38:39 +02:00
|
|
|
|
|
|
|
char* localName;
|
|
|
|
size_t lenLocalName;
|
2012-05-30 00:19:22 +02:00
|
|
|
|
2012-08-12 14:38:39 +02:00
|
|
|
void refreshPrefix();
|
2012-05-30 00:19:22 +02:00
|
|
|
|
|
|
|
//Attributes
|
|
|
|
void addAttribute(const char *nattrName, const size_t nlenAttrName);//Adds a new attribute
|
|
|
|
void addAttribute(const char *nattrName, const size_t nlenAttrName,
|
|
|
|
const char *nattrVal, const size_t nlenAttrVal);
|
2012-06-25 14:44:15 +02:00
|
|
|
Attribute* getAttribute(const char *nattrName, const size_t nlenAttrName, const int mode = GB_STRCOMP_BINARY);//Looks for attribute, and returns its value
|
2012-05-30 00:19:22 +02:00
|
|
|
void setAttribute(const char *nattrName, const size_t nlenAttrName,
|
|
|
|
const char *nattrVal, const size_t nlenAttrVal);//Looks for attribute, sets its value or add it if attribute is not found
|
2012-07-19 00:59:18 +02:00
|
|
|
bool attributeContains(const char *attrName, size_t lenAttrName, const char *value, size_t lenValue);
|
2012-05-30 00:19:22 +02:00
|
|
|
Attribute *firstAttribute;
|
|
|
|
Attribute *lastAttribute;
|
|
|
|
size_t attributeCount;
|
|
|
|
|
|
|
|
//String output
|
2012-07-23 20:28:15 +02:00
|
|
|
virtual void addStringLen(size_t &len, int indent = -1);
|
|
|
|
virtual void addString(char *&content, int indent = -1);
|
2012-05-30 00:19:22 +02:00
|
|
|
|
|
|
|
//Text Content
|
|
|
|
virtual void setTextContent(const char *ncontent, const size_t nlen);
|
|
|
|
virtual void addTextContentLen(size_t &len);
|
|
|
|
virtual void addTextContent(char *&data);
|
|
|
|
|
2012-07-23 20:28:15 +02:00
|
|
|
|
2012-05-30 00:19:22 +02:00
|
|
|
//Gambas object
|
|
|
|
virtual void NewGBObject();
|
|
|
|
|
2012-05-30 23:18:16 +02:00
|
|
|
static const char* singleElements;
|
|
|
|
|
2012-04-21 00:57:18 +02:00
|
|
|
#ifndef HELEMENT_H
|
[GB.XML]
* NEW : Added a new property "State" to XmlExplorer and XmlReader, that allows to know the reader state, without knowing Read() return value.
* NEW : When enumerating XmlReader.Node.Attributes, XmlReader.Node represents the current attribute.
* NEW : Added an new method Open() that loads an HtmlDocument from a file and defines it as the document to read.
* NEW : The Attributes property has now moved from XmlElement to XmlNode. XmlNode.Attributes returns Null if the node isn't an element.
* NEW : Then enumeration of XmlNode.Attributes now returns an .XmlElementAttribute instead of a string.
* NEW : The XmlNode.Attribute constant is not obsolete anymore.
* NEW : Two consecutives whitespaces are now ignored (only one is preserved).
* NEW : When parsing a file, line-breaks and tabulations are replaced by spaces.
* BUG : XmlExplorer flags are now correctly initialized.
* BUG : Added an Eof property on XmlExplorer, that was missing.
* BUG : Calling XmlExplorer.Read() after Eof just returns XmlReaderNodeType.Eof, not more.
* BUG : Calling XmlNode.Next() when the node hasn't got any brother after him doesn't crash anymore, it just returns Null.
* BUG : Calling XmlElement.NextSibling() when the node hasn't got any element brother after him doesn't crash anymore, it just returns Null.
* BUG : By default, XmlReader correctly stops when reading the end of an element.
* BUG : XmlExplorer now correctly initializes and releases itself.
* BUG : XmlExplorer now correctly supports its read flags.
* OPT : Solved a memory leak when releasing a XmlReader.
* OPT : When setting text content to a XmlNode, the string is not duplicated anymore.
* OPT : When testing if characters are whitespaces or names characters while parsing texts, puts the temporary variable into registers instead of memory.
git-svn-id: svn://localhost/gambas/trunk@4669 867c0c6c-44f3-4631-809d-bfa615b0a4ec
2012-04-25 01:47:14 +02:00
|
|
|
};
|
2012-04-21 00:57:18 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // ELEMENT_H
|