From d77b3e38834eba44a4627de2b63e94ca96b93692 Mon Sep 17 00:00:00 2001 From: Fritz Elfert Date: Mon, 21 May 2001 21:56:23 +0000 Subject: Started print and clip support (no functionality yet). - Moved include/intl.h to lib/plpintl.h --- lib/wprt.cc | 157 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 157 insertions(+) create mode 100644 lib/wprt.cc (limited to 'lib/wprt.cc') diff --git a/lib/wprt.cc b/lib/wprt.cc new file mode 100644 index 0000000..89d037f --- /dev/null +++ b/lib/wprt.cc @@ -0,0 +1,157 @@ +/*-*-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 +#include +#include +#include +#include +#include + +#include "wprt.h" +#include "bufferstore.h" +#include "ppsocket.h" +#include "bufferarray.h" +#include "Enum.h" + +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.addWord(0); + 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; + bufferStore a; + + sendCommand(WPRT_GET, buf); + if ((ret = getResponse(buf)) != rfsv::E_PSI_GEN_NONE) + cerr << "WPRT ERR:" << a << endl; + return ret; +} + +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: + */ -- cgit v1.2.3