-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMarc.cs
More file actions
514 lines (398 loc) · 11.4 KB
/
Copy pathMarc.cs
File metadata and controls
514 lines (398 loc) · 11.4 KB
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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
using System.IO;
namespace MarcNet
{
public class MARCRecordDirectory
{
ArrayList _dir;
int _entries;
int _recLength;
int _baseAddress;
char[] _buff;
public MARCRecordDirectory()
{
init();
}
public MARCRecordDirectory(char[] dirRaw)
{
char[] temp = new char[MARCChar.DIRECTORY_ENTRY_LEN];
MARCDirectoryEntry tempEntry;
init();
_entries = (int)(dirRaw.Length / MARCChar.DIRECTORY_ENTRY_LEN);
for (int i = 0; i < _entries; i++)
{
Array.Copy(dirRaw, i * MARCChar.DIRECTORY_ENTRY_LEN, temp, 0, MARCChar.DIRECTORY_ENTRY_LEN);
tempEntry = new MARCDirectoryEntry(temp);
addEntry(tempEntry);
}
}
public ArrayList getEntries()
{
return _dir;
}
private void init()
{
_dir = new ArrayList();
_entries = 0;
_recLength = 0;
_baseAddress = 0;
}
public int numOfEntries()
{
return _entries;
}
public char[] asRaw()
{
int len = _dir.Count * MARCChar.DIRECTORY_ENTRY_LEN + 1;
_buff = new char[len];
int tempLen = 0;
foreach (MARCDirectoryEntry entry in _dir)
{
entry.asRaw().CopyTo(_buff, tempLen);
tempLen += MARCChar.DIRECTORY_ENTRY_LEN;
}
_buff[len-1] = MARCChar.END_OF_FIELD;
return _buff;
}
public void Clear()
{
_dir.Clear();
}
public int getBaseAddress()
{
_baseAddress = MARCChar.LEADER_LEN + _dir.Count * MARCChar.DIRECTORY_ENTRY_LEN + 1;
return _baseAddress;
}
public int getRecLen()
{
_baseAddress = getBaseAddress();
_recLength = _baseAddress + fieldLength() + 1;
return _recLength;
}
public int Length()
{
return _dir.Count*MARCChar.DIRECTORY_ENTRY_LEN+1;
}
private int fieldLength()
{
int len = 0;
foreach (MARCDirectoryEntry entry in _dir)
{
len += entry.fieldLength;
}
return len;
}
public void addEntry(MARCDirectoryEntry entry)
{
_dir.Add(entry);
}
public void deleteEntry(MARCDirectoryEntry entry)
{
_dir.Remove(entry);
}
}
public class MARCDirectoryEntry
{
string _tag;
int _len;
int _dataEnd;
char[] _buff;
int _entries;
public MARCDirectoryEntry(string tagno, int len, int dataEnd)
{
_tag = tagno;
_len = len;
_dataEnd = dataEnd;
_buff = new char[MARCChar.DIRECTORY_ENTRY_LEN];
String temp = String.Format("{0:3}{1:0000}{2:00000}", _tag, _len, _dataEnd);
temp.CopyTo(0, _buff, 0, MARCChar.DIRECTORY_ENTRY_LEN);
}
public MARCDirectoryEntry(char[] entryRaw)
{
char[] buff = new char[3];
Array.Copy(entryRaw, 0, buff, 0, 3);
_tag = new string(buff);
buff = new char[4];
Array.Copy(entryRaw, 3, buff, 0, 4);
_len = getNum(buff);
buff = new char[5];
Array.Copy(entryRaw, 7, buff, 0, 5);
_dataEnd = getNum(buff);
}
private int getNum(char[] charArray)
{
int len = charArray.Length;
int retNum = 0;;
for (int i = 0; i < len; i++)
{
int temp = (int)(charArray[i] - '0') * (int)Math.Pow( 10, (len - i - 1));
retNum += temp;
}
return retNum;
}
public char[] asRaw()
{
return _buff;
}
public int fieldLength
{
get
{
return _len;
}
}
public int dataEnd
{
get
{
return _dataEnd;
}
}
public string tagStr
{
get
{
return _tag;
}
}
}
public class MARCRecord
{
// Leader of the Record
MARCLeader _ldr;
// Record Directory
MARCRecordDirectory _dir;
// Contain all MARCField objects of the Record
ArrayList _fields;
ArrayList _warning;
char[] _buff;
public MARCRecord()
{
init();
}
public MARCRecord(char[] rawRecord)
{
char[] temp = new char[MARCChar.LEADER_LEN];
init();
Array.Copy(rawRecord, temp, MARCChar.LEADER_LEN);
_ldr = new MARCLeader(temp);
int dirLength = _ldr.getBaseAddressOfData() - MARCChar.LEADER_LEN;
char[] temp1 = new char[dirLength];
Array.Copy(rawRecord, MARCChar.LEADER_LEN, temp1, 0, dirLength);
_dir = new MARCRecordDirectory(temp1);
MARCField field;
ArrayList dirEntries = _dir.getEntries();
foreach(MARCDirectoryEntry entry in dirEntries)
{
temp1 = new char[entry.fieldLength];
Array.Copy(rawRecord, _ldr.getBaseAddressOfData() + entry.dataEnd, temp1, 0, entry.fieldLength);
field = new MARCField( entry.tagStr,entry.fieldLength, temp1 );
addAField(field);
}
//char[] dir = new
}
private void init()
{
_fields = new ArrayList();
_dir = new MARCRecordDirectory();
_ldr = null;
_warning = new ArrayList();
}
public int getRecordLength()
{
return _dir.getRecLen();
}
public int getBaseAddress()
{
return _dir.getBaseAddress();
}
public void build_dir()
{
int dataEnd = 0;
int len = 0;
IEnumerator myEn = _fields.GetEnumerator();
MARCField field = null;
_dir.Clear();
while(myEn.MoveNext())
{
field = (MARCField)myEn.Current;
len = field.Length();
_dir.addEntry( new MARCDirectoryEntry(field.tag, len, dataEnd));
dataEnd += len;
}
}
public void build_Leader()
{
if (_ldr == null)
{
_ldr = new MARCLeader(getRecordLength(), getBaseAddress());
}
}
public char[] asRaw()
{
build_dir();
int RecLen = getRecordLength();
_buff = new char[RecLen];
build_Leader();
_ldr.asRaw().CopyTo(_buff, 0);
_dir.asRaw().CopyTo(_buff,MARCChar.LEADER_LEN);
int test = _dir.Length();
int len = MARCChar.LEADER_LEN + _dir.Length();
foreach (MARCField field in _fields)
{
field.asRaw().CopyTo(_buff, len);
len += field.Length();
}
_buff[RecLen - 1] = MARCChar.END_OF_RECORD;
//_dir.asRaw();
return _buff;
}
public void addAField(MARCField field)
{
_fields.Add(field);
}
public MARCLeader leader
{
get
{
return _ldr;
}
}
public MARCField getAField(string fieldno)
{
MARCField retMARCField = null;
MARCField temp1 = null;
IEnumerator myEn = _fields.GetEnumerator();
while (myEn.MoveNext())
{
temp1 = (MARCField) myEn.Current;
if (temp1.tag == fieldno)
{
retMARCField = temp1;
break;
}
else
{
continue;
}
}
return retMARCField;
}
public subFieldsList getSubFields(string fieldno)
{
MARCField field = getAField(fieldno);
if (field != null)
{
return field.subFields();
}
return null;
}
public string getASubField(string fieldno, string subfieldno)
{
MARCField field = getAField(fieldno);
if (field != null)
{
return field.subField(subfieldno);
}
return null;
}
public void deleteAField(string fieldno)
{
MARCField retMARCField = null;
MARCField temp1 = null;
IEnumerator myEn = _fields.GetEnumerator();
while (myEn.MoveNext())
{
temp1 = (MARCField)myEn.Current;
if (temp1.tag == fieldno)
{
_fields.Remove(temp1);
break;
}
else
{
continue;
}
}
}
public ArrayList getFields()
{
return _fields;
}
public string asFormatted()
{
string retStr = "";
foreach (MARCField field in _fields)
{
retStr += field.asFormatted() + "\n\r";
}
return retStr;
}
/*
public string title()
{
}
public string title_proper()
{
}
public string author()
{
}
public string edition()
{
}
public string publication_date()
{
}
public ArrayList fields()
{
}
public string[] field()
{
}
public string subfield()
{
}
public int appendFields()
{
}
public int insertFieldsBefore()
{
}
public int insertFieldsAfter()
{
}
public int insertFieldsOrdered()
{
}
public int insertGroupedField()
{
}
public int deleteField()
{
}
public int asUsMarc()
{
}
public int asFormatted()
{
}
public int encoding()
{
}
public int setLeaderLengths()
{
}
public int clone()
{
}
public ArrayList warnings()
{
}
*/
}
}