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