/* Copyright (C) 1996-1998 by Patrick Reynolds Email: This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library 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 Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "PPort.h" #include "port.h" #include #include #include using namespace std; #define TEST_VALIDITY {if (this==NULL) return false;} PPort::PPort() { reset(); } PPort::PPort(int ioPort) { reset(); setPort(ioPort); } PPort::~PPort() { delete currentPort; } void PPort::reset() { bitArray=0; for (int i=0;i<8;++i) { assignedBit[i]=NULL; } currentPort=NULL; } bool PPort::setPort(int ioPort) { TEST_VALIDITY; if (geteuid() != 0) { cerr << "must be setuid root control parallel port"<write_data(bitArray); return true; } else { return false; } } bool PPort::setBit(const void * ID,int bit,bool stat) { TEST_VALIDITY; if (ID != assignedBit[bit]) { return false; } if (stat) { bitArray |= (1<