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 :
20 : #include <precomp.h>
21 : #include <s2_dsapi/cx_docu2.hxx>
22 :
23 :
24 : // NOT FULLY DEFINED SERVICES
25 : #include <../../parser/inc/tokens/parseinc.hxx>
26 : #include <s2_dsapi/tokrecv.hxx>
27 : #include <s2_dsapi/tk_html.hxx>
28 : #include <s2_dsapi/tk_xml.hxx>
29 : #include <s2_dsapi/tk_docw2.hxx>
30 : #include <x_parse2.hxx>
31 :
32 :
33 :
34 : namespace csi
35 : {
36 : namespace dsapi
37 : {
38 :
39 :
40 :
41 : bool
42 71720 : Cx_Base::PassNewToken()
43 : {
44 71720 : if (pNewToken)
45 : {
46 71720 : rReceiver.Receive(*pNewToken.Release());
47 :
48 71720 : return true;
49 : }
50 0 : return false;
51 : }
52 :
53 : TkpContext &
54 52716 : Cx_Base::FollowUpContext()
55 : {
56 : csv_assert(pFollowUpContext != 0);
57 52716 : return *pFollowUpContext;
58 : }
59 :
60 : void
61 0 : Cx_Base::Handle_DocuSyntaxError( CharacterSource & io_rText )
62 : {
63 : // KORR_FUTURE
64 : // Put this into Error Log File
65 :
66 0 : Cerr() << "Error: Syntax error in documentation within "
67 0 : << "this text:\n\""
68 0 : << io_rText.CutToken()
69 0 : << "\"."
70 0 : << Endl();
71 0 : SetToken( new Tok_Word(io_rText.CurToken()) );
72 0 : }
73 :
74 : void
75 27471 : Cx_EoHtml::ReadCharChain( CharacterSource & io_rText )
76 : {
77 27471 : if ( NULCH == jumpTo(io_rText,'>') )
78 0 : throw X_AutodocParser(X_AutodocParser::x_UnexpectedEOF);
79 27471 : io_rText.MoveOn();
80 27471 : SetToken(new Tok_HtmlTag(io_rText.CutToken(),bToken_IsStartOfParagraph));
81 27471 : }
82 :
83 : void
84 1855 : Cx_EoXmlConst::ReadCharChain( CharacterSource & io_rText )
85 : {
86 1855 : char c = jumpTo(io_rText,'>','*');
87 1855 : if ( NULCH == c OR '*' == c )
88 : {
89 0 : Handle_DocuSyntaxError(io_rText);
90 1855 : return;
91 : }
92 :
93 1855 : io_rText.MoveOn();
94 1855 : io_rText.CutToken();
95 1855 : SetToken(new Tok_XmlConst(eTokenId));
96 : }
97 :
98 : void
99 9570 : Cx_EoXmlLink_BeginTag::ReadCharChain( CharacterSource & io_rText )
100 : {
101 9570 : String sScope;
102 9570 : String sDim;
103 :
104 10096 : do {
105 10096 : char cReached = jumpTo(io_rText,'"','>','*');
106 10096 : switch (cReached)
107 : {
108 : case '"':
109 : {
110 3409 : io_rText.MoveOn();
111 3409 : io_rText.CutToken();
112 3409 : char c = jumpTo(io_rText,'"','*', '>');
113 3409 : if ( NULCH == c OR '*' == c OR '>' == c)
114 : {
115 0 : if ( '>' == c )
116 0 : io_rText.MoveOn();
117 0 : Handle_DocuSyntaxError(io_rText);
118 : return;
119 : }
120 :
121 3409 : const char * pAttribute = io_rText.CutToken();
122 3409 : if ( *pAttribute != '[' )
123 3405 : sScope = pAttribute;
124 : else
125 4 : sDim = pAttribute;
126 :
127 3409 : io_rText.MoveOn();
128 3409 : break;
129 : }
130 : case '>':
131 6687 : break;
132 : case '*':
133 0 : Handle_DocuSyntaxError(io_rText);
134 : return;
135 : default:
136 0 : throw X_AutodocParser(X_AutodocParser::x_UnexpectedEOF);
137 : } // end switch
138 10096 : } while ( io_rText.CurChar() != '>' );
139 :
140 9570 : io_rText.MoveOn();
141 9570 : io_rText.CutToken();
142 9570 : SetToken( new Tok_XmlLink_BeginTag(eTokenId, sScope.c_str(), sDim.c_str()) );
143 : }
144 :
145 : void
146 9561 : Cx_EoXmlLink_EndTag::ReadCharChain( CharacterSource & io_rText )
147 : {
148 9561 : char c = jumpTo(io_rText,'>','*');
149 9561 : if ( NULCH == c OR '*' == c )
150 : {
151 0 : Handle_DocuSyntaxError(io_rText);
152 9561 : return;
153 : }
154 :
155 9561 : io_rText.MoveOn();
156 9561 : io_rText.CutToken();
157 9561 : SetToken(new Tok_XmlLink_EndTag(eTokenId));
158 : }
159 :
160 : void
161 1648 : Cx_EoXmlFormat_BeginTag::ReadCharChain( CharacterSource & io_rText )
162 : {
163 1648 : String sDim;
164 :
165 1648 : char cReached = jumpTo(io_rText,'"','>','*');
166 1648 : switch (cReached)
167 : {
168 : case '"':
169 : {
170 12 : io_rText.MoveOn();
171 12 : io_rText.CutToken();
172 :
173 12 : char c = jumpTo(io_rText,'"','*','>');
174 12 : if ( NULCH == c OR '*' == c OR '>' == c )
175 : {
176 0 : if ('>' == c )
177 0 : io_rText.MoveOn();
178 0 : Handle_DocuSyntaxError(io_rText);
179 : return;
180 : }
181 :
182 12 : sDim = io_rText.CutToken();
183 :
184 12 : c = jumpTo(io_rText,'>','*');
185 12 : if ( NULCH == c OR '*' == c )
186 : {
187 0 : Handle_DocuSyntaxError(io_rText);
188 : return;
189 : }
190 12 : break;
191 : }
192 : case '>':
193 1636 : break;
194 : case '*':
195 0 : Handle_DocuSyntaxError(io_rText);
196 : return;
197 : default:
198 0 : throw X_AutodocParser(X_AutodocParser::x_UnexpectedEOF);
199 : } // end switch
200 :
201 1648 : io_rText.MoveOn();
202 1648 : io_rText.CutToken();
203 1648 : SetToken(new Tok_XmlFormat_BeginTag(eTokenId, sDim));
204 : }
205 :
206 : void
207 1639 : Cx_EoXmlFormat_EndTag::ReadCharChain( CharacterSource & io_rText )
208 : {
209 1639 : char c = jumpTo(io_rText,'>','*');
210 1639 : if ( NULCH == c OR '*' == c )
211 : {
212 0 : Handle_DocuSyntaxError(io_rText);
213 1639 : return;
214 : }
215 :
216 1639 : io_rText.MoveOn();
217 1639 : io_rText.CutToken();
218 1639 : SetToken(new Tok_XmlFormat_EndTag(eTokenId));
219 : }
220 :
221 : void
222 19976 : Cx_CheckStar::ReadCharChain( CharacterSource & io_rText )
223 : {
224 19976 : bEndTokenFound = false;
225 19976 : if (bIsEnd)
226 : {
227 19975 : char cNext = jumpOver(io_rText,'*');
228 19975 : if ( NULCH == cNext )
229 0 : throw X_AutodocParser(X_AutodocParser::x_UnexpectedEOF);
230 19975 : if (cNext == '/')
231 : {
232 19004 : io_rText.MoveOn();
233 19004 : SetToken(new Tok_DocuEnd);
234 19004 : bEndTokenFound = true;
235 : }
236 : else
237 : {
238 971 : SetToken( new Tok_Word(io_rText.CutToken()) );
239 : }
240 : }
241 : else
242 : {
243 1 : jumpToWhite(io_rText);
244 1 : SetToken( new Tok_Word(io_rText.CutToken()) );
245 : }
246 19976 : }
247 :
248 : TkpContext &
249 19976 : Cx_CheckStar::FollowUpContext()
250 : {
251 19976 : if (bEndTokenFound)
252 19004 : return *pEnd_FollowUpContext;
253 : else
254 972 : return Cx_Base::FollowUpContext();
255 : }
256 :
257 : } // namespace dsapi
258 3 : } // namespace csi
259 :
260 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|