1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
/* ****************************************************************************
* eID Middleware Project.
* Copyright (C) 2008-2009 FedICT.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License version
* 3.0 as published by the Free Software Foundation.
*
* This software 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 software; if not, see
* http://www.gnu.org/licenses/.
**************************************************************************** */
#include "ReadersInfo.h"
namespace eIDMW
{
CReadersInfo::CReadersInfo()
{
bFirstTime = true;
m_ulReaderCount = 0;
}
unsigned long CReadersInfo::ReaderCount()
{
return m_ulReaderCount;
}
std::string CReadersInfo::ReaderName(unsigned long ulIndex)
{
if (ulIndex >= m_ulReaderCount)
throw CMWEXCEPTION(EIDMW_ERR_PARAM_RANGE);
return m_tInfos[ulIndex].csReader;
}
bool CReadersInfo::CheckReaderEvents(unsigned long ulTimeout,
unsigned long ulIndex)
{
bool bChanged = false;
if (bFirstTime)
{
m_poPCSC->GetStatusChange(0, m_tInfos, m_ulReaderCount);
bFirstTime = false;
}
wait_again:
if (ulIndex == ALL_READERS)
{
bChanged = m_poPCSC->GetStatusChange(ulTimeout, m_tInfos, m_ulReaderCount);
}
else
{
if (ulIndex >= m_ulReaderCount)
throw CMWEXCEPTION(EIDMW_ERR_PARAM_RANGE);
bChanged = m_poPCSC->GetStatusChange(ulTimeout, &m_tInfos[ulIndex], 1);
}
// Extra safety: if nothing changed and we should wait forever
// (for a change), the we go waiting again
if (!bChanged && (ulTimeout == TIMEOUT_INFINITE))
goto wait_again;
return bChanged;
}
bool CReadersInfo::ReaderStateChanged(unsigned long ulIndex)
{
if (ulIndex >= m_ulReaderCount)
throw CMWEXCEPTION(EIDMW_ERR_PARAM_RANGE);
return 0 != (m_tInfos[ulIndex].ulEventState & EIDMW_STATE_CHANGED);
}
bool CReadersInfo::CardPresent(unsigned long ulIndex)
{
if (bFirstTime)
{
m_poPCSC->GetStatusChange(0, m_tInfos, m_ulReaderCount);
bFirstTime = false;
}
if (ulIndex >= m_ulReaderCount)
throw CMWEXCEPTION(EIDMW_ERR_PARAM_RANGE);
return 0 != (m_tInfos[ulIndex].ulEventState & EIDMW_STATE_PRESENT);
}
/** Constructor */
CReadersInfo::CReadersInfo(CPCSC *poPCSC, const CByteArray & oReaders)
{
m_poPCSC = poPCSC;
bFirstTime = true;
m_ulReaderCount = 0;
//Parse the string reader-list into the array "m_tcsReaders"
const char *csReaders = (const char *) oReaders.GetBytes();
for (size_t i = 0;
csReaders != NULL && csReaders[0] != '\0' && i < MAX_READERS;
i++, m_ulReaderCount++)
{
m_tInfos[m_ulReaderCount].csReader = csReaders;
m_tInfos[m_ulReaderCount].ulCurrentState = 0;
m_tInfos[m_ulReaderCount].ulEventState = 0;
csReaders += m_tInfos[m_ulReaderCount].csReader.length() + 1;
}
}
}
|