/** * Copyright (C) 2011 ArtiVisi Intermedia <info@artivisi.com> * * 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 com.artivisi.biller.simulator.gateway.pln.jpos; import java.io.IOException; import java.net.ServerSocket; import java.net.SocketTimeoutException; import org.jpos.iso.BaseChannel; import org.jpos.iso.ISOException; import org.jpos.iso.ISOMsg; import org.jpos.iso.ISOPackager; public class PlnChannel extends BaseChannel { private static final int MAX_MSG_LENGTH = 4096; private static final int MSG_TRAILER = 255; @Override protected void sendMessageTrailler(ISOMsg m, int len) throws IOException { serverOut.write(MSG_TRAILER); } @Override protected byte[] streamReceive() throws IOException { byte[] buf = new byte[MAX_MSG_LENGTH]; int len = 0; for (len = 0; len < MAX_MSG_LENGTH; len++) { int data = serverIn.read(); if (data == MSG_TRAILER) { break; } buf[len] = (byte) data; } if (len == MAX_MSG_LENGTH) { throw new IOException("packet too long"); } byte[] d = new byte[len]; System.arraycopy(buf, 0, d, 0, len); return d; } @Override public ISOMsg receive() throws IOException, ISOException { try { return super.receive(); } catch (SocketTimeoutException err) { // tidak dapat response sampai timeout, gpp return null saja return null; } } // constructor default override public PlnChannel(ISOPackager p, ServerSocket serverSocket) throws IOException { super(p, serverSocket); } public PlnChannel(ISOPackager p) throws IOException { super(p); } public PlnChannel(String host, int port, ISOPackager p) { super(host, port, p); } public PlnChannel() { } }