// Openbravo POS is a point of sales application designed for touch screens. // Copyright (C) 2007-2009 Openbravo, S.L. // http://www.openbravo.com/product/pos // // This file is part of Openbravo POS. // // Openbravo POS is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Openbravo POS 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 General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Openbravo POS. If not, see <http://www.gnu.org/licenses/>. package com.openbravo.pos.printer.escpos; // import javax.comm.*; // Java comm library import gnu.io.*; // RXTX comm library import java.io.*; import com.openbravo.pos.printer.*; public class PrinterWritterRXTX extends PrinterWritter /* implements SerialPortEventListener */ { private CommPortIdentifier m_PortIdPrinter; private CommPort m_CommPortPrinter; private String m_sPortPrinter; private OutputStream m_out; /** Creates a new instance of PrinterWritterComm */ public PrinterWritterRXTX(String sPortPrinter) throws TicketPrinterException { m_sPortPrinter = sPortPrinter; m_out = null; } protected void internalWrite(byte[] data) { try { if (m_out == null) { m_PortIdPrinter = CommPortIdentifier.getPortIdentifier(m_sPortPrinter); // Tomamos el puerto m_CommPortPrinter = m_PortIdPrinter.open("PORTID", 2000); // Abrimos el puerto m_out = m_CommPortPrinter.getOutputStream(); // Tomamos el chorro de escritura if (m_PortIdPrinter.getPortType() == CommPortIdentifier.PORT_SERIAL) { ((SerialPort)m_CommPortPrinter).setSerialPortParams(9600, SerialPort.DATABITS_8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE); // Configuramos el puerto ((SerialPort)m_CommPortPrinter).setFlowControlMode(SerialPort.FLOWCONTROL_RTSCTS_IN); // this line prevents the printer tmu220 to stop printing after +-18 lines printed // Not needed to set parallel properties // } else if (m_PortIdPrinter.getPortType() == CommPortIdentifier.PORT_PARALLEL) { // ((ParallelPort)m_CommPortPrinter).setMode(1); } } m_out.write(data); } catch (NoSuchPortException e) { System.err.println(e); } catch (PortInUseException e) { System.err.println(e); } catch (UnsupportedCommOperationException e) { System.err.println(e); } catch (IOException e) { System.err.println(e); } } protected void internalFlush() { try { if (m_out != null) { m_out.flush(); } } catch (IOException e) { System.err.println(e); } } protected void internalClose() { try { if (m_out != null) { m_out.flush(); m_out.close(); m_out = null; m_CommPortPrinter = null; m_PortIdPrinter = null; } } catch (IOException e) { System.err.println(e); } } }