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

org.krysalis.barcode4j.impl.fourstate.AbstractFourStateLogicImpl Maven / Gradle / Ivy

Go to download

Barcode4J is a flexible generator for barcodes written in Java inclusive extensions to support Apache FOP 0.93 and later.

The newest version!
/*
 * Copyright 2006 Jeremias Maerki.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.krysalis.barcode4j.impl.fourstate;

import org.krysalis.barcode4j.BarGroup;
import org.krysalis.barcode4j.ChecksumMode;
import org.krysalis.barcode4j.ClassicBarcodeLogicHandler;

/**
 * Provides a base class for "four-state" barcodes.
 * 
 * @author Jeremias Maerki
 * @version $Id: AbstractFourStateLogicImpl.java,v 1.2 2008/05/13 13:00:43 jmaerki Exp $
 */
public abstract class AbstractFourStateLogicImpl {


    private ChecksumMode checksumMode = ChecksumMode.CP_AUTO;

    /**
     * Main constructor
     * @param mode checksum mode
     */
    public AbstractFourStateLogicImpl(ChecksumMode mode) {
        this.checksumMode = mode;
    }

    /**
     * Returns the currently active checksum mode.
     * @return the checksum mode
     */
    public ChecksumMode getChecksumMode() {
        return this.checksumMode;
    }

    /**
     * Calculates the checksum for a message to be encoded as an 
     * one of the foru-state barcode symbologies.
     * @param msg message to calculate the check digit for
     * @return char the check digit
     */
    public abstract char calcChecksum(String msg);


    /**
     * Verifies the checksum for a message.
     * @param msg message (check digit included)
     * @return boolean True, if the checksum is correct
     */
    public boolean validateChecksum(String msg) {
        char actual = msg.charAt(msg.length() - 1);
        char expected = calcChecksum(msg.substring(0, msg.length() - 1));
        return (actual == expected);
    }

    /**
     * Checks if a character is an ignored character (such as a '-' (dash)).
     * @param c character to check
     * @return True if the character is ignored
     */
    public static boolean isIgnoredChar(char c) {
        return false;
    }
    
    /**
     * Turns the given message into a normalize representation. Some subclasses may update/add
     * parentheses around the message and/or handle the checksum as necessary.
     * @param msg the message
     * @return the normalized message to be encoded
     */
    protected abstract String normalizeMessage(String msg);
    
    /**
     * Does the high-level encoding of the message into codewords.
     * @param msg the message
     * @return an array of Strings with codewords
     */
    protected abstract String[] encodeHighLevel(String msg);
    
    /**
     * Encodes a single character.
     * @param logic the logic handler to receive generated events
     * @param c the character to encode
     * @param codeword the codeword belonging to the character
     */
    protected void encodeCodeword(ClassicBarcodeLogicHandler logic, char c, String codeword) {
        logic.startBarGroup(BarGroup.MSG_CHARACTER, new Character(c).toString());
        for (int i = 0, count = codeword.length(); i < count; i++) {
            int height = Integer.parseInt(codeword.substring(i, i + 1));
            logic.addBar(true, height);
        }
        logic.endBarGroup();
    }

    /**
     * Generates the barcode logic
     * @param logic the logic handler to receive generated events
     * @param msg the message to encode
     */
    public void generateBarcodeLogic(ClassicBarcodeLogicHandler logic, String msg) {
        String normalizedMsg = normalizeMessage(msg);
        String[] encodedMsg = encodeHighLevel(normalizedMsg);

        logic.startBarcode(msg, normalizedMsg);
        
        // encode message
        for (int i = 0; i < encodedMsg.length; i++) {
            final char ch = normalizedMsg.charAt(i);
            encodeCodeword(logic, ch, encodedMsg[i]);
        }

        logic.endBarcode();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy