-
Notifications
You must be signed in to change notification settings - Fork 5
/
LASFile.cs
370 lines (279 loc) · 8.07 KB
/
LASFile.cs
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Runtime.InteropServices;
namespace laslib
{
public class LASFile
{
#region Private Fields
private FileStream m_fileStream;
private BinaryReader m_reader;
public LASHeader header;
public Type pointType;
public Type pointArrayType;
private int sizeOfPointStruct;
private IntPtr pointBuffer; //buffer for single point
private IntPtr pointArrayBuffer; //buffer for a line of points
private int numArrayPoints = 200; //number of points in an array to read
#endregion
#region Public properties
//number of points that are loaded in array by default. Can be increased
public int DafaultNumberOfLinePoints
{
get { return numArrayPoints; }
set
{
if (numArrayPoints < value)
{
//delete old buffer and create new, bigger one
if (pointArrayBuffer != null)
{
Marshal.FreeHGlobal(pointArrayBuffer);
}
//create bigger buffer
pointArrayBuffer = Marshal.AllocHGlobal(sizeOfPointStruct * value);
numArrayPoints = value;
}
}
}
#endregion
public LASFile(String lasfile)
{
if (File.Exists(lasfile))
{
m_fileStream = new FileStream(lasfile, FileMode.Open, FileAccess.Read, FileShare.Read, numArrayPoints*28);
m_reader = new BinaryReader(m_fileStream);
header = (LASHeader)RawDeserialize(m_reader.ReadBytes(Marshal.SizeOf(typeof(LASHeader))),
typeof(LASHeader));
if (header.PointDataFormat == 0)
{
pointType = typeof(LASPointFormat0);
pointArrayType = typeof(LASPointFormat0[]);
sizeOfPointStruct = Marshal.SizeOf(typeof(LASPointFormat0));
}
else if (header.PointDataFormat == 1)
{
pointType = typeof(LASPointFormat1);
pointArrayType = typeof(LASPointFormat1[]);
sizeOfPointStruct = Marshal.SizeOf(typeof(LASPointFormat1));
}
//allocate point buffer
pointBuffer = Marshal.AllocHGlobal(sizeOfPointStruct);
pointArrayBuffer = Marshal.AllocHGlobal(sizeOfPointStruct * numArrayPoints);
}
}
public bool Close()
{
if (m_reader != null)
{
m_reader.Close();
}
try
{
//free point buffer
if (pointBuffer != null)
{
Marshal.FreeHGlobal(pointBuffer);
}
if (pointArrayBuffer != null)
{
Marshal.FreeHGlobal(pointArrayBuffer);
}
}
catch (Exception)
{
Console.WriteLine("ERROR: freeing memory");
}
return true;
}
/// <summary>
/// positions stream at the beginning of point data
/// </summary>
/// <returns></returns>
public bool PositionAtStartOfPointData()
{
if (m_fileStream == null || m_reader == null || header.OffsetToData == 0)
{
return false;
}
bool success = true;
try
{
m_fileStream.Seek(header.OffsetToData, SeekOrigin.Begin);
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
success = false;
}
return success;
}
/// <summary>
/// gets next point
/// </summary>
/// <returns>point in format written in header</returns>
public ILASPoint GetNextPoint()
{
if (m_reader == null)
{
return null;
}
byte[] pointdata = m_reader.ReadBytes(sizeOfPointStruct);
if (pointdata.Length != sizeOfPointStruct)
{
return null;
}
/*
Marshal.Copy(pointdata, 0, pointBuffer, sizeOfPointStruct);
ILASPoint retobj = Marshal.PtrToStructure(pointBuffer, pointType);
return retobj;
*/
Marshal.Copy(pointdata, 0, pointBuffer, sizeOfPointStruct);
return (ILASPoint)Marshal.PtrToStructure(pointBuffer, pointType);
}
public ILASPoint GetPointN(uint n)
{
if (m_reader == null)
{
return null;
}
positionAtPointN(n);
byte[] pointdata = m_reader.ReadBytes(sizeOfPointStruct);
if (pointdata.Length != sizeOfPointStruct)
{
return null;
}
Marshal.Copy(pointdata, 0, pointBuffer, sizeOfPointStruct);
return (ILASPoint)Marshal.PtrToStructure(pointBuffer, pointType);
}
/// <summary>
/// gets an array of points starting at the current position
/// </summary>
/// <returns></returns>
public unsafe object GetPoints(int number)
{
if (m_reader == null)
{
return null;
}
byte[] pointdata = m_reader.ReadBytes(number * sizeOfPointStruct);
if (pointdata == null)
{
return null;
}
//number of points actually read
int numPointsRead = pointdata.Length / sizeOfPointStruct;
//Console.WriteLine("num points to read: {0}, num read: {1}", number, numPointsRead);
if (header.PointDataFormat == 0)
{
LASPointFormat0[] arr = new LASPointFormat0[numPointsRead];
fixed (LASPointFormat0* p = arr)
{
IntPtr MyIntPtr = (IntPtr)p;
Marshal.Copy(pointdata, 0, MyIntPtr, pointdata.Length);
}
return arr;
}
else if (header.PointDataFormat == 1)
{
LASPointFormat1[] arr = new LASPointFormat1[numPointsRead];
fixed (LASPointFormat1* p = arr)
{
IntPtr MyIntPtr = (IntPtr)p;
Marshal.Copy(pointdata, 0, MyIntPtr, pointdata.Length);
}
return arr;
}
return null;
}
/// <summary>
/// gets points at specified index
/// </summary>
/// <param name="startIndex"></param>
/// <param name="number"></param>
/// <returns></returns>
public unsafe object GetPoints(uint startIndex, int number)
{
if (m_reader == null)
{
return null;
}
positionAtPointN(startIndex);
byte[] pointdata = m_reader.ReadBytes(sizeOfPointStruct * number);
if (pointdata == null)
{
return null;
}
//number of points actually read
int numPointsRead = pointdata.Length / sizeOfPointStruct;
if (numPointsRead == 0)
return null;
//Console.WriteLine("num points to read: {0}, num read: {1}", number, numPointsRead);
if (header.PointDataFormat == 0)
{
LASPointFormat0[] pf0_buffer = new LASPointFormat0[numPointsRead];
fixed (LASPointFormat0* p = pf0_buffer)
{
IntPtr MyIntPtr = (IntPtr)p;
Marshal.Copy(pointdata, 0, MyIntPtr, pointdata.Length);
}
return pf0_buffer;
}
else if (header.PointDataFormat == 1)
{
LASPointFormat1[] pf1_buffer = new LASPointFormat1[numPointsRead];
fixed (LASPointFormat1* p = pf1_buffer)
{
IntPtr MyIntPtr = (IntPtr)p;
Marshal.Copy(pointdata, 0, MyIntPtr, pointdata.Length);
}
return pf1_buffer;
}
//if smth goes wrong return null
return null;
}
public object RawDeserializePoint(byte[] pointdata)
{
if (sizeOfPointStruct > pointdata.Length)
{
return null;
}
Marshal.Copy(pointdata, 0, pointBuffer, sizeOfPointStruct);
object retobj = Marshal.PtrToStructure(pointBuffer, pointType);
return retobj;
}
public static object RawDeserialize(byte[] rawdatas, Type anytype)
{
int rawsize = Marshal.SizeOf(anytype);
if (rawsize > rawdatas.Length)
return null;
IntPtr buffer = Marshal.AllocHGlobal(rawsize);
Marshal.Copy(rawdatas, 0, buffer, rawsize);
object retobj = Marshal.PtrToStructure(buffer, anytype);
Marshal.FreeHGlobal(buffer);
return retobj;
}
public static byte[] RawSerialize(object anything)
{
int rawsize = Marshal.SizeOf(anything);
IntPtr buffer = Marshal.AllocHGlobal(rawsize);
Marshal.StructureToPtr(anything, buffer, false);
byte[] rawdatas = new byte[rawsize];
Marshal.Copy(buffer, rawdatas, 0, rawsize);
Marshal.FreeHGlobal(buffer);
return rawdatas;
}
#region Private Methods
/// <summary>
/// positions file pointer at N-th point
/// </summary>
/// <param name="n"></param>
private void positionAtPointN(uint n)
{
m_fileStream.Seek(header.OffsetToData + n * sizeOfPointStruct, SeekOrigin.Begin);
}
#endregion
}
}