summaryrefslogtreecommitdiffstats
path: root/l10ntools/source/helper.cxx
blob: 4726234b19dd1d3d8a3acfbe1ba05766b89dc081 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#include <sal/config.h>

#include <libxml/parser.h>

#include <o3tl/safeint.hxx>
#include <o3tl/string_view.hxx>
#include <rtl/strbuf.hxx>

#include <helper.hxx>

namespace helper {

OString escapeAll(
    std::string_view rText, std::string_view rUnEscaped, std::string_view rEscaped )
{
    assert( rEscaped.size() == 2*rUnEscaped.size() );
    OStringBuffer sReturn;
    for ( size_t nIndex = 0; nIndex < rText.size(); ++nIndex )
    {
        size_t nUnEscapedOne = rUnEscaped.find(rText[nIndex]);
        if( nUnEscapedOne != std::string_view::npos )
        {
            sReturn.append(rEscaped.substr(nUnEscapedOne*2,2));
        }
        else
            sReturn.append(rText[nIndex]);
    }
    return sReturn.makeStringAndClear();
}


OString unEscapeAll(
    std::string_view rText, std::string_view rEscaped, std::string_view rUnEscaped)
{
    assert( rEscaped.size() == 2*rUnEscaped.length() );
    OStringBuffer sReturn;
    const size_t nLength = rText.size();
    for ( size_t nIndex = 0; nIndex < nLength; ++nIndex )
    {
        if( rText[nIndex] == '\\' && nIndex+1 < nLength )
        {
            size_t nEscapedOne = rEscaped.find(rText.substr(nIndex,2));
            if( nEscapedOne != std::string_view::npos )
            {
                sReturn.append(rUnEscaped[nEscapedOne/2]);
                ++nIndex;
            }
            else
            {
                sReturn.append(rText[nIndex]);
            }
        }
        else
            sReturn.append(rText[nIndex]);
    }
    return sReturn.makeStringAndClear();
}


OString QuotHTML(std::string_view rString)
{
    OStringBuffer sReturn;
    for (size_t i = 0; i < rString.size(); ++i)
    {
        switch (rString[i])
        {
        case '<':
            sReturn.append("&lt;");
            break;
        case '>':
            sReturn.append("&gt;");
            break;
        case '"':
            sReturn.append("&quot;");
            break;
        case '\'':
            sReturn.append("&apos;");
            break;
        case '&':
            if (o3tl::starts_with(rString.substr(i), "&amp;"))
                sReturn.append('&');
            else
                sReturn.append("&amp;");
            break;
        default:
            sReturn.append(rString[i]);
            break;
        }
    }
    return sReturn.makeStringAndClear();
}

OString UnQuotHTML( std::string_view rString )
{
    OStringBuffer sReturn;
    for (size_t i = 0; i != rString.size();) {
        auto tmp = rString.substr(i);
        if (o3tl::starts_with(tmp, "&amp;")) {
            sReturn.append('&');
            i += RTL_CONSTASCII_LENGTH("&amp;");
        } else if (o3tl::starts_with(tmp, "&lt;")) {
            sReturn.append('<');
            i += RTL_CONSTASCII_LENGTH("&lt;");
        } else if (o3tl::starts_with(tmp, "&gt;")) {
            sReturn.append('>');
            i += RTL_CONSTASCII_LENGTH("&gt;");
        } else if (o3tl::starts_with(tmp, "&quot;")) {
            sReturn.append('"');
            i += RTL_CONSTASCII_LENGTH("&quot;");
        } else if (o3tl::starts_with(tmp, "&apos;")) {
            sReturn.append('\'');
            i += RTL_CONSTASCII_LENGTH("&apos;");
        } else {
            sReturn.append(rString[i]);
            ++i;
        }
    }
    return sReturn.makeStringAndClear();
}

bool isWellFormedXML( std::string_view text )
{
    xmlDocPtr doc;
    bool result = true;

    OString content = OString::Concat("<root>") + text + "</root>";
    doc = xmlParseMemory(content.getStr(),static_cast<int>(content.getLength()));
    if (doc == nullptr) {
        result = false;
    }
    xmlFreeDoc(doc);
    xmlCleanupParser();
    return result;
}

//Convert xmlChar* to OString
OString xmlStrToOString( const xmlChar* pString )
{
    xmlChar* pTemp = xmlStrdup( pString );
    OString sResult = reinterpret_cast<char*>( pTemp );
    xmlFree( pTemp );
    return sResult;
}

}

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */