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