Search in sources :

Example 1 with MarcJsonWriter

use of org.marc4j.MarcJsonWriter in project mod-source-record-manager by folio-org.

the class MarcRecordParser method parseRecord.

@Override
public ParsedResult parseRecord(String rawRecord) {
    ParsedResult result = new ParsedResult();
    try {
        MarcReader reader = new MarcStreamReader(new ByteArrayInputStream(rawRecord.getBytes(DEFAULT_CHARSET)), DEFAULT_CHARSET.name());
        if (reader.hasNext()) {
            ByteArrayOutputStream os = new ByteArrayOutputStream();
            MarcJsonWriter writer = new MarcJsonWriter(os);
            Record record = reader.next();
            List<MarcError> errorList = record.getErrors();
            if (errorList == null || errorList.isEmpty()) {
                writer.write(record);
                result.setParsedRecord(new JsonObject(new String(os.toByteArray())));
            } else {
                List<JsonObject> preparedErrors = new ArrayList<>();
                errorList.forEach(e -> preparedErrors.add(buildErrorObject(e)));
                prepareResultWithError(result, preparedErrors);
            }
            return result;
        } else {
            result.setParsedRecord(new JsonObject());
        }
    } catch (Exception e) {
        LOGGER.error("Error during parse MARC record from raw record", e);
        prepareResultWithError(result, Collections.singletonList(new JsonObject().put("name", e.getClass().getName()).put("message", e.getMessage())));
    }
    return result;
}
Also used : ArrayList(java.util.ArrayList) JsonObject(io.vertx.core.json.JsonObject) MarcStreamReader(org.marc4j.MarcStreamReader) ByteArrayOutputStream(java.io.ByteArrayOutputStream) ByteArrayInputStream(java.io.ByteArrayInputStream) MarcReader(org.marc4j.MarcReader) Record(org.marc4j.marc.Record) MarcError(org.marc4j.MarcError) MarcJsonWriter(org.marc4j.MarcJsonWriter)

Example 2 with MarcJsonWriter

use of org.marc4j.MarcJsonWriter in project mod-source-record-manager by folio-org.

the class XmlRecordParser method parseRecord.

@Override
public ParsedResult parseRecord(String rawRecord) {
    ParsedResult result = new ParsedResult();
    try {
        MarcXmlReader reader = new MarcXmlReader(new ByteArrayInputStream(rawRecord.getBytes(StandardCharsets.UTF_8)));
        if (reader.hasNext()) {
            ByteArrayOutputStream os = new ByteArrayOutputStream();
            MarcJsonWriter writer = new MarcJsonWriter(os);
            Record record = reader.next();
            writer.write(record);
            result.setParsedRecord(new JsonObject(new String(os.toByteArray())));
        } else {
            result.setParsedRecord(new JsonObject());
        }
    } catch (Exception e) {
        LOGGER.error("Error during parse MARC record from MARC XML data", e);
        result.setHasError(true);
        result.setErrors(new JsonObject().put("name", e.getClass().getName()).put("message", e.getMessage()));
    }
    return result;
}
Also used : ByteArrayInputStream(java.io.ByteArrayInputStream) JsonObject(io.vertx.core.json.JsonObject) Record(org.marc4j.marc.Record) ByteArrayOutputStream(java.io.ByteArrayOutputStream) MarcXmlReader(org.marc4j.MarcXmlReader) MarcJsonWriter(org.marc4j.MarcJsonWriter)

Example 3 with MarcJsonWriter

use of org.marc4j.MarcJsonWriter in project mod-source-record-manager by folio-org.

the class AdditionalFieldsUtil method removeField.

/**
 * remove field from marc record
 *
 * @param record record that needs to be updated
 * @param field  tag of the field
 * @return true if succeeded, false otherwise
 */
public static boolean removeField(Record record, String field) {
    boolean result = false;
    try (ByteArrayOutputStream baos = new ByteArrayOutputStream()) {
        if (record != null && record.getParsedRecord() != null && record.getParsedRecord().getContent() != null) {
            MarcReader reader = buildMarcReader(record);
            MarcWriter marcStreamWriter = new MarcStreamWriter(new ByteArrayOutputStream());
            MarcJsonWriter marcJsonWriter = new MarcJsonWriter(baos);
            if (reader.hasNext()) {
                org.marc4j.marc.Record marcRecord = reader.next();
                VariableField variableField = marcRecord.getVariableField(field);
                if (variableField != null) {
                    marcRecord.removeVariableField(variableField);
                }
                // use stream writer to recalculate leader
                marcStreamWriter.write(marcRecord);
                marcJsonWriter.write(marcRecord);
                record.setParsedRecord(record.getParsedRecord().withContent(new JsonObject(new String(baos.toByteArray())).encode()));
                result = true;
            }
        }
    } catch (Exception e) {
        LOGGER.error("Failed to remove controlled field {} from record {}", field, record.getId(), e);
    }
    return result;
}
Also used : JsonObject(io.vertx.core.json.JsonObject) ByteArrayOutputStream(java.io.ByteArrayOutputStream) VariableField(org.marc4j.marc.VariableField) MarcReader(org.marc4j.MarcReader) MarcWriter(org.marc4j.MarcWriter) MarcJsonWriter(org.marc4j.MarcJsonWriter) MarcStreamWriter(org.marc4j.MarcStreamWriter)

Example 4 with MarcJsonWriter

use of org.marc4j.MarcJsonWriter in project mod-source-record-manager by folio-org.

the class AdditionalFieldsUtil method addDataFieldToMarcRecord.

/**
 * Adds new data field to marc record
 *
 * @param record record that needs to be updated
 * @param tag    tag of data field
 * @param value  value of the field to add
 * @return true if succeeded, false otherwise
 */
public static boolean addDataFieldToMarcRecord(Record record, String tag, char ind1, char ind2, char subfield, String value) {
    boolean result = false;
    try (ByteArrayOutputStream os = new ByteArrayOutputStream()) {
        if (record != null && record.getParsedRecord() != null && record.getParsedRecord().getContent() != null) {
            MarcReader reader = buildMarcReader(record);
            MarcWriter streamWriter = new MarcStreamWriter(new ByteArrayOutputStream());
            MarcJsonWriter jsonWriter = new MarcJsonWriter(os);
            MarcFactory factory = MarcFactory.newInstance();
            if (reader.hasNext()) {
                org.marc4j.marc.Record marcRecord = reader.next();
                DataField dataField = factory.newDataField(tag, ind1, ind2);
                dataField.addSubfield(factory.newSubfield(subfield, value));
                addDataFieldInNumericalOrder(dataField, marcRecord);
                // use stream writer to recalculate leader
                streamWriter.write(marcRecord);
                jsonWriter.write(marcRecord);
                record.setParsedRecord(record.getParsedRecord().withContent(new JsonObject(new String(os.toByteArray())).encode()));
                result = true;
            }
        }
    } catch (Exception e) {
        LOGGER.error("Failed to add additional data field {} to record {}", tag, record.getId(), e);
    }
    return result;
}
Also used : JsonObject(io.vertx.core.json.JsonObject) MarcFactory(org.marc4j.marc.MarcFactory) ByteArrayOutputStream(java.io.ByteArrayOutputStream) DataField(org.marc4j.marc.DataField) MarcReader(org.marc4j.MarcReader) MarcWriter(org.marc4j.MarcWriter) MarcJsonWriter(org.marc4j.MarcJsonWriter) MarcStreamWriter(org.marc4j.MarcStreamWriter)

Example 5 with MarcJsonWriter

use of org.marc4j.MarcJsonWriter in project mod-source-record-storage by folio-org.

the class MarcUtil method recordToMarcJson.

private static String recordToMarcJson(Record record) throws IOException {
    try (ByteArrayOutputStream out = new ByteArrayOutputStream()) {
        final MarcJsonWriter writer = new MarcJsonWriter(out);
        writer.write(record);
        writer.close();
        return out.toString();
    }
}
Also used : ByteArrayOutputStream(java.io.ByteArrayOutputStream) MarcJsonWriter(org.marc4j.MarcJsonWriter)

Aggregations

ByteArrayOutputStream (java.io.ByteArrayOutputStream)12 MarcJsonWriter (org.marc4j.MarcJsonWriter)12 JsonObject (io.vertx.core.json.JsonObject)10 MarcReader (org.marc4j.MarcReader)9 MarcStreamWriter (org.marc4j.MarcStreamWriter)8 MarcWriter (org.marc4j.MarcWriter)8 MarcFactory (org.marc4j.marc.MarcFactory)6 PostProcessingException (org.folio.services.exceptions.PostProcessingException)4 DataField (org.marc4j.marc.DataField)4 VariableField (org.marc4j.marc.VariableField)4 ByteArrayInputStream (java.io.ByteArrayInputStream)2 ControlField (org.marc4j.marc.ControlField)2 Record (org.marc4j.marc.Record)2 IOException (java.io.IOException)1 ArrayList (java.util.ArrayList)1 MarcError (org.marc4j.MarcError)1 MarcStreamReader (org.marc4j.MarcStreamReader)1 MarcXmlReader (org.marc4j.MarcXmlReader)1