Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 : #ifndef _SVTOOLS_SYNTAXHIGHLIGHT_HXX
20 : #define _SVTOOLS_SYNTAXHIGHLIGHT_HXX
21 :
22 : #include <list>
23 :
24 : #include <osl/mutex.hxx>
25 :
26 : #include <vcl/svapp.hxx>
27 :
28 : #include <tools/stream.hxx>
29 : #include <tools/shl.hxx>
30 :
31 : #include <svl/brdcst.hxx>
32 : #include <svtools/svtdllapi.h>
33 :
34 :
35 : #if defined CDECL
36 : #undef CDECL
37 : #endif
38 :
39 : // for the bsearch
40 : #ifdef WNT
41 : #define CDECL _cdecl
42 : #endif
43 : #if defined(UNX)
44 : #define CDECL
45 : #endif
46 : #ifdef UNX
47 : #include <sys/resource.h>
48 : #endif
49 :
50 : #include <stdio.h>
51 :
52 : #include <tools/string.hxx>
53 : #include <tools/gen.hxx>
54 :
55 :
56 : // Token-Typen TT_...
57 : enum TokenTypes
58 : {
59 : TT_UNKNOWN,
60 : TT_IDENTIFIER,
61 : TT_WHITESPACE,
62 : TT_NUMBER,
63 : TT_STRING,
64 : TT_EOL,
65 : TT_COMMENT,
66 : TT_ERROR,
67 : TT_OPERATOR,
68 : TT_KEYWORDS,
69 : TT_PARAMETER
70 : };
71 :
72 : struct HighlightPortion { sal_uInt16 nBegin; sal_uInt16 nEnd; TokenTypes tokenType; };
73 :
74 :
75 : typedef std::vector<HighlightPortion> HighlightPortions;
76 :
77 : /////////////////////////////////////////////////////////////////////////
78 : // Hilfsklasse zur Untersuchung von JavaScript-Modulen, zunaechst zum
79 : // Heraussuchen der Funktionen, spaeter auch zum Syntax-Highlighting verwenden
80 :
81 : // Flags fuer Zeichen-Eigenschaften
82 : #define CHAR_START_IDENTIFIER 0x0001
83 : #define CHAR_IN_IDENTIFIER 0x0002
84 : #define CHAR_START_NUMBER 0x0004
85 : #define CHAR_IN_NUMBER 0x0008
86 : #define CHAR_IN_HEX_NUMBER 0x0010
87 : #define CHAR_IN_OCT_NUMBER 0x0020
88 : #define CHAR_START_STRING 0x0040
89 : #define CHAR_OPERATOR 0x0080
90 : #define CHAR_SPACE 0x0100
91 : #define CHAR_EOL 0x0200
92 :
93 : #define CHAR_EOF 0x00
94 :
95 :
96 : // Sprachmodus des HighLighters (spaeter eventuell feiner
97 : // differenzieren mit Keyword-Liste, C-Kommentar-Flag)
98 : enum HighlighterLanguage
99 : {
100 : HIGHLIGHT_BASIC,
101 : HIGHLIGHT_SQL
102 : };
103 :
104 : class SimpleTokenizer_Impl
105 : {
106 : HighlighterLanguage aLanguage;
107 : // Zeichen-Info-Tabelle
108 : sal_uInt16 aCharTypeTab[256];
109 :
110 : const sal_Unicode* mpStringBegin;
111 : const sal_Unicode* mpActualPos;
112 :
113 : // Zeile und Spalte
114 : sal_uInt32 nLine;
115 : sal_uInt32 nCol;
116 :
117 0 : sal_Unicode peekChar( void ) { return *mpActualPos; }
118 0 : sal_Unicode getChar( void ) { nCol++; return *mpActualPos++; }
119 :
120 : // Hilfsfunktion: Zeichen-Flag Testen
121 : sal_Bool testCharFlags( sal_Unicode c, sal_uInt16 nTestFlags );
122 :
123 : // Neues Token holen, Leerstring == nix mehr da
124 : sal_Bool getNextToken( /*out*/TokenTypes& reType,
125 : /*out*/const sal_Unicode*& rpStartPos, /*out*/const sal_Unicode*& rpEndPos );
126 :
127 : const char** ppListKeyWords;
128 : sal_uInt16 nKeyWordCount;
129 :
130 : public:
131 : SimpleTokenizer_Impl( HighlighterLanguage aLang = HIGHLIGHT_BASIC );
132 : ~SimpleTokenizer_Impl( void );
133 :
134 : sal_uInt16 parseLine( sal_uInt32 nLine, const String* aSource );
135 : void getHighlightPortions( sal_uInt32 nParseLine, const String& rLine,
136 : /*out*/HighlightPortions& portions );
137 : void setKeyWords( const char** ppKeyWords, sal_uInt16 nCount );
138 : };
139 :
140 :
141 : //*** SyntaxHighlighter-Klasse ***
142 : // Konzept: Der Highlighter wird ueber alle Aenderungen im Source
143 : // informiert (notifyChange) und liefert dem Aufrufer jeweils die
144 : // Information zurueck, welcher Zeilen-Bereich des Source-Codes
145 : // aufgrund dieser Aenderung neu gehighlighted werden muss.
146 : // Dazu merkt sich Highlighter intern fuer jede Zeile, ob dort
147 : // C-Kommentare beginnen oder enden.
148 : class SVT_DLLPUBLIC SyntaxHighlighter
149 : {
150 : HighlighterLanguage eLanguage;
151 : SimpleTokenizer_Impl* m_pSimpleTokenizer;
152 : char* m_pKeyWords;
153 : sal_uInt16 m_nKeyWordCount;
154 :
155 : // void initializeKeyWords( HighlighterLanguage eLanguage );
156 :
157 : public:
158 : SyntaxHighlighter( void );
159 : ~SyntaxHighlighter( void );
160 :
161 : // HighLighter (neu) initialisieren, die Zeilen-Tabelle wird
162 : // dabei komplett geloescht, d.h. im Abschluss wird von einem
163 : // leeren Source ausgegangen. In notifyChange() kann dann
164 : // nur Zeile 0 angegeben werden.
165 : void initialize( HighlighterLanguage eLanguage_ );
166 :
167 : const Range notifyChange( sal_uInt32 nLine, sal_Int32 nLineCountDifference,
168 : const String* pChangedLines, sal_uInt32 nArrayLength);
169 :
170 : void getHighlightPortions( sal_uInt32 nLine, const String& rLine,
171 : HighlightPortions& pPortions );
172 :
173 0 : HighlighterLanguage GetLanguage() { return eLanguage;}
174 : };
175 : #endif
176 :
177 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|