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

com.solab.iso8583.parse.Date4ParseInfo 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: 1.22.5
Show newest version
/*
j8583 A Java implementation of the ISO8583 protocol
Copyright (C) 2011 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.parse;

import java.io.UnsupportedEncodingException;
import java.text.ParseException;
import java.util.Calendar;
import java.util.Date;

import com.solab.iso8583.CustomField;
import com.solab.iso8583.IsoType;
import com.solab.iso8583.IsoValue;
import com.solab.iso8583.util.Bcd;

/**
 * This class is used to parse fields of type DATE4.
 *
 * @author Enrique Zamudio
 */
public class Date4ParseInfo extends DateTimeParseInfo {

    /**
     * Instantiates a new Date 4 parse info.
     */
    public Date4ParseInfo() {
		super(IsoType.DATE4, 4);
	}

	@Override
	public  IsoValue parse(final int field, final byte[] buf, final int pos,
                                final CustomField custom)
            throws ParseException, UnsupportedEncodingException {
		if (pos < 0) {
			throw new ParseException(String.format("Invalid DATE4 field %d position %d",
                    field, pos), pos);
		}
		if (pos+4 > buf.length) {
			throw new ParseException(String.format(
                    "Insufficient data for DATE4 field %d, pos %d", field, pos), pos);
		}
		Calendar cal = Calendar.getInstance();
		cal.set(Calendar.HOUR, 0);
		cal.set(Calendar.MINUTE, 0);
		cal.set(Calendar.SECOND, 0);
		cal.set(Calendar.MILLISECOND, 0);
		//Set the month in the date
        if (forceStringDecoding) {
            cal.set(Calendar.MONTH, Integer.parseInt(new String(buf, pos, 2, getCharacterEncoding()), 10)-1);
            cal.set(Calendar.DATE, Integer.parseInt(new String(buf, pos+2, 2, getCharacterEncoding()), 10));
        } else {
            cal.set(Calendar.MONTH, ((buf[pos] - 48) * 10) + buf[pos + 1] - 49);
            cal.set(Calendar.DATE, ((buf[pos + 2] - 48) * 10) + buf[pos + 3] - 48);
        }
        return createValue(cal, true);
	}

	@Override
	public  IsoValue parseBinary(final int field, final byte[] buf, final int pos,
                                      final CustomField custom) throws ParseException {
		int[] tens = new int[2];
		int start = 0;
        if (buf.length-pos < 2) {
            throw new ParseException(String.format(
                    "Insufficient data to parse binary DATE4 field %d pos %d",
                    field, pos), pos);
        }
		for (int i = pos; i < pos + tens.length; i++) {
			tens[start++] = Bcd.parseBcdLength(buf[i]);
		}
		Calendar cal = Calendar.getInstance();
		cal.set(Calendar.HOUR, 0);
		cal.set(Calendar.MINUTE, 0);
		cal.set(Calendar.SECOND, 0);
		//Set the month in the date
		cal.set(Calendar.MONTH, tens[0] - 1);
		cal.set(Calendar.DATE, tens[1]);
		cal.set(Calendar.MILLISECOND,0);
        return createValue(cal, true);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy