mirror of
https://github.com/leethomason/tinyxml2.git
synced 2026-07-29 23:22:59 +04:00
Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b765a210b3 | |||
| 6e246aec4d | |||
| 30dee1efa0 | |||
| a93163d2f5 | |||
| f87d0e3077 | |||
| 487f42aa69 | |||
| afff7bf328 |
@@ -6,7 +6,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ windows-2019, macos-latest, ubuntu-20.04 ]
|
os: [ windows-2019, macos-latest, ubuntu-22.04 ]
|
||||||
cmake: [ 3.15, 3.x ]
|
cmake: [ 3.15, 3.x ]
|
||||||
include:
|
include:
|
||||||
- os: windows-2019
|
- os: windows-2019
|
||||||
@@ -14,7 +14,7 @@ jobs:
|
|||||||
tree: tree /F
|
tree: tree /F
|
||||||
CXX: cl
|
CXX: cl
|
||||||
|
|
||||||
- os: ubuntu-20.04
|
- os: ubuntu-22.04
|
||||||
tree: tree
|
tree: tree
|
||||||
|
|
||||||
- os: macos-latest
|
- os: macos-latest
|
||||||
|
|||||||
+6
-4
@@ -2577,7 +2577,7 @@ void XMLDocument::PopDepth()
|
|||||||
--_parsingDepth;
|
--_parsingDepth;
|
||||||
}
|
}
|
||||||
|
|
||||||
XMLPrinter::XMLPrinter( FILE* file, bool compact, int depth ) :
|
XMLPrinter::XMLPrinter( FILE* file, bool compact, int depth, EscapeAposCharsInAttributes aposInAttributes ) :
|
||||||
_elementJustOpened( false ),
|
_elementJustOpened( false ),
|
||||||
_stack(),
|
_stack(),
|
||||||
_firstElement( true ),
|
_firstElement( true ),
|
||||||
@@ -2594,9 +2594,11 @@ XMLPrinter::XMLPrinter( FILE* file, bool compact, int depth ) :
|
|||||||
}
|
}
|
||||||
for( int i=0; i<NUM_ENTITIES; ++i ) {
|
for( int i=0; i<NUM_ENTITIES; ++i ) {
|
||||||
const char entityValue = entities[i].value;
|
const char entityValue = entities[i].value;
|
||||||
const unsigned char flagIndex = static_cast<unsigned char>(entityValue);
|
if ((aposInAttributes == ESCAPE_APOS_CHARS_IN_ATTRIBUTES) || (entityValue != SINGLE_QUOTE)) {
|
||||||
TIXMLASSERT( flagIndex < ENTITY_RANGE );
|
const unsigned char flagIndex = static_cast<unsigned char>(entityValue);
|
||||||
_entityFlag[flagIndex] = true;
|
TIXMLASSERT( flagIndex < ENTITY_RANGE );
|
||||||
|
_entityFlag[flagIndex] = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
_restrictedEntityFlag[static_cast<unsigned char>('&')] = true;
|
_restrictedEntityFlag[static_cast<unsigned char>('&')] = true;
|
||||||
_restrictedEntityFlag[static_cast<unsigned char>('<')] = true;
|
_restrictedEntityFlag[static_cast<unsigned char>('<')] = true;
|
||||||
|
|||||||
+6
-2
@@ -266,7 +266,6 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
size_t Size() const {
|
size_t Size() const {
|
||||||
TIXMLASSERT( _size >= 0 );
|
|
||||||
return _size;
|
return _size;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2240,13 +2239,18 @@ private:
|
|||||||
class TINYXML2_LIB XMLPrinter : public XMLVisitor
|
class TINYXML2_LIB XMLPrinter : public XMLVisitor
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
enum EscapeAposCharsInAttributes {
|
||||||
|
ESCAPE_APOS_CHARS_IN_ATTRIBUTES,
|
||||||
|
DONT_ESCAPE_APOS_CHARS_IN_ATTRIBUTES
|
||||||
|
};
|
||||||
|
|
||||||
/** Construct the printer. If the FILE* is specified,
|
/** Construct the printer. If the FILE* is specified,
|
||||||
this will print to the FILE. Else it will print
|
this will print to the FILE. Else it will print
|
||||||
to memory, and the result is available in CStr().
|
to memory, and the result is available in CStr().
|
||||||
If 'compact' is set to true, then output is created
|
If 'compact' is set to true, then output is created
|
||||||
with only required whitespace and newlines.
|
with only required whitespace and newlines.
|
||||||
*/
|
*/
|
||||||
XMLPrinter( FILE* file=0, bool compact = false, int depth = 0 );
|
XMLPrinter( FILE* file=0, bool compact = false, int depth = 0, EscapeAposCharsInAttributes aposInAttributes = ESCAPE_APOS_CHARS_IN_ATTRIBUTES );
|
||||||
virtual ~XMLPrinter() {}
|
virtual ~XMLPrinter() {}
|
||||||
|
|
||||||
/** If streaming, write the BOM and declaration. */
|
/** If streaming, write the BOM and declaration. */
|
||||||
|
|||||||
+35
@@ -2695,6 +2695,41 @@ int main( int argc, const char ** argv )
|
|||||||
XMLTest("Test attribute encode with a Hex value", value5, "!"); // hex value in unicode value
|
XMLTest("Test attribute encode with a Hex value", value5, "!"); // hex value in unicode value
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ---------- XMLPrinter Apos Escaping ------
|
||||||
|
{
|
||||||
|
const char* testText = "text containing a ' character";
|
||||||
|
XMLDocument doc;
|
||||||
|
XMLElement* element = doc.NewElement( "element" );
|
||||||
|
doc.InsertEndChild( element );
|
||||||
|
element->SetAttribute( "attrib", testText );
|
||||||
|
{
|
||||||
|
XMLPrinter defaultPrinter;
|
||||||
|
doc.Print( &defaultPrinter );
|
||||||
|
const char* defaultOutput = defaultPrinter.CStr();
|
||||||
|
const bool foundTextWithUnescapedApos = (strstr(defaultOutput, testText) != nullptr);
|
||||||
|
XMLTest("Default XMLPrinter should escape ' characters", false, foundTextWithUnescapedApos);
|
||||||
|
{
|
||||||
|
XMLDocument parsingDoc;
|
||||||
|
parsingDoc.Parse(defaultOutput);
|
||||||
|
const XMLAttribute* attrib = parsingDoc.FirstChildElement("element")->FindAttribute("attrib");
|
||||||
|
XMLTest("Default XMLPrinter should output parsable xml", testText, attrib->Value(), true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
XMLPrinter customPrinter(0, false, 0, XMLPrinter::DONT_ESCAPE_APOS_CHARS_IN_ATTRIBUTES);
|
||||||
|
doc.Print( &customPrinter );
|
||||||
|
const char* customOutput = customPrinter.CStr();
|
||||||
|
const bool foundTextWithUnescapedApos = (strstr(customOutput, testText) != nullptr);
|
||||||
|
XMLTest("Custom XMLPrinter should not escape ' characters", true, foundTextWithUnescapedApos);
|
||||||
|
{
|
||||||
|
XMLDocument parsingDoc;
|
||||||
|
parsingDoc.Parse(customOutput);
|
||||||
|
const XMLAttribute* attrib = parsingDoc.FirstChildElement("element")->FindAttribute("attrib");
|
||||||
|
XMLTest("Custom XMLPrinter should output parsable xml", testText, attrib->Value(), true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// ----------- Performance tracking --------------
|
// ----------- Performance tracking --------------
|
||||||
{
|
{
|
||||||
#if defined( _MSC_VER )
|
#if defined( _MSC_VER )
|
||||||
|
|||||||
Reference in New Issue
Block a user