All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.solab.iso8583.MessageFactory Maven / Gradle / Ivy

Go to download

Java implementation of the ISO 8583 protocol, focused on making the creation, edition and reading of ISO8583 messages as simple and flexible as possible.

There is a newer version: 2.0.0
Show newest version
/*
j8583 A Java implementation of the ISO8583 protocol
Copyright (C) 2007 Enrique Zamudio Lopez

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.

This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
*/
package com.solab.iso8583;

import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.text.ParseException;
import java.util.*;

import com.solab.iso8583.parse.DateTimeParseInfo;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.solab.iso8583.parse.ConfigParser;
import com.solab.iso8583.parse.FieldParseInfo;

/** This class is used to create messages, either from scratch or from an existing String or byte
 * buffer. It can be configured to put default values on newly created messages, and also to know
 * what to expect when reading messages from an InputStream.
 * 

* The factory can be configured to know what values to set for newly created messages, both from * a template (useful for fields that must be set with the same value for EVERY message created) * and individually (for trace [field 11] and message date [field 7]). *

* It can also be configured to know what fields to expect in incoming messages (all possible values * must be stated, indicating the date type for each). This way the messages can be parsed from * a byte buffer. * * @author Enrique Zamudio */ public class MessageFactory { protected final Logger log = LoggerFactory.getLogger(getClass()); /** This map stores the message template for each message type. */ private Map typeTemplates = new HashMap<>(); /** Stores the information needed to parse messages sorted by type. */ protected Map> parseMap = new HashMap<>(); /** Stores the field numbers to be parsed, in order of appearance. */ protected Map> parseOrder = new HashMap<>(); private TraceNumberGenerator traceGen; /** The ISO header to be included in each message type. */ private Map isoHeaders = new HashMap<>(); private Map binIsoHeaders = new HashMap<>(); /** A map for the custom field encoder/decoders, keyed by field number. */ @SuppressWarnings("rawtypes") private Map customFields = new HashMap<>(); /** Indicates if the current date should be set on new messages (field 7). */ private boolean setDate; /** Indicates that the header should be written/parsed as binary */ private boolean binaryHeader; /** Indicates that the fields should be written/parsed as binary */ private boolean binaryFields; private int etx = -1; /** Flag to specify if missing fields should be ignored as long as they're at * the end of the message. */ private boolean ignoreLast; private boolean forceb2; private boolean binBitmap; private boolean forceStringEncoding; /* Flag specifying that variable length fields have the length header encoded in hexadecimal format */ private boolean variableLengthFieldsInHex; private String encoding = System.getProperty("file.encoding"); /** This flag gets passed on to newly created messages and also sets this value for all * field parsers in parsing guides. */ public void setForceStringEncoding(boolean flag) { forceStringEncoding = flag; for (Map pm : parseMap.values()) { for (FieldParseInfo parser : pm.values()) { parser.setForceStringDecoding(flag); } } } public boolean isForceStringEncoding() { return forceStringEncoding; } /** This flag gets passed on to newly created messages and also sets this value for all * field parsers in parsing guides. */ public void setVariableLengthFieldsInHex(boolean flag) { this.variableLengthFieldsInHex = flag; for (Map pm : parseMap.values()) { for (FieldParseInfo parser : pm.values()) { parser.setForceHexadecimalLength(flag); } } } public boolean isVariableLengthFieldsInHex() { return variableLengthFieldsInHex; } /** Tells the factory to create messages that encode their bitmaps in binary format * even when they're encoded as text. Has no effect on binary messages. */ public void setUseBinaryBitmap(boolean flag) { binBitmap = flag; } /** Returns true if the factory is set to create and parse bitmaps in binary format * when the messages are encoded as text. */ public boolean isUseBinaryBitmap() { return binBitmap; } /** Sets the character encoding used for parsing ALPHA, LLVAR and LLLVAR fields. */ public void setCharacterEncoding(String value) { if (encoding == null) { throw new IllegalArgumentException("Cannot set null encoding."); } encoding = value; if (!parseMap.isEmpty()) { for (Map pt : parseMap.values()) { for (FieldParseInfo fpi : pt.values()) { fpi.setCharacterEncoding(encoding); } } } if (!typeTemplates.isEmpty()) { for (T tmpl : typeTemplates.values()) { tmpl.setCharacterEncoding(encoding); for (int i = 2 ; i<129; i++) { IsoValue v = tmpl.getField(i); if (v != null) { v.setCharacterEncoding(encoding); } } } } } /** Returns the encoding used to parse ALPHA, LLVAR and LLLVAR fields. The default is the * file.encoding system property. */ public String getCharacterEncoding() { return encoding; } /** Sets or clears the flag to pass to new messages, to include a secondary bitmap * even if it's not needed. */ public void setForceSecondaryBitmap(boolean flag) { forceb2 = flag; } public boolean isForceSecondaryBitmap() { return forceb2; } /** Setting this property to true avoids getting a ParseException when parsing messages that don't have * the last field specified in the bitmap. This is common with certain providers where field 128 is * specified in the bitmap but not actually included in the messages. Default is false, which has * been the behavior in previous versions when this option didn't exist. */ public void setIgnoreLastMissingField(boolean flag) { ignoreLast = flag; } /** This flag indicates if the MessageFactory throws an exception if the last field of a message * is not really present even though it's specified in the bitmap. Default is false which means * an exception is thrown. */ public boolean getIgnoreLastMissingField() { return ignoreLast; } /** Specifies a map for custom field encoder/decoders. The keys are the field numbers. */ @SuppressWarnings("rawtypes") public void setCustomFields(Map value) { customFields = value; } /** Sets the CustomField encoder for the specified field number. */ public void setCustomField(int index, CustomField value) { customFields.put(index, value); } /** Returns a custom field encoder/decoder for the specified field number, if one is available. */ @SuppressWarnings("unchecked") public CustomField getCustomField(int index) { return customFields.get(index); } /** Returns a custom field encoder/decoder for the specified field number, if one is available. */ @SuppressWarnings("unchecked") public CustomField getCustomField(Integer index) { return customFields.get(index); } /** Tells the receiver to read the configuration at the specified path. This just calls * ConfigParser.configureFromClasspathConfig() with itself and the specified path at arguments, * but is really convenient in case the MessageFactory is being configured from within, say, Spring. */ public void setConfigPath(String path) throws IOException { ConfigParser.configureFromClasspathConfig(this, path); //Now re-set some properties that need to be propagated down to the recently assigned objects setCharacterEncoding(encoding); setForceStringEncoding(forceStringEncoding); } /** Tells the receiver to create and parse binary messages if the flag is true. * Default is false, that is, create and parse ASCII messages. Sets both binaryHeader and fields to the flag. */ public void setUseBinaryMessages(boolean flag) { binaryHeader = binaryFields = flag; } /** Returns true is the factory is set to create and parse binary messages, * false if it uses ASCII messages. Default is false. True if both binaryHeader & binaryFields * are set to true * @deprecated Check the new flags binaryHeader and binaryFields instead. */ @Deprecated public boolean getUseBinaryMessages() { return binaryHeader && binaryFields; } /** header portion of the message is written/parsed in binary, default is false */ public void setBinaryHeader(boolean flag){ binaryHeader = flag; } /** header portion of the message is written/parsed in binary, default is false */ public boolean isBinaryHeader(){ return binaryHeader; } /** fields portion of the message is written/parsed in binary, default is false */ public void setBinaryFields(boolean flag){ binaryFields = flag; } /** fields portion of the message is written/parsed in binary, default is false */ public boolean isBinaryFields(){ return binaryFields; } /** fields portion of the message is written/parsed in binary */ /** Sets the ETX character to be sent at the end of the message. This is optional and the * default is -1, which means nothing should be sent as terminator. * @param value The ASCII value of the ETX character or -1 to indicate no terminator should be used. */ public void setEtx(int value) { etx = value; } public int getEtx() { return etx; } /** Creates a new message of the specified type, with optional trace and date values as well * as any other values specified in a message template. If the factory is set to use binary * messages, then the returned message will be written using binary coding. * @param type The message type, for example 0x200, 0x400, etc. */ public T newMessage(int type) { T m; if (binIsoHeaders.get(type) != null) { m = createIsoMessageWithBinaryHeader(binIsoHeaders.get(type)); } else { m = createIsoMessage(isoHeaders.get(type)); } m.setType(type); m.setEtx(etx); m.setBinaryHeader(isBinaryHeader()); m.setBinaryFields(isBinaryFields()); m.setForceSecondaryBitmap(forceb2); m.setBinaryBitmap(binBitmap); m.setCharacterEncoding(encoding); m.setForceStringEncoding(forceStringEncoding); m.setEncodeVariableLengthFieldsInHex(variableLengthFieldsInHex); //Copy the values from the template IsoMessage templ = typeTemplates.get(type); if (templ != null) { for (int i = 2; i <= 128; i++) { if (templ.hasField(i)) { //We could detect here if there's a custom object with a CustomField, //but we can't copy the value so there's no point. m.setField(i, templ.getField(i).clone()); } } } if (traceGen != null) { m.setValue(11, traceGen.nextTrace(), IsoType.NUMERIC, 6); } if (setDate) { if (m.hasField(7)) { //We may have a field with a timezone but no value m.updateValue(7, new Date()); } else { IsoValue now = new IsoValue<>(IsoType.DATE10, new Date()); if (DateTimeParseInfo.getDefaultTimeZone() != null) { now.setTimeZone(DateTimeParseInfo.getDefaultTimeZone()); } m.setField(7, now); } } return m; } /** Creates a response message by calling {@link #createResponse(IsoMessage, boolean)} * with true as the second parameter. */ public T createResponse(T request) { return createResponse(request, true); } /** Creates a message to respond to a request. Increments the message type by 16, * sets all fields from the template if there is one, * and either copies all values from the request or only the ones already in the template, * depending on the value of copyAllFields flag. * @param request An ISO8583 message with a request type (ending in 00). * @param copyAllFields If true, copies all fields from the request to the response, * overwriting any values already set from the template; otherwise * it only overwrites values for existing fields from the template. * If the template for a response does not exist, then all fields from * the request are copied even in this flag is false. */ public T createResponse(T request, boolean copyAllFields) { T resp = createIsoMessage(isoHeaders.get(request.getType() + 16)); resp.setCharacterEncoding(request.getCharacterEncoding()); resp.setBinaryHeader(request.isBinaryHeader()); resp.setBinaryFields(request.isBinaryFields()); resp.setBinaryBitmap(request.isBinaryBitmap()); resp.setType(request.getType() + 16); resp.setEtx(etx); resp.setForceSecondaryBitmap(forceb2); resp.setEncodeVariableLengthFieldsInHex(request.isEncodeVariableLengthFieldsInHex()); //Copy the values from the template or the request (request has preference) IsoMessage templ = typeTemplates.get(resp.getType()); if (templ == null) { for (int i = 2; i < 128; i++) { if (request.hasField(i)) { resp.setField(i, request.getField(i).clone()); } } } else if (copyAllFields) { for (int i = 2; i < 128; i++) { if (request.hasField(i)) { resp.setField(i, request.getField(i).clone()); } else if (templ.hasField(i)) { resp.setField(i, templ.getField(i).clone()); } } } else { for (int i = 2; i < 128; i++) { if (templ.hasField(i)) { IsoMessage srcmsg = request.hasField(i) ? request : templ; resp.setField(i, srcmsg.getField(i).clone()); } } } return resp; } /** Sets the timezone for the specified FieldParseInfo, if it's needed for parsing dates. */ public void setTimezoneForParseGuide(int messageType, int field, TimeZone tz) { if (field == 0) { DateTimeParseInfo.setDefaultTimeZone(tz); } Map guide = parseMap.get(messageType); if (guide != null) { FieldParseInfo fpi = guide.get(field); if (fpi instanceof DateTimeParseInfo) { ((DateTimeParseInfo) fpi).setTimeZone(tz); return; } } log.warn("Field {} for message type {} is not for dates, cannot set timezone", field, messageType); } /** Convenience for parseMessage(buf, isoHeaderLength, false) */ public T parseMessage(byte[] buf, int isoHeaderLength) throws ParseException, UnsupportedEncodingException { return parseMessage(buf, isoHeaderLength, false); } /** Creates a new message instance from the buffer, which must contain a valid ISO8583 * message. If the factory is set to use binary messages then it will try to parse * a binary message. * @param buf The byte buffer containing the message. Must not include the length header. * @param isoHeaderLength The expected length of the ISO header, after which the message type * and the rest of the message must come. */ public T parseMessage(byte[] buf, int isoHeaderLength, boolean binaryIsoHeader) throws ParseException, UnsupportedEncodingException { final int minlength = isoHeaderLength+(binaryHeader?2:4)+(binBitmap||binaryHeader ? 8:16); if (buf.length < minlength) { throw new ParseException("Insufficient buffer length, needs to be at least " + minlength, 0); } final T m; if (binaryIsoHeader && isoHeaderLength > 0) { byte[] _bih = new byte[isoHeaderLength]; System.arraycopy(buf, 0, _bih, 0, isoHeaderLength); m = createIsoMessageWithBinaryHeader(_bih); } else { m = createIsoMessage(isoHeaderLength > 0 ? new String(buf, 0, isoHeaderLength, encoding) : null); } m.setCharacterEncoding(encoding); final int type; if (binaryHeader) { type = ((buf[isoHeaderLength] & 0xff) << 8) | (buf[isoHeaderLength + 1] & 0xff); } else if (forceStringEncoding) { type = Integer.parseInt(new String(buf, isoHeaderLength, 4, encoding), 16); } else { type = ((buf[isoHeaderLength] - 48) << 12) | ((buf[isoHeaderLength + 1] - 48) << 8) | ((buf[isoHeaderLength + 2] - 48) << 4) | (buf[isoHeaderLength + 3] - 48); } m.setType(type); //Parse the bitmap (primary first) final BitSet bs = new BitSet(64); int pos = 0; if (binaryHeader || binBitmap) { final int bitmapStart = isoHeaderLength + (binaryHeader ? 2 : 4); for (int i = bitmapStart; i < 8+bitmapStart; i++) { int bit = 128; for (int b = 0; b < 8; b++) { bs.set(pos++, (buf[i] & bit) != 0); bit >>= 1; } } //Check for secondary bitmap and parse if necessary if (bs.get(0)) { if (buf.length < minlength + 8) { throw new ParseException("Insufficient length for secondary bitmap", minlength); } for (int i = 8+bitmapStart; i < 16+bitmapStart; i++) { int bit = 128; for (int b = 0; b < 8; b++) { bs.set(pos++, (buf[i] & bit) != 0); bit >>= 1; } } pos = minlength + 8; } else { pos = minlength; } } else { //ASCII parsing try { final byte[] bitmapBuffer; if (forceStringEncoding) { byte[] _bb = new String(buf, isoHeaderLength+4, 16, encoding).getBytes(); bitmapBuffer = new byte[36+isoHeaderLength]; System.arraycopy(_bb, 0, bitmapBuffer, 4+isoHeaderLength, 16); } else { bitmapBuffer = buf; } for (int i = isoHeaderLength + 4; i < isoHeaderLength + 20; i++) { if (bitmapBuffer[i] >= '0' && bitmapBuffer[i] <= '9') { bs.set(pos++, ((bitmapBuffer[i] - 48) & 8) > 0); bs.set(pos++, ((bitmapBuffer[i] - 48) & 4) > 0); bs.set(pos++, ((bitmapBuffer[i] - 48) & 2) > 0); bs.set(pos++, ((bitmapBuffer[i] - 48) & 1) > 0); } else if (bitmapBuffer[i] >= 'A' && bitmapBuffer[i] <= 'F') { bs.set(pos++, ((bitmapBuffer[i] - 55) & 8) > 0); bs.set(pos++, ((bitmapBuffer[i] - 55) & 4) > 0); bs.set(pos++, ((bitmapBuffer[i] - 55) & 2) > 0); bs.set(pos++, ((bitmapBuffer[i] - 55) & 1) > 0); } else if (bitmapBuffer[i] >= 'a' && bitmapBuffer[i] <= 'f') { bs.set(pos++, ((bitmapBuffer[i] - 87) & 8) > 0); bs.set(pos++, ((bitmapBuffer[i] - 87) & 4) > 0); bs.set(pos++, ((bitmapBuffer[i] - 87) & 2) > 0); bs.set(pos++, ((bitmapBuffer[i] - 87) & 1) > 0); } } //Check for secondary bitmap and parse it if necessary if (bs.get(0)) { if (buf.length < minlength + 16) { throw new ParseException("Insufficient length for secondary bitmap", minlength); } if (forceStringEncoding) { byte[] _bb = new String(buf, isoHeaderLength+20, 16, encoding).getBytes(); System.arraycopy(_bb, 0, bitmapBuffer, 20+isoHeaderLength, 16); } for (int i = isoHeaderLength + 20; i < isoHeaderLength + 36; i++) { if (bitmapBuffer[i] >= '0' && bitmapBuffer[i] <= '9') { bs.set(pos++, ((bitmapBuffer[i] - 48) & 8) > 0); bs.set(pos++, ((bitmapBuffer[i] - 48) & 4) > 0); bs.set(pos++, ((bitmapBuffer[i] - 48) & 2) > 0); bs.set(pos++, ((bitmapBuffer[i] - 48) & 1) > 0); } else if (bitmapBuffer[i] >= 'A' && bitmapBuffer[i] <= 'F') { bs.set(pos++, ((bitmapBuffer[i] - 55) & 8) > 0); bs.set(pos++, ((bitmapBuffer[i] - 55) & 4) > 0); bs.set(pos++, ((bitmapBuffer[i] - 55) & 2) > 0); bs.set(pos++, ((bitmapBuffer[i] - 55) & 1) > 0); } else if (bitmapBuffer[i] >= 'a' && bitmapBuffer[i] <= 'f') { bs.set(pos++, ((bitmapBuffer[i] - 87) & 8) > 0); bs.set(pos++, ((bitmapBuffer[i] - 87) & 4) > 0); bs.set(pos++, ((bitmapBuffer[i] - 87) & 2) > 0); bs.set(pos++, ((bitmapBuffer[i] - 87) & 1) > 0); } } pos = 16 + minlength; } else { pos = minlength; } } catch (NumberFormatException ex) { ParseException _e = new ParseException("Invalid ISO8583 bitmap", pos); _e.initCause(ex); throw _e; } } //Parse each field Map parseGuide = parseMap.get(type); List index = parseOrder.get(type); if (index == null) { log.error(String.format("ISO8583 MessageFactory has no parsing guide for message type %04x [%s]", type, new String(buf))); throw new ParseException(String.format( "ISO8583 MessageFactory has no parsing guide for message type %04x [%s]", type, new String(buf)), 0); } //First we check if the message contains fields not specified in the parsing template boolean abandon = false; for (int i = 1; i < bs.length(); i++) { if (bs.get(i) && !index.contains(i+1)) { log.warn("ISO8583 MessageFactory cannot parse field {}: unspecified in parsing guide for type {}", i+1, Integer.toString(type, 16)); abandon = true; } } if (abandon) { throw new ParseException("ISO8583 MessageFactory cannot parse fields", 0); } //Now we parse each field if (binaryFields) { for (Integer i : index) { FieldParseInfo fpi = parseGuide.get(i); if (bs.get(i - 1)) { if (ignoreLast && pos >= buf.length && i.intValue() == index.get(index.size() -1)) { log.warn("Field {} is not really in the message even though it's in the bitmap", i); bs.clear(i - 1); } else { CustomField decoder = fpi.getDecoder(); if (decoder == null) { decoder = getCustomField(i); } IsoValue val = fpi.parseBinary(i, buf, pos, decoder); m.setField(i, val); if (val != null) { if (val.getType() == IsoType.NUMERIC || val.getType() == IsoType.DATE10 || val.getType() == IsoType.DATE4 || val.getType() == IsoType.DATE12 || val.getType() == IsoType.DATE14 || val.getType() == IsoType.DATE6 || val.getType() == IsoType.DATE_EXP || val.getType() == IsoType.AMOUNT || val.getType() == IsoType.TIME) { pos += (val.getLength() / 2) + (val.getLength() % 2); } else if (val.getType() == IsoType.LLBCDBIN || val.getType() == IsoType.LLLBCDBIN || val.getType() == IsoType.LLLLBCDBIN) { pos += val.getLength() / 2 + ((val.getLength() % 2 == 0) ? 0 : 1); } else { pos += val.getLength(); } if (val.getType() == IsoType.LLVAR || val.getType() == IsoType.LLBIN || val.getType() == IsoType.LLBCDBIN ) { pos++; } else if (val.getType() == IsoType.LLLVAR || val.getType() == IsoType.LLLBIN || val.getType() == IsoType.LLLBCDBIN || val.getType() == IsoType.LLLLVAR || val.getType() == IsoType.LLLLBIN || val.getType() == IsoType.LLLLBCDBIN) { pos += 2; } } } } } } else { for (Integer i : index) { FieldParseInfo fpi = parseGuide.get(i); if (bs.get(i - 1)) { if (ignoreLast && pos >= buf.length && i.intValue() == index.get(index.size() -1)) { log.warn("Field {} is not really in the message even though it's in the bitmap", i); bs.clear(i - 1); } else { CustomField decoder = fpi.getDecoder(); if (decoder == null) { decoder = getCustomField(i); } IsoValue val = fpi.parse(i, buf, pos, decoder); m.setField(i, val); //To get the correct next position, we need to get the number of bytes, not chars pos += val.toString().getBytes(fpi.getCharacterEncoding()).length; if (val.getType() == IsoType.LLVAR || val.getType() == IsoType.LLBIN || val.getType() == IsoType.LLBCDBIN) { pos += 2; } else if (val.getType() == IsoType.LLLVAR || val.getType() == IsoType.LLLBIN || val.getType() == IsoType.LLLBCDBIN) { pos += 3; } else if (val.getType() == IsoType.LLLLVAR || val.getType() == IsoType.LLLLBIN || val.getType() == IsoType.LLLLBCDBIN) { pos += 4; } } } } } m.setBinaryHeader(binaryHeader); m.setBinaryFields(binaryFields); m.setBinaryBitmap(binBitmap); m.setEncodeVariableLengthFieldsInHex(variableLengthFieldsInHex); return m; } /** Creates a Iso message, override this method in the subclass to provide your * own implementations of IsoMessage. * @param header The optional ISO header that goes before the message type * @return IsoMessage */ @SuppressWarnings("unchecked") protected T createIsoMessage(String header) { return (T)new IsoMessage(header); } /** Creates a Iso message with the specified binary ISO header. * Override this method in the subclass to provide your * own implementations of IsoMessage. * @param binHeader The optional ISO header that goes before the message type * @return IsoMessage */ @SuppressWarnings("unchecked") protected T createIsoMessageWithBinaryHeader(byte[] binHeader) { return (T)new IsoMessage(binHeader); } /** Sets whether the factory should set the current date on newly created messages, * in field 7. Default is false. */ public void setAssignDate(boolean flag) { setDate = flag; } /** Returns true if the factory is assigning the current date to newly created messages * (field 7). Default is false. */ public boolean getAssignDate() { return setDate; } /** Sets the generator that this factory will get new trace numbers from. There is no * default generator. */ public void setTraceNumberGenerator(TraceNumberGenerator value) { traceGen = value; } /** Returns the generator used to assign trace numbers to new messages. */ public TraceNumberGenerator getTraceNumberGenerator() { return traceGen; } /** Sets the ISO header to be used in each message type. * @param value A map where the keys are the message types and the values are the ISO headers. */ public void setIsoHeaders(Map value) { isoHeaders.clear(); isoHeaders.putAll(value); } /** Sets the ISO header for a specific message type. * @param type The message type, for example 0x200. * @param value The ISO header, or NULL to remove any headers for this message type. */ public void setIsoHeader(int type, String value) { if (value == null) { isoHeaders.remove(type); } else { isoHeaders.put(type, value); binIsoHeaders.remove(type); } } /** Returns the ISO header used for the specified type. */ public String getIsoHeader(int type) { return isoHeaders.get(type); } /** Sets the ISO header for a specific message type, in binary format. * @param type The message type, for example 0x200. * @param value The ISO header, or NULL to remove any headers for this message type. */ public void setBinaryIsoHeader(int type, byte[] value) { if (value == null) { binIsoHeaders.remove(type); } else { binIsoHeaders.put(type, value); isoHeaders.remove(type); } } /** Returns the binary ISO header used for the specified type. */ public byte[] getBinaryIsoHeader(int type) { return binIsoHeaders.get(type); } /** Adds a message template to the factory. If there was a template for the same * message type as the new one, it is overwritten. */ public void addMessageTemplate(T templ) { if (templ != null) { typeTemplates.put(templ.getType(), templ); } } /** Removes the message template for the specified type. */ public void removeMessageTemplate(int type) { typeTemplates.remove(type); } /** Returns the template for the specified message type. This allows templates to be modified * programmatically. */ public T getMessageTemplate(int type) { return typeTemplates.get(type); } /** Invoke this method in case you want to freeze the configuration, making message and parsing * templates, as well as iso headers and custom fields, immutable. */ public void freeze() { typeTemplates = Collections.unmodifiableMap(typeTemplates); parseMap = Collections.unmodifiableMap(parseMap); parseOrder = Collections.unmodifiableMap(parseOrder); isoHeaders = Collections.unmodifiableMap(isoHeaders); binIsoHeaders = Collections.unmodifiableMap(binIsoHeaders); customFields = Collections.unmodifiableMap(customFields); } /** Sets a map with the fields that are to be expected when parsing a certain type of * message. * @param type The message type. * @param map A map of FieldParseInfo instances, each of which define what type and length * of field to expect. The keys will be the field numbers. */ public void setParseMap(int type, Map map) { parseMap.put(type, map); ArrayList index = new ArrayList<>(); index.addAll(map.keySet()); Collections.sort(index); log.trace(String.format("ISO8583 MessageFactory adding parse map for type %04x with fields %s", type, index)); parseOrder.put(type, index); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy