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

com.innovatrics.mrz.records.MrvB Maven / Gradle / Ivy

The newest version!
/**
 * Java parser for the MRZ records, as specified by the ICAO organization.
 * Copyright (C) 2011 Innovatrics s.r.o.
 *
 * 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 2.1 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.innovatrics.mrz.records;

import com.innovatrics.mrz.MrzParseException;
import com.innovatrics.mrz.MrzParser;
import com.innovatrics.mrz.MrzRange;
import com.innovatrics.mrz.MrzRecordOptional;
import com.innovatrics.mrz.types.MrzDocumentCode;
import com.innovatrics.mrz.types.MrzFormat;

/**
 * MRV type-B format: A two lines long, 36 characters per line format.
 *
 * @author Jeremy Le Berre
 */
public class MrvB extends MrzRecordOptional {

	private static final long serialVersionUID = 1L;

	/**
	 * Construct a MrvB Record.
	 */
	public MrvB() {
		super(MrzFormat.MRV_VISA_B, "MRV-B");
		setCode(MrzDocumentCode.TYPE_V);
		setCode1('V');
		setCode2('<');
	}

	@Override
	public void fromMrz(final String mrz) throws MrzParseException {
		super.fromMrz(mrz);
		final MrzParser parser = new MrzParser(mrz);
		setName(parser.parseName(new MrzRange(5, 36, 0)));
		setDocumentNumber(parser.parseString(new MrzRange(0, 9, 1)));
		setValidDocumentNumber(parser.checkDigit(9, 1, new MrzRange(0, 9, 1), "passport number"));
		setNationality(parser.parseString(new MrzRange(10, 13, 1)));
		setDateOfBirth(parser.parseDate(new MrzRange(13, 19, 1)));
		setValidDateOfBirth(parser.checkDigit(19, 1, new MrzRange(13, 19, 1), "date of birth") && getDateOfBirth().isDateValid());
		setSex(parser.parseSex(20, 1));
		setExpirationDate(parser.parseDate(new MrzRange(21, 27, 1)));
		setValidExpirationDate(parser.checkDigit(27, 1, new MrzRange(21, 27, 1), "expiration date") && getExpirationDate().isDateValid());
		setOptional(parser.parseString(new MrzRange(28, 36, 1)));
		// TODO validComposite missing? (full MRZ line)
	}

	@Override
	public String toMrz() {
		final StringBuilder sb = new StringBuilder("V<");
		sb.append(MrzParser.toMrz(getIssuingCountry(), 3));
		sb.append(MrzParser.nameToMrz(getSurname(), getGivenNames(), 31));
		sb.append('\n');
		// second line
		sb.append(MrzParser.toMrz(getDocumentNumber(), 9));
		sb.append(MrzParser.computeCheckDigitChar(MrzParser.toMrz(getDocumentNumber(), 9)));
		sb.append(MrzParser.toMrz(getNationality(), 3));
		sb.append(getDateOfBirth().toMrz());
		sb.append(MrzParser.computeCheckDigitChar(getDateOfBirth().toMrz()));
		sb.append(getSex().getMrz());
		sb.append(getExpirationDate().toMrz());
		sb.append(MrzParser.computeCheckDigitChar(getExpirationDate().toMrz()));
		sb.append(MrzParser.toMrz(getOptional(), 8));
		sb.append('\n');
		return sb.toString();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy