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 <osl/thread.h>
21 : #include "buffer.hxx"
22 : #include "parser.hxx"
23 :
24 : const static sal_uInt32 UP_LIMIT=0xFFFFFF00L;
25 :
26 : // The SbiBuffer will be expanded in increments of at least 16 Bytes.
27 : // This is necessary, because many classes emanate from a buffer length
28 : // of x*16 Bytes.
29 :
30 185 : SbiBuffer::SbiBuffer( SbiParser* p, short n )
31 : {
32 185 : pParser = p;
33 185 : n = ( (n + 15 ) / 16 ) * 16;
34 185 : if( !n ) n = 16;
35 185 : pBuf = NULL;
36 185 : pCur = NULL;
37 185 : nInc = n;
38 : nSize =
39 185 : nOff = 0;
40 185 : }
41 :
42 185 : SbiBuffer::~SbiBuffer()
43 : {
44 185 : delete[] pBuf;
45 185 : }
46 :
47 : // Reach out the buffer
48 : // This lead to the deletion of the buffer!
49 :
50 185 : char* SbiBuffer::GetBuffer()
51 : {
52 185 : char* p = pBuf;
53 185 : pBuf = NULL;
54 185 : pCur = NULL;
55 185 : return p;
56 : }
57 :
58 : // Test, if the buffer can contain n Bytes.
59 : // In case of doubt it will be enlarged
60 :
61 182428 : bool SbiBuffer::Check( sal_Int32 n )
62 : {
63 182428 : if( !n )
64 : {
65 0 : return true;
66 : }
67 182428 : if( nOff + n > nSize )
68 : {
69 382 : if( nInc == 0 )
70 : {
71 0 : return false;
72 : }
73 :
74 382 : sal_Int32 nn = 0;
75 1146 : while( nn < n )
76 : {
77 382 : nn = nn + nInc;
78 : }
79 : char* p;
80 382 : if( ( nSize + nn ) > UP_LIMIT )
81 : {
82 0 : p = NULL;
83 : }
84 : else
85 : {
86 382 : p = new char [nSize + nn];
87 : }
88 382 : if( !p )
89 : {
90 0 : pParser->Error( SbERR_PROG_TOO_LARGE );
91 0 : nInc = 0;
92 0 : delete[] pBuf; pBuf = NULL;
93 0 : return false;
94 : }
95 : else
96 : {
97 382 : if( nSize ) memcpy( p, pBuf, nSize );
98 382 : delete[] pBuf;
99 382 : pBuf = p;
100 382 : pCur = pBuf + nOff;
101 382 : nSize = nSize + nn;
102 : }
103 : }
104 182428 : return true;
105 : }
106 :
107 : // Patch of a Location
108 :
109 0 : void SbiBuffer::Patch( sal_uInt32 off, sal_uInt32 val )
110 : {
111 0 : if( ( off + sizeof( sal_uInt32 ) ) < nOff )
112 : {
113 0 : sal_uInt16 val1 = static_cast<sal_uInt16>( val & 0xFFFF );
114 0 : sal_uInt16 val2 = static_cast<sal_uInt16>( val >> 16 );
115 0 : sal_uInt8* p = reinterpret_cast<sal_uInt8*>(pBuf) + off;
116 0 : *p++ = (char) ( val1 & 0xFF );
117 0 : *p++ = (char) ( val1 >> 8 );
118 0 : *p++ = (char) ( val2 & 0xFF );
119 0 : *p = (char) ( val2 >> 8 );
120 : }
121 0 : }
122 :
123 : // Forward References upon label und procedures
124 : // establish a linkage. The beginning of the linkage is at the passed parameter,
125 : // the end of the linkage is 0.
126 :
127 1522 : void SbiBuffer::Chain( sal_uInt32 off )
128 : {
129 1522 : if( off && pBuf )
130 : {
131 : sal_uInt8 *ip;
132 879 : sal_uInt32 i = off;
133 879 : sal_uInt32 val1 = (nOff & 0xFFFF);
134 879 : sal_uInt32 val2 = (nOff >> 16);
135 948 : do
136 : {
137 948 : ip = reinterpret_cast<sal_uInt8*>(pBuf) + i;
138 948 : sal_uInt8* pTmp = ip;
139 948 : i = *pTmp++; i |= *pTmp++ << 8; i |= *pTmp++ << 16; i |= *pTmp++ << 24;
140 :
141 948 : if( i >= nOff )
142 : {
143 0 : pParser->Error( SbERR_INTERNAL_ERROR, "BACKCHAIN" );
144 0 : break;
145 : }
146 948 : *ip++ = (char) ( val1 & 0xFF );
147 948 : *ip++ = (char) ( val1 >> 8 );
148 948 : *ip++ = (char) ( val2 & 0xFF );
149 948 : *ip = (char) ( val2 >> 8 );
150 : } while( i );
151 : }
152 1522 : }
153 :
154 0 : bool SbiBuffer::operator +=( sal_Int8 n )
155 : {
156 0 : if( Check( 1 ) )
157 : {
158 0 : *pCur++ = (char) n;
159 0 : nOff += 1;
160 0 : return true;
161 : }
162 : else
163 : {
164 0 : return false;
165 : }
166 : }
167 :
168 42475 : bool SbiBuffer::operator +=( sal_uInt8 n )
169 : {
170 42475 : if( Check( 1 ) )
171 : {
172 42475 : *pCur++ = (char) n;
173 42475 : nOff += 1;
174 42475 : return true;
175 : }
176 : else
177 : {
178 0 : return false;
179 : }
180 : }
181 :
182 0 : bool SbiBuffer::operator +=( sal_Int16 n )
183 : {
184 0 : if( Check( 2 ) )
185 : {
186 0 : *pCur++ = (char) ( n & 0xFF );
187 0 : *pCur++ = (char) ( n >> 8 );
188 0 : nOff += 2;
189 0 : return true;
190 : }
191 : else
192 : {
193 0 : return false;
194 : }
195 : }
196 :
197 93302 : bool SbiBuffer::operator +=( sal_uInt16 n )
198 : {
199 93302 : if( Check( 2 ) )
200 : {
201 93302 : *pCur++ = (char) ( n & 0xFF );
202 93302 : *pCur++ = (char) ( n >> 8 );
203 93302 : nOff += 2;
204 93302 : return true;
205 : }
206 : else
207 : {
208 0 : return false;
209 : }
210 : }
211 :
212 46651 : bool SbiBuffer::operator +=( sal_uInt32 n )
213 : {
214 46651 : if( Check( 4 ) )
215 : {
216 46651 : sal_uInt16 n1 = static_cast<sal_uInt16>( n & 0xFFFF );
217 46651 : sal_uInt16 n2 = static_cast<sal_uInt16>( n >> 16 );
218 46651 : operator +=(n1) && operator +=(n2);
219 46651 : return true;
220 : }
221 : else
222 : {
223 0 : return false;
224 : }
225 : }
226 :
227 0 : bool SbiBuffer::operator +=( sal_Int32 n )
228 : {
229 0 : return operator +=( (sal_uInt32) n );
230 : }
231 :
232 :
233 0 : bool SbiBuffer::operator +=( const OUString& n )
234 : {
235 0 : sal_uInt32 len = n.getLength() + 1;
236 0 : if( Check( len ) )
237 : {
238 0 : OString aByteStr(OUStringToOString(n, osl_getThreadTextEncoding()));
239 0 : memcpy( pCur, aByteStr.getStr(), len );
240 0 : pCur += len;
241 0 : nOff += len;
242 0 : return true;
243 : }
244 : else
245 : {
246 0 : return false;
247 : }
248 : }
249 :
250 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|