diff options
| author | gbrun <[email protected]> | 2026-06-01 13:14:33 +0300 |
|---|---|---|
| committer | gbrun <[email protected]> | 2026-06-01 13:53:34 +0300 |
| commit | ecf443683811f2f5190606456b8480ece7c9b7e4 (patch) | |
| tree | 7fd56800c53e233b286d0679dc9ccee8857ac9be /library/cpp/xml/document/xml-document.cpp | |
| parent | a1c68c4a458ae7628abe488ca712a6b0dae2ff8e (diff) | |
[libxml] add parseOptions
Added the ability to explicitly specify parsing options.
commit_hash:1bd7947cfc298f0c3edc895a77c64f70504b78d5
Diffstat (limited to 'library/cpp/xml/document/xml-document.cpp')
| -rw-r--r-- | library/cpp/xml/document/xml-document.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/library/cpp/xml/document/xml-document.cpp b/library/cpp/xml/document/xml-document.cpp index 25c0ed6a17e..8f9b303c916 100644 --- a/library/cpp/xml/document/xml-document.cpp +++ b/library/cpp/xml/document/xml-document.cpp @@ -17,13 +17,13 @@ namespace { } namespace NXml { - TDocument::TDocument(const TString& xml, Source type) { + TDocument::TDocument(const TString& xml, Source type, int parseOptions) { switch (type) { case File: - ParseFile(xml); + ParseFile(xml, parseOptions); break; case String: - ParseString(xml); + ParseString(xml, parseOptions); break; case RootName: { TDocHolder doc(xmlNewDoc(XMLCHAR("1.0"))); @@ -55,7 +55,7 @@ namespace NXml { return *this; } - void TDocument::ParseFile(const TString& file) { + void TDocument::ParseFile(const TString& file, int parseOptions) { if (!NFs::Exists(file)) THROW(XmlException, "File " << file << " doesn't exist"); @@ -63,7 +63,7 @@ namespace NXml { if (!pctx) THROW(XmlException, "Can't create parser context"); - TDocHolder doc(xmlCtxtReadFile(pctx.Get(), file.c_str(), nullptr, XML_PARSE_NOCDATA)); + TDocHolder doc(xmlCtxtReadFile(pctx.Get(), file.c_str(), nullptr, parseOptions)); if (!doc) THROW(XmlException, "Can't parse file " << file); @@ -75,12 +75,12 @@ namespace NXml { Doc = std::move(doc); } - void TDocument::ParseString(TZtStringBuf xml) { + void TDocument::ParseString(TZtStringBuf xml, int parseOptions) { TParserCtxtPtr pctx(xmlNewParserCtxt()); if (pctx.Get() == nullptr) THROW(XmlException, "Can't create parser context"); - TDocHolder doc(xmlCtxtReadMemory(pctx.Get(), xml.c_str(), (int)xml.size(), nullptr, nullptr, XML_PARSE_NOCDATA)); + TDocHolder doc(xmlCtxtReadMemory(pctx.Get(), xml.c_str(), (int)xml.size(), nullptr, nullptr, parseOptions)); if (!doc) THROW(XmlException, "Can't parse string"); |
