/*-*-c++-*- * $Id$ * * This file is part of plptools. * * Copyright (C) 1999-2001 Fritz Elfert * * This program 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 2 of the License, or * (at your option) any later version. * * This program 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 this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "wprt.h" #include "bufferstore.h" #include "ppsocket.h" #include "bufferarray.h" #include "Enum.h" #include #include #include using namespace std; wprt::wprt(ppsocket * _skt) { skt = _skt; reset(); } wprt::~wprt() { skt->closeSocket(); } // // public common API // void wprt:: reconnect(void) { //skt->closeSocket(); skt->reconnect(); reset(); } void wprt:: reset(void) { bufferStore a; status = rfsv::E_PSI_FILE_DISC; a.addStringT(getConnectName()); if (skt->sendBufferStore(a)) { if (skt->getBufferStore(a) == 1) { if (!strcmp(a.getString(0), "Ok")) status = rfsv::E_PSI_GEN_NONE; } } } Enum wprt:: getStatus(void) { return status; } const char *wprt:: getConnectName(void) { return "SYS$WPRT"; } // // protected internals // bool wprt:: sendCommand(enum commands cc, bufferStore & data) { if (status == rfsv::E_PSI_FILE_DISC) { reconnect(); if (status == rfsv::E_PSI_FILE_DISC) return false; } bool result; bufferStore a; a.addByte(cc); a.addBuff(data); result = skt->sendBufferStore(a); if (!result) { reconnect(); result = skt->sendBufferStore(a); if (!result) status = rfsv::E_PSI_FILE_DISC; } return result; } Enum wprt:: initPrinter() { Enum ret; bufferStore a; a.addByte(2); // Major printer version a.addByte(0); // Minor printer version sendCommand(WPRT_INIT, a); if ((ret = getResponse(a)) != rfsv::E_PSI_GEN_NONE) cerr << "WPRT ERR:" << a << endl; else { if (a.getLen() != 3) ret = rfsv::E_PSI_GEN_FAIL; if ((a.getByte(0) != 0) || (a.getWord(1) != 2)) ret = rfsv::E_PSI_GEN_FAIL; } return ret; } Enum wprt:: getData(bufferStore &buf) { Enum ret; sendCommand(WPRT_GET, buf); if ((ret = getResponse(buf)) != rfsv::E_PSI_GEN_NONE) cerr << "WPRT ERR:" << buf << endl; return ret; } Enum wprt:: cancelJob() { Enum ret; bufferStore a; sendCommand(WPRT_CANCEL, a); if ((ret = getResponse(a)) != rfsv::E_PSI_GEN_NONE) cerr << "WPRT ERR:" << a << endl; return ret; } bool wprt:: stop() { bufferStore a; return sendCommand(WPRT_STOP, a); } Enum wprt:: getResponse(bufferStore & data) { Enum ret = rfsv::E_PSI_GEN_NONE; if (skt->getBufferStore(data) == 1) return ret; else status = rfsv::E_PSI_FILE_DISC; return status; } /* * Local variables: * c-basic-offset: 4 * End: */