-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMARCRecord.cs
More file actions
321 lines (255 loc) · 7.73 KB
/
Copy pathMARCRecord.cs
File metadata and controls
321 lines (255 loc) · 7.73 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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
using System.IO;
namespace MarcNet
{
public class MARCRecord
{
// Leader of the Record
MARCLeader _ldr;
// Record Directory
MARCRecordDirectory _dir;
// Contain all MARCField objects of the Record
ArrayList _fields;
string _warning = "";
char[] _buff;
public MARCRecord()
{
init();
}
public MARCRecord(char[] rawRecord)
{
char[] temp = new char[MARCChar.LEADER_LEN];
init();
try
{
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);
addField(field);
}
//char[] dir = new
build_dir();
build_Leader();
}
catch (Exception ex)
{
_warning = "Error!";
}
}
private void init()
{
_fields = new ArrayList();
_dir = new MARCRecordDirectory();
_ldr = null;
_warning = "";
}
public int Length
{
get
{
return _dir.getRecLen();
}
}
public int BaseAddress
{
get
{
return _dir.getBaseAddress();
}
}
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());
}
else
{
_ldr.update(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 addField(MARCField field)
{
_fields.Add(field);
update();
}
private void update()
{
//build_dir();
//updateLeader();
}
public MARCLeader leader
{
get
{
return _ldr;
}
}
public MARCField getField(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 ArrayList getFields(string fieldno)
{
ArrayList tempList = new ArrayList();
MARCField retMARCField = null;
MARCField temp1 = null;
IEnumerator myEn = _fields.GetEnumerator();
while (myEn.MoveNext())
{
temp1 = (MARCField) myEn.Current;
if (temp1.tag == fieldno)
{
retMARCField = temp1;
tempList.Add(retMARCField);
}
else
{
continue;
}
}
return tempList;
}
public subFieldsList getSubFields(string fieldno)
{
MARCField field = getField(fieldno);
if (field != null)
{
return field.getSubFields();
}
return null;
}
public string getSubField(string fieldno, string subfieldno)
{
MARCField field = getField(fieldno);
if (field != null)
{
return field.getSubField(subfieldno);
}
return null;
}
public void deleteField(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;
}
}
update();
}
public void deleteFields(string fieldno)
{
MARCField field = getField(fieldno);
while (field != null)
{
deleteField(fieldno);
field = getField(fieldno);
}
}
public ArrayList getAllFields()
{
return _fields;
}
public string asFormatted()
{
string retStr = "";
foreach (MARCField field in _fields)
{
retStr += field.asFormatted() + "\n\r";
}
return retStr;
}
public void writeToFile(string fileName)
{
FileStream fs;
fs = new FileStream(fileName, FileMode.Create, FileAccess.Write);
StreamWriter sw = new StreamWriter(fs);
sw.Write(this.asRaw());
sw.Close();
fs.Close();
}
}
}