-
Notifications
You must be signed in to change notification settings - Fork 261
/
Copy pathVirtualTrees.Classes.pas
213 lines (170 loc) · 6.45 KB
/
VirtualTrees.Classes.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
unit VirtualTrees.Classes;
// The contents of this file are subject to the Mozilla Public License
// Version 1.1 (the "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/
//
// Alternatively, you may redistribute this library, use and/or modify it under the terms of the
// GNU Lesser General Public License as published by the Free Software Foundation;
// either version 2.1 of the License, or (at your option) any later version.
// You may obtain a copy of the LGPL at http://www.gnu.org/copyleft/.
//
// Software distributed under the License is distributed on an "AS IS" basis,
// WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the
// specific language governing rights and limitations under the License.
//
// The original code is VirtualTrees.pas, released September 30, 2000.
//
// The initial developer of the original code is digital publishing AG (Munich, Germany, www.digitalpublishing.de),
// written by Mike Lischke (public@soft-gems.net, www.soft-gems.net).
//
// Portions created by digital publishing AG are Copyright
// (C) 1999-2001 digital publishing AG. All Rights Reserved.
//----------------------------------------------------------------------------------------------------------------------
interface
{$WARN UNSAFE_TYPE OFF}
{$WARN UNSAFE_CAST OFF}
{$WARN UNSAFE_CODE OFF}
uses
Winapi.Windows;
type
// Helper classes to speed up rendering text formats for clipboard and drag'n drop transfers.
TBufferedRawByteString = class
private
FStart,
FPosition,
FEnd: PAnsiChar;
function GetAsString: RawByteString;
public
destructor Destroy; override;
procedure Add(const S: RawByteString);
procedure AddNewLine;
property AsString: RawByteString read GetAsString;
end;
TBufferedString = class
private
FStart,
FPosition,
FEnd: PWideChar;
function GetAsString: string;
public
destructor Destroy; override;
procedure Add(const S: string);
procedure AddNewLine;
property AsString: string read GetAsString;
end;
implementation
//----------------- TBufferedRawByteString ------------------------------------------------------------------------------------
const
AllocIncrement = 2 shl 11; // Must be a power of 2.
destructor TBufferedRawByteString.Destroy;
begin
FreeMem(FStart);
inherited;
end;
//----------------------------------------------------------------------------------------------------------------------
function TBufferedRawByteString.GetAsString: RawByteString;
begin
SetString(Result, FStart, FPosition - FStart);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TBufferedRawByteString.Add(const S: RawByteString);
var
NewLen,
LastOffset,
Len: NativeInt;
begin
Len := Length(S);
// Make room for the new string.
if FEnd - FPosition <= Len then
begin
// Round up NewLen so it is always a multiple of AllocIncrement.
NewLen := FEnd - FStart + (Len + AllocIncrement - 1) and not (AllocIncrement - 1);
// Keep last offset to restore it correctly in the case that FStart gets a new memory block assigned.
LastOffset := FPosition - FStart;
ReallocMem(FStart, NewLen);
FPosition := FStart + LastOffset;
FEnd := FStart + NewLen;
end;
System.Move(PAnsiChar(S)^, FPosition^, Len);
System.Inc(FPosition, Len);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TBufferedRawByteString.AddNewLine;
var
NewLen,
LastOffset: NativeInt;
begin
// Make room for the CR/LF characters.
if FEnd - FPosition <= 2 then
begin
// Round up NewLen so it is always a multiple of AllocIncrement.
NewLen := FEnd - FStart + (2 + AllocIncrement - 1) and not (AllocIncrement - 1);
// Keep last offset to restore it correctly in the case that FStart gets a new memory block assigned.
LastOffset := FPosition - FStart;
ReallocMem(FStart, NewLen);
FPosition := FStart + LastOffset;
FEnd := FStart + NewLen;
end;
FPosition^ := #13;
System.Inc(FPosition);
FPosition^ := #10;
System.Inc(FPosition);
end;
//----------------- TBufferedString --------------------------------------------------------------------------------
destructor TBufferedString.Destroy;
begin
FreeMem(FStart);
inherited;
end;
//----------------------------------------------------------------------------------------------------------------------
function TBufferedString.GetAsString: string;
begin
SetString(Result, FStart, FPosition - FStart);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TBufferedString.Add(const S: string);
var
NewLen,
LastOffset,
Len: Integer;
begin
Len := Length(S);
if Len = 0 then
exit;//Nothing to do
// Make room for the new string.
if FEnd - FPosition <= Len then
begin
// Round up NewLen so it is always a multiple of AllocIncrement.
NewLen := FEnd - FStart + (Len + AllocIncrement - 1) and not (AllocIncrement - 1);
// Keep last offset to restore it correctly in the case that FStart gets a new memory block assigned.
LastOffset := FPosition - FStart;
ReallocMem(FStart, 2 * NewLen);
FPosition := FStart + LastOffset;
FEnd := FStart + NewLen;
end;
System.Move(PWideChar(S)^, FPosition^, 2 * Len);
System.Inc(FPosition, Len);
end;
//----------------------------------------------------------------------------------------------------------------------
procedure TBufferedString.AddNewLine;
var
NewLen,
LastOffset: Integer;
begin
// Make room for the CR/LF characters.
if FEnd - FPosition <= 4 then
begin
// Round up NewLen so it is always a multiple of AllocIncrement.
NewLen := FEnd - FStart + (2 + AllocIncrement - 1) and not (AllocIncrement - 1);
// Keep last offset to restore it correctly in the case that FStart gets a new memory block assigned.
LastOffset := FPosition - FStart;
ReallocMem(FStart, 2 * NewLen);
FPosition := FStart + LastOffset;
FEnd := FStart + NewLen;
end;
FPosition^ := #13;
System.Inc(FPosition);
FPosition^ := #10;
System.Inc(FPosition);
end;
end.