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 :
21 : #include <stdlib.h>
22 : #include <stdio.h>
23 : #include <string.h>
24 :
25 : #include <rscrange.hxx>
26 :
27 1668 : RscRange::RscRange( Atom nId, sal_uInt32 nTypeId )
28 1668 : : RscTop( nId, nTypeId )
29 : {
30 1668 : nMin = nMax = 0;
31 1668 : nSize = ALIGNED_SIZE( sizeof( RscRangeInst ) );
32 1668 : }
33 :
34 0 : RSCCLASS_TYPE RscRange::GetClassType() const
35 : {
36 0 : return RSCCLASS_NUMBER;
37 : }
38 :
39 1668 : ERRTYPE RscRange::SetRange( sal_Int32 nMinimum, sal_Int32 nMaximum )
40 : {
41 1668 : if( nMinimum > nMaximum )
42 : {
43 0 : nMin = nMaximum;
44 0 : nMax = nMinimum;
45 : }
46 : else
47 : {
48 1668 : nMax = nMaximum;
49 1668 : nMin = nMinimum;
50 : }
51 :
52 1668 : return ERR_OK;
53 : }
54 :
55 1374 : bool RscRange::IsValueDefault( const RSCINST & rInst, CLASS_DATA pDef )
56 : {
57 1374 : if( pDef )
58 : {
59 1374 : if( reinterpret_cast<RscRangeInst*>(rInst.pData)->nValue ==
60 : reinterpret_cast<RscRangeInst*>(pDef)->nValue )
61 : {
62 263 : return true;
63 : }
64 : }
65 :
66 1111 : return false;
67 : }
68 :
69 7426 : ERRTYPE RscRange::SetNumber( const RSCINST & rInst, sal_Int32 nValue )
70 : {
71 7426 : if( nMax < nValue || nMin > nValue )
72 0 : return ERR_RSCRANGE_OUTDEFSET;
73 :
74 7426 : reinterpret_cast<RscRangeInst *>(rInst.pData)->nValue = (sal_uInt16)( nValue - nMin );
75 7426 : reinterpret_cast<RscRangeInst *>(rInst.pData)->bDflt = false;
76 7426 : return ERR_OK;
77 : }
78 :
79 5052 : ERRTYPE RscRange::GetNumber( const RSCINST & rInst, sal_Int32 * pN )
80 : {
81 5052 : *pN = reinterpret_cast<RscRangeInst *>(rInst.pData)->nValue + nMin;
82 5052 : return ERR_OK;
83 : }
84 :
85 34469 : RSCINST RscRange::Create( RSCINST * pInst, const RSCINST & rDflt,
86 : bool bOwnClass )
87 : {
88 34469 : RSCINST aInst;
89 :
90 34469 : if( !pInst )
91 : {
92 10334 : aInst.pClass = this;
93 10334 : aInst.pData = static_cast<CLASS_DATA>(rtl_allocateMemory( sizeof( RscRangeInst ) ));
94 : }
95 : else
96 24135 : aInst = *pInst;
97 :
98 34469 : if( !bOwnClass && rDflt.IsInst() )
99 0 : bOwnClass = rDflt.pClass->InHierarchy( this );
100 :
101 34469 : if( bOwnClass )
102 0 : memmove( aInst.pData, rDflt.pData, sizeof( RscRangeInst ) );
103 : else
104 : {
105 34469 : if( 0L >= nMin && 0L <= nMax )
106 34469 : reinterpret_cast<RscRangeInst *>(aInst.pData)->nValue = (sal_uInt16)(0L - nMin);
107 : else
108 0 : reinterpret_cast<RscRangeInst *>(aInst.pData)->nValue = 0;
109 :
110 34469 : reinterpret_cast<RscRangeInst *>(aInst.pData)->bDflt = true;
111 : }
112 :
113 34469 : return aInst;
114 : }
115 :
116 2845 : void RscRange::WriteSrc( const RSCINST & rInst, FILE * fOutput,
117 : RscTypCont *, sal_uInt32, const char * )
118 : {
119 2845 : fprintf( fOutput, "%ld", long( reinterpret_cast<RscRangeInst *>(rInst.pData)->nValue + nMin ) );
120 2845 : }
121 :
122 5766 : ERRTYPE RscRange::WriteRc( const RSCINST & rInst, RscWriteRc & aMem,
123 : RscTypCont *, sal_uInt32, bool )
124 : {
125 5766 : if( nMin >= 0 )
126 : {
127 : sal_uInt16 n;
128 1430 : n = (sal_uInt16)(reinterpret_cast<RscRangeInst *>(rInst.pData)->nValue + nMin);
129 1430 : aMem.Put( n );
130 : }
131 : else
132 : {
133 : sal_Int16 n;
134 4336 : n = (sal_Int16)(reinterpret_cast<RscRangeInst *>(rInst.pData)->nValue + nMin);
135 4336 : aMem.Put( n );
136 : }
137 :
138 5766 : return ERR_OK;
139 : }
140 :
141 834 : RscLongRange::RscLongRange( Atom nId, sal_uInt32 nTypeId )
142 834 : : RscTop( nId, nTypeId )
143 : {
144 834 : nMin = nMax = 0;
145 834 : nSize = ALIGNED_SIZE( sizeof( RscLongRangeInst ) );
146 834 : }
147 :
148 0 : RSCCLASS_TYPE RscLongRange::GetClassType() const
149 : {
150 0 : return RSCCLASS_NUMBER;
151 : }
152 :
153 834 : ERRTYPE RscLongRange::SetRange( sal_Int32 nMinimum, sal_Int32 nMaximum )
154 : {
155 834 : if( nMinimum > nMaximum )
156 : {
157 0 : nMin = nMaximum;
158 0 : nMax = nMinimum;
159 : }
160 : else
161 : {
162 834 : nMax = nMaximum;
163 834 : nMin = nMinimum;
164 : }
165 :
166 834 : return ERR_OK;
167 : }
168 :
169 854 : bool RscLongRange::IsValueDefault( const RSCINST & rInst, CLASS_DATA pDef )
170 : {
171 854 : if( pDef )
172 : return 0 == memcmp( &reinterpret_cast<RscLongRangeInst*>(rInst.pData)->nValue,
173 : &reinterpret_cast<RscLongRangeInst*>(pDef)->nValue,
174 854 : sizeof( sal_Int32 ) );
175 :
176 0 : return false;
177 : }
178 :
179 3278 : ERRTYPE RscLongRange::SetNumber( const RSCINST & rInst, sal_Int32 nValue )
180 : {
181 3278 : if( nMax < nValue || nMin > nValue )
182 0 : return ERR_RSCRANGE_OUTDEFSET;
183 :
184 3278 : void * pData = &reinterpret_cast<RscLongRangeInst*>(rInst.pData)->nValue;
185 3278 : memcpy( pData, &nValue, sizeof( sal_Int32 ) );
186 3278 : reinterpret_cast<RscLongRangeInst *>(rInst.pData)->bDflt = false;
187 3278 : return ERR_OK;
188 : }
189 :
190 3916 : ERRTYPE RscLongRange::GetNumber( const RSCINST & rInst, sal_Int32 * pN )
191 : {
192 : memmove( pN, &reinterpret_cast<RscLongRangeInst*>(rInst.pData)->nValue,
193 3916 : sizeof( sal_Int32 ) );
194 3916 : return ERR_OK;
195 : }
196 :
197 5320 : RSCINST RscLongRange::Create( RSCINST * pInst, const RSCINST & rDflt,
198 : bool bOwnClass )
199 : {
200 5320 : RSCINST aInst;
201 :
202 5320 : if( !pInst )
203 : {
204 23 : aInst.pClass = this;
205 23 : aInst.pData = static_cast<CLASS_DATA>(rtl_allocateMemory( sizeof( RscLongRangeInst ) ));
206 : }
207 : else
208 5297 : aInst = *pInst;
209 :
210 5320 : if( !bOwnClass && rDflt.IsInst() )
211 0 : bOwnClass = rDflt.pClass->InHierarchy( this );
212 :
213 5320 : if( bOwnClass )
214 0 : memmove( aInst.pData, rDflt.pData, sizeof( RscLongRangeInst ) );
215 : else
216 : {
217 : sal_Int32 lDflt;
218 5320 : if( 0L >= nMin && 0L <= nMax )
219 5320 : lDflt = 0;
220 : else
221 0 : lDflt = nMin;
222 :
223 5320 : void * pData = &reinterpret_cast<RscLongRangeInst*>(aInst.pData)->nValue;
224 5320 : memcpy( pData, &lDflt, sizeof( sal_Int32 ) );
225 5320 : reinterpret_cast<RscLongRangeInst *>(aInst.pData)->bDflt = true;
226 : }
227 :
228 5320 : return aInst;
229 : }
230 :
231 1326 : void RscLongRange::WriteSrc( const RSCINST & rInst, FILE * fOutput,
232 : RscTypCont *, sal_uInt32, const char * )
233 : {
234 : sal_Int32 lVal;
235 1326 : GetNumber( rInst, &lVal );
236 1326 : fprintf( fOutput, "%d", static_cast<int>(lVal) );
237 1326 : }
238 :
239 2072 : ERRTYPE RscLongRange::WriteRc( const RSCINST & rInst, RscWriteRc & aMem,
240 : RscTypCont *, sal_uInt32, bool )
241 : {
242 : sal_Int32 lVal;
243 :
244 2072 : GetNumber( rInst, &lVal );
245 2072 : aMem.Put( (sal_Int32)lVal );
246 :
247 2072 : return ERR_OK;
248 : }
249 :
250 417 : RscLongEnumRange::RscLongEnumRange( Atom nId, sal_uInt32 nTypeId )
251 417 : : RscLongRange( nId, nTypeId )
252 : {
253 417 : }
254 :
255 55 : ERRTYPE RscLongEnumRange::SetConst( const RSCINST & rInst, Atom /*nConst*/,
256 : sal_Int32 nValue )
257 : {
258 55 : return SetNumber( rInst, nValue );
259 : }
260 :
261 1251 : RscIdRange::RscIdRange( Atom nId, sal_uInt32 nTypeId )
262 1251 : : RscTop( nId, nTypeId )
263 : {
264 1251 : nSize = ALIGNED_SIZE( sizeof( RscId ) );
265 1251 : nMin = nMax = 0;
266 1251 : }
267 :
268 0 : RSCCLASS_TYPE RscIdRange::GetClassType() const
269 : {
270 0 : return RSCCLASS_NUMBER;
271 : }
272 :
273 6751 : RSCINST RscIdRange::Create( RSCINST * pInst, const RSCINST & rDflt, bool bOwnClass )
274 : {
275 6751 : RSCINST aInst;
276 : RscId * pClassData;
277 :
278 6751 : if( !pInst )
279 : {
280 6751 : aInst.pClass = this;
281 6751 : aInst.pData = static_cast<CLASS_DATA>(rtl_allocateMemory( sizeof( RscId ) ));
282 : }
283 : else
284 0 : aInst = *pInst;
285 :
286 :
287 6751 : if( !bOwnClass && rDflt.IsInst() )
288 0 : bOwnClass = rDflt.pClass->InHierarchy( this );
289 :
290 6751 : pClassData = reinterpret_cast<RscId *>(aInst.pData);
291 :
292 6751 : pClassData->Create();
293 :
294 6751 : if( bOwnClass )
295 0 : *pClassData = *reinterpret_cast<RscId *>(rDflt.pData);
296 : else
297 : {
298 6751 : *pClassData = RscId();
299 6751 : if( 0 >= nMin && 0 <= nMax )
300 720 : *pClassData = RscId( (sal_Int32)0 );
301 : else
302 6031 : *pClassData = RscId( nMin );
303 :
304 : //cUnused wird fuer Defaultkennung verwendet
305 6751 : reinterpret_cast<RscId *>(aInst.pData)->aExp.cUnused = true;
306 : }
307 :
308 6751 : return aInst;
309 : }
310 :
311 6751 : void RscIdRange :: Destroy( const RSCINST & rInst )
312 : {
313 6751 : reinterpret_cast<RscId *>(rInst.pData)->Destroy();
314 6751 : }
315 :
316 3053 : bool RscIdRange::IsValueDefault( const RSCINST & rInst, CLASS_DATA pDef )
317 : {
318 3053 : if( pDef )
319 : {
320 6106 : if( reinterpret_cast<RscId*>(rInst.pData)->aExp.IsNumber() &&
321 3053 : reinterpret_cast<RscId*>(pDef)->aExp.IsNumber() )
322 : {
323 6106 : if( reinterpret_cast<RscId*>(rInst.pData)->GetNumber() ==
324 3053 : reinterpret_cast<RscId*>(pDef)->GetNumber() )
325 : {
326 29 : return true;
327 : }
328 : }
329 : }
330 :
331 3024 : return false;
332 : }
333 :
334 6684 : ERRTYPE RscIdRange::SetNumber( const RSCINST & rInst, sal_Int32 nValue )
335 : {
336 6684 : if( nMax < nValue || nMin > nValue )
337 0 : return ERR_RSCRANGE_OUTDEFSET;
338 :
339 6684 : *reinterpret_cast<RscId *>(rInst.pData) = RscId( nValue );
340 6684 : reinterpret_cast<RscId *>(rInst.pData)->aExp.cUnused = false;
341 6684 : return ERR_OK;
342 : }
343 :
344 0 : ERRTYPE RscIdRange::GetNumber( const RSCINST & rInst, sal_Int32 * plValue )
345 : {
346 0 : *plValue = reinterpret_cast<RscId *>(rInst.pData)->GetNumber();
347 0 : return ERR_OK;
348 : }
349 :
350 6684 : ERRTYPE RscIdRange::SetRef( const RSCINST & rInst, const RscId & rRscId )
351 : {
352 6684 : ERRTYPE aError;
353 6684 : if( rRscId.IsId() )
354 : {
355 6684 : aError = SetNumber( rInst, rRscId );
356 6684 : if( aError.IsOk() )
357 : {
358 6684 : *reinterpret_cast<RscId *>(rInst.pData) = rRscId;
359 6684 : reinterpret_cast<RscId *>(rInst.pData)->aExp.cUnused = false;
360 : }
361 : }
362 : else
363 0 : aError = ERR_RSCRANGE_OUTDEFSET;
364 :
365 6684 : return aError;
366 : }
367 :
368 607 : ERRTYPE RscIdRange::GetRef( const RSCINST & rInst, RscId * pRscId )
369 : {
370 607 : *pRscId = *reinterpret_cast<RscId *>(rInst.pData);
371 :
372 607 : return ERR_OK;
373 : }
374 :
375 3631 : void RscIdRange::WriteSrc( const RSCINST & rInst, FILE * fOutput,
376 : RscTypCont *, sal_uInt32, const char * )
377 : {
378 3631 : fprintf( fOutput, "%s", reinterpret_cast<RscId *>(rInst.pData)->GetName().getStr() );
379 3631 : }
380 :
381 3024 : ERRTYPE RscIdRange::WriteRc( const RSCINST & rInst, RscWriteRc & aMem,
382 : RscTypCont *, sal_uInt32, bool )
383 : {
384 3024 : sal_Int32 lVal = reinterpret_cast<RscId*>(rInst.pData)->GetNumber();
385 :
386 3024 : aMem.Put( (sal_Int32)lVal );
387 :
388 3024 : return ERR_OK;
389 : }
390 :
391 0 : bool RscIdRange::IsConsistent( const RSCINST & rInst )
392 : {
393 0 : long nValue = reinterpret_cast<RscId *>(rInst.pData)->GetNumber();
394 :
395 0 : return (nMax >= nValue) && (nMin <= nValue);
396 :
397 : }
398 :
399 417 : RscBool::RscBool( Atom nId, sal_uInt32 nTypeId )
400 417 : : RscRange( nId, nTypeId )
401 : {
402 417 : RscRange::SetRange( 0, 1 );
403 417 : }
404 :
405 0 : RSCCLASS_TYPE RscBool::GetClassType() const
406 : {
407 0 : return RSCCLASS_BOOL;
408 : }
409 :
410 528 : void RscBool::WriteSrc( const RSCINST & rInst, FILE * fOutput,
411 : RscTypCont *, sal_uInt32, const char * )
412 : {
413 : sal_Int32 l;
414 :
415 528 : GetNumber( rInst, &l );
416 528 : if( l )
417 528 : fprintf( fOutput, "TRUE" );
418 : else
419 0 : fprintf( fOutput, "FALSE" );
420 528 : }
421 :
422 417 : RscBreakRange :: RscBreakRange( Atom nId, sal_uInt32 nTypeId )
423 417 : : RscRange( nId, nTypeId )
424 : {
425 417 : nOutRange = 0xFFFFFFFF;
426 417 : }
427 :
428 0 : ERRTYPE RscBreakRange::SetNumber( const RSCINST & rInst, sal_Int32 nValue )
429 : {
430 0 : if( nValue == nOutRange )
431 0 : return ERR_RSCRANGE_OUTDEFSET;
432 : else
433 0 : return RscRange::SetNumber( rInst, nValue );
434 : }
435 :
436 0 : RSCINST RscBreakRange::Create( RSCINST * pInst, const RSCINST & rDflt,
437 : bool bOwnClass )
438 : {
439 0 : RSCINST aInst;
440 : sal_Int32 l;
441 :
442 0 : aInst = RscRange::Create( pInst, rDflt, bOwnClass );
443 :
444 0 : GetNumber( aInst, &l );
445 0 : if( l == nOutRange )
446 0 : reinterpret_cast<RscRangeInst *>(aInst.pData)->nValue++;
447 :
448 0 : return aInst;
449 : }
450 :
451 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|