OpenConcerto

Dépôt officiel du code source de l'ERP OpenConcerto
sonarqube

svn://code.openconcerto.org/openconcerto

Rev

Blame | Last modification | View Log | RSS feed

/*
 * Copyright 2014 Robin Stuart
 *
 * 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 uk.org.okapibarcode.backend;

import java.awt.geom.Rectangle2D;

/**
 * Implements the Two-Track Pharmacode bar code symbology. <br>
 * Pharmacode Two-Track is an alternative system to Pharmacode One-Track used for the identification
 * of pharmaceuticals. The symbology is able to encode whole numbers between 4 and 64570080.
 *
 * @author <a href="mailto:rstuart114@gmail.com">Robin Stuart</a>
 */
public class Pharmacode2Track extends Symbol {

    @Override
    protected void encode() {
        int i, tester = 0;
        String inter, dest;

        if (this.content.length() > 8) {
            throw new OkapiException("Input too long");
        }

        if (!this.content.matches("[0-9]+")) {
            throw new OkapiException("Invalid characters in data");
        }

        for (i = 0; i < this.content.length(); i++) {
            tester *= 10;
            tester += Character.getNumericValue(this.content.charAt(i));
        }

        if (tester < 4 || tester > 64570080) {
            throw new OkapiException("Data out of range");
        }

        inter = "";
        do {
            switch (tester % 3) {
            case 0:
                inter += "F";
                tester = (tester - 3) / 3;
                break;
            case 1:
                inter += "D";
                tester = (tester - 1) / 3;
                break;
            case 2:
                inter += "A";
                tester = (tester - 2) / 3;
                break;
            }
        } while (tester != 0);

        dest = "";
        for (i = inter.length() - 1; i >= 0; i--) {
            dest += inter.charAt(i);
        }

        infoLine("Encoding: " + dest);

        this.readable = "";
        this.pattern = new String[1];
        this.pattern[0] = dest;
        this.row_count = 1;
        this.row_height = new int[1];
        this.row_height[0] = -1;
    }

    @Override
    protected void plotSymbol() {
        int xBlock;
        int x, y, w, h;

        this.rectangles.clear();
        x = 0;
        w = 1;
        y = 0;
        h = 0;
        for (xBlock = 0; xBlock < this.pattern[0].length(); xBlock++) {
            switch (this.pattern[0].charAt(xBlock)) {
            case 'A':
                y = 0;
                h = this.default_height / 2;
                break;
            case 'D':
                y = this.default_height / 2;
                h = this.default_height / 2;
                break;
            case 'F':
                y = 0;
                h = this.default_height;
                break;
            }

            final Rectangle2D.Double rect = new Rectangle2D.Double(x, y, w, h);
            this.rectangles.add(rect);

            x += 2;
        }
        this.symbol_width = this.pattern[0].length() * 2;
        this.symbol_height = this.default_height;
    }
}