summaryrefslogtreecommitdiffstats
path: root/svtools/source/svhtml/htmlsupp.cxx
blob: a418d61eb79c8a0b9cac08923ecb548b7f3a45c6 (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
157
158
159
/* -*- 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/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */

#include <comphelper/string.hxx>
#include <svtools/parhtml.hxx>
#include <svtools/htmltokn.h>
#include <svtools/htmlkywd.hxx>
#include <tools/urlobj.hxx>

// Table for converting option values into strings
HTMLOptionEnum<HTMLScriptLanguage> const aScriptLangOptEnums[] =
{
    { OOO_STRING_SVTOOLS_HTML_LG_starbasic,    HTMLScriptLanguage::StarBasic     },
    { OOO_STRING_SVTOOLS_HTML_LG_javascript,   HTMLScriptLanguage::JavaScript    },
    { OOO_STRING_SVTOOLS_HTML_LG_javascript11, HTMLScriptLanguage::JavaScript    },
    { OOO_STRING_SVTOOLS_HTML_LG_livescript,   HTMLScriptLanguage::JavaScript    },
    { nullptr,                                 HTMLScriptLanguage(0) }
};

void HTMLParser::ParseScriptOptions( OUString& rLangString, std::u16string_view rBaseURL,
                                     HTMLScriptLanguage& rLang,
                                     OUString& rSrc,
                                     OUString& rLibrary,
                                     OUString& rModule )
{
    const HTMLOptions& aScriptOptions = GetOptions();

    rLangString.clear();
    rLang = HTMLScriptLanguage::JavaScript;
    rSrc.clear();
    rLibrary.clear();
    rModule.clear();

    for( size_t i = aScriptOptions.size(); i; )
    {
        const HTMLOption& aOption = aScriptOptions[--i];
        switch( aOption.GetToken() )
        {
        case HtmlOptionId::LANGUAGE:
            {
                rLangString = aOption.GetString();
                HTMLScriptLanguage nLang;
                if( aOption.GetEnum( nLang, aScriptLangOptEnums ) )
                    rLang = nLang;
                else
                    rLang = HTMLScriptLanguage::Unknown;
            }
            break;

        case HtmlOptionId::SRC:
            rSrc = INetURLObject::GetAbsURL( rBaseURL, aOption.GetString() );
            break;
        case HtmlOptionId::SDLIBRARY:
            rLibrary = aOption.GetString();
            break;

        case HtmlOptionId::SDMODULE:
            rModule = aOption.GetString();
            break;
        default: break;
        }
    }
}

void HTMLParser::RemoveSGMLComment( OUString &rString )
{
    sal_Unicode c = 0;
    sal_Int32 idx = 0;
    while (idx < rString.getLength())
    {
        c = rString[idx];
        if (!( c==' ' || c=='\t' || c=='\r' || c=='\n' ) )
            break;
        idx++;
    }
    if (idx)
        rString = rString.copy( idx );

    idx = rString.getLength() - 1;
    while (idx > 0)
        // Can never get to 0 because that would mean the string contains only whitespace, and the first
        // loop would already have removed all of those.
    {
        c = rString[idx];
        if (!( c==' ' || c=='\t' || c=='\r' || c=='\n' ) )
            break;
        idx--;
    }
    if (idx != rString.getLength() - 1)
        rString = rString.copy( 0, idx + 1 );

    // remove SGML comments
    if( rString.startsWith( "<!--" ) )
    {
        // the whole line
        sal_Int32 nPos = 4;
        while( nPos < rString.getLength() )
        {
            c = rString[nPos];
            if (c == '\r' || c == '\n')
                break;
            ++nPos;
        }
        if( c == '\r' && nPos+1 < rString.getLength() &&
            '\n' == rString[nPos+1] )
            ++nPos;
        else if( c != '\n' )
            nPos = 3;
        ++nPos;
        rString = rString.copy( nPos );
    }

    if( !rString.endsWith("-->") )
        return;

    rString = rString.copy( 0, rString.getLength()-3 );
    // "//" or "'", maybe preceding CR/LF
    rString = comphelper::string::stripEnd(rString, ' ');
    sal_Int32 nDel = 0, nLen = rString.getLength();
    if( nLen >= 2 &&
        rString.endsWith("//") )
    {
        nDel = 2;
    }
    else if( nLen && '\'' == rString[nLen-1] )
    {
        nDel = 1;
    }
    if( nDel && nLen >= nDel+1 )
    {
        c = rString[nLen-(nDel+1)];
        if( '\r'==c || '\n'==c )
        {
            nDel++;
            if( '\n'==c && nLen >= nDel+1 &&
                '\r'==rString[nLen-(nDel+1)] )
                nDel++;
        }
    }
    rString = rString.copy( 0, nLen-nDel );
}

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