1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 /** Parses the starmath code and creates the nodes.
26 #include <unotools/resmgr.hxx>
33 #define DEPTH_LIMIT 1024
35 // Those are the errors that the parser may encounter.
36 enum class SmParseError
: uint_fast8_t
52 DoubleSubsupscript
= 14,
62 SmErrorDesc(SmParseError eType
, SmNode
* pNode
, OUString aText
)
65 , m_aText(std::move(aText
))
73 sal_Int32
& m_rParseDepth
;
76 DepthProtect(sal_Int32
& rParseDepth
)
77 : m_rParseDepth(rParseDepth
)
80 if (m_rParseDepth
> DEPTH_LIMIT
)
81 throw std::range_error("parser depth limit");
83 ~DepthProtect() { --m_rParseDepth
; }
86 namespace starmathdatabase
88 // Must be in sync with SmParseError list
89 extern const TranslateId SmParseErrorDesc
[16];
91 OUString
getParseErrorDesc(SmParseError err
);
94 class AbstractSmParser
97 virtual ~AbstractSmParser() {}
99 /** Parse rBuffer to formula tree */
100 virtual std::unique_ptr
<SmTableNode
> Parse(const OUString
& rBuffer
) = 0;
101 /** Parse rBuffer to formula subtree that constitutes an expression */
102 virtual std::unique_ptr
<SmNode
> ParseExpression(const OUString
& rBuffer
) = 0;
104 virtual const OUString
& GetText() const = 0;
106 virtual bool IsImportSymbolNames() const = 0;
107 virtual void SetImportSymbolNames(bool bVal
) = 0;
108 virtual bool IsExportSymbolNames() const = 0;
109 virtual void SetExportSymbolNames(bool bVal
) = 0;
111 virtual const SmErrorDesc
* NextError() = 0;
112 virtual const SmErrorDesc
* PrevError() = 0;
113 virtual const SmErrorDesc
* GetError() const = 0;
114 virtual const std::set
<OUString
>& GetUsedSymbols() const = 0;
117 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */