Search in sources :

Example 6 with MarcFactoryImpl

use of cz.mzk.recordmanager.server.marc.marc4j.MarcFactoryImpl in project RecordManager2 by moravianlibrary.

the class TdkivMarcInterceptor method intercept.

@Override
public byte[] intercept() {
    if (super.getRecord() == null) {
        return new byte[0];
    }
    Record newRecord = new RecordImpl();
    MarcFactory marcFactory = new MarcFactoryImpl();
    newRecord.addVariableField(marcFactory.newControlField("FMT", "VA"));
    newRecord.addVariableField(marcFactory.newControlField("003", "CZ-PrNK"));
    newRecord.addVariableField(marcFactory.newControlField("005", new SimpleDateFormat(DATE_STRING_005).format(new Date())));
    newRecord.addVariableField(marcFactory.newControlField("008", "000804|n|anznnbabn-----------n-a|a------"));
    newRecord.addVariableField(marcFactory.newDataField("040", ' ', ' ', "a", "ABA001", "b", "cze", "d", "ABA001"));
    newRecord.setLeader(getRecord().getLeader());
    for (ControlField cf : super.getRecord().getControlFields()) {
        newRecord.addVariableField(cf);
    }
    for (DataField df : super.getRecord().getDataFields()) {
        if (df.getTag().equals("DRL") && df.getSubfield('a') != null && newRecord.getControlNumberField() == null) {
            Matcher matcher = RECORD_ID.matcher(df.getSubfield('a').getData());
            if (matcher.find()) {
                newRecord.addVariableField(marcFactory.newControlField("001", matcher.group(1)));
            }
        }
        if (TAGS.containsKey(df.getTag())) {
            df.setTag(TAGS.get(df.getTag()));
        } else if (df.getTag().equals("ANG")) {
            df.setTag("750");
            df.setIndicator1('0');
            df.setIndicator2('7');
        } else if (df.getTag().equals("DRL")) {
            df = marcFactory.newDataField("856", '4', '1', "u", df.getSubfield('a').getData(), "y", TEXT_856y);
        } else
            continue;
        newRecord.addVariableField(df);
    }
    return new MarcRecordImpl(newRecord).export(IOFormat.XML_MARC).getBytes(StandardCharsets.UTF_8);
}
Also used : ControlField(org.marc4j.marc.ControlField) DataField(org.marc4j.marc.DataField) MarcRecordImpl(cz.mzk.recordmanager.server.marc.MarcRecordImpl) Matcher(java.util.regex.Matcher) Record(org.marc4j.marc.Record) MarcFactory(org.marc4j.marc.MarcFactory) MarcRecordImpl(cz.mzk.recordmanager.server.marc.MarcRecordImpl) RecordImpl(cz.mzk.recordmanager.server.marc.marc4j.RecordImpl) MarcFactoryImpl(cz.mzk.recordmanager.server.marc.marc4j.MarcFactoryImpl) SimpleDateFormat(java.text.SimpleDateFormat) Date(java.util.Date)

Aggregations

MarcRecordImpl (cz.mzk.recordmanager.server.marc.MarcRecordImpl)6 MarcFactoryImpl (cz.mzk.recordmanager.server.marc.marc4j.MarcFactoryImpl)6 RecordImpl (cz.mzk.recordmanager.server.marc.marc4j.RecordImpl)6 ControlField (org.marc4j.marc.ControlField)6 DataField (org.marc4j.marc.DataField)6 MarcFactory (org.marc4j.marc.MarcFactory)6 Record (org.marc4j.marc.Record)6 MarcRecord (cz.mzk.recordmanager.server.marc.MarcRecord)5 List (java.util.List)5 TreeSet (java.util.TreeSet)5 Subfield (org.marc4j.marc.Subfield)3 ArrayList (java.util.ArrayList)2 Date (java.util.Date)2 Matcher (java.util.regex.Matcher)2 Pair (org.apache.commons.lang3.tuple.Pair)2 HarvestedRecord (cz.mzk.recordmanager.server.model.HarvestedRecord)1 HarvestedRecordUniqueId (cz.mzk.recordmanager.server.model.HarvestedRecord.HarvestedRecordUniqueId)1 ByteArrayInputStream (java.io.ByteArrayInputStream)1 SimpleDateFormat (java.text.SimpleDateFormat)1 StringJoiner (java.util.StringJoiner)1