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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/* ****************************************************************************
* 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 "CardLayer.h"
#include "Cache.h"
namespace eIDMW
{
CCardLayer::CCardLayer(void)
{
m_ulReaderCount = 0;
for (unsigned long i = 0; i < MAX_READERS; i++)
m_tpReaders[i] = NULL;
}
CCardLayer::~CCardLayer(void)
{
for (unsigned long i = 0; i < MAX_READERS; i++)
{
if (m_tpReaders[i] != NULL) {
delete m_tpReaders[i];
m_tpReaders[i] = NULL;
}
}
}
void CCardLayer::ForceRelease(void)
{
m_oContext.m_oPCSC.ReleaseContext();
}
/**
* This is something you typically do just once, unless you
* want to check if new readers were inserted/removed.
* Note: PKCS#11 assumes that the number of readers never
* change, so you have to call this function only in
* C_GetSlotList().
*/
CReadersInfo CCardLayer::ListReaders()
{
CReadersInfo theReadersInfo;
CByteArray oReaders;
// Do an SCardEstablishContext() if not done yet
try
{
m_oContext.m_oPCSC.EstablishContext();
oReaders = m_oContext.m_oPCSC.ListReaders();
}
catch(CMWException &e)
{
unsigned long err = e.GetError();
if (err == EIDMW_ERR_NO_READER)
return theReadersInfo;
throw;
}
theReadersInfo = CReadersInfo(&m_oContext.m_oPCSC, oReaders);
if (oReaders.Size() != 0)
{
m_szDefaultReaderName = (char *) oReaders.GetBytes();
}
return theReadersInfo;
}
CReader & CCardLayer::getReader(const std::string &csReaderName)
{
// Do an SCardEstablishContext() if not done yet
m_oContext.m_oPCSC.EstablishContext();
CReader *pRet = NULL;
// If csReaderName == "", take the default (= first found) reader name
const std::string *pcsReaderName = (csReaderName.size() == 0) ?
GetDefaultReader() : &csReaderName;
if (pcsReaderName->size() == 0)
throw CMWEXCEPTION(EIDMW_ERR_NO_READER);
// First check if the reader doesn't exist already
for (unsigned long i = 0; i < MAX_READERS; i++)
{
if (m_tpReaders[i] != NULL) {
if (m_tpReaders[i]->GetReaderName() == *pcsReaderName)
{
pRet = m_tpReaders[i];
break;
}
}
}
// No CReader object for this readername -> make one
if (pRet == NULL)
{
for (unsigned long i = 0; i < MAX_READERS; i++)
{
if (m_tpReaders[i] == NULL) {
pRet = new CReader(*pcsReaderName, &m_oContext);
m_tpReaders[i] = pRet;
break;
}
}
}
// No room in m_tpReaders -> throw an exception
if (pRet == NULL)
throw CMWEXCEPTION(EIDMW_ERR_LIMIT);
return *pRet;
}
std::string * CCardLayer::GetDefaultReader()
{
std::string *pRet = &m_szDefaultReaderName;
if (m_szDefaultReaderName.size() == 0)
{
CByteArray csReaders = m_oContext.m_oPCSC.ListReaders();
if (csReaders.Size() != 0)
m_szDefaultReaderName = (char *) csReaders.GetBytes();
}
return pRet;
}
bool CCardLayer::DeleteFromCache(const std::string & csSerialNr)
{
return CCache::Delete(csSerialNr);
}
}
|