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 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
|
/* ****************************************************************************
* 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/.
**************************************************************************** */
#ifdef WIN32
#include <windows.h>
#elif __APPLE__
#include "Mac/mac_helper.h"
#endif
#include "diaglib.h"
#include "middleware.h"
#include "error.h"
#include "log.h"
#include "util.h"
#include "progress.h"
#include "beidlib.h"
////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////// PRIVATE FUNCTIONS DECLARATION ////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////
int mwFillList(MW_LIST *middlewareList);
////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////// PUBLIC FUNCTIONS /////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////
int mwGetList(MW_LIST *middlewareList)
{
return mwFillList(middlewareList);
}
////////////////////////////////////////////////////////////////////////////////////////////////
int mwIsBeidlibAvailable(bool *available)
{
int iReturnCode = DIAGLIB_OK;
if(available == NULL)
{
return RETURN_LOG_BAD_FUNCTION_CALL;
}
*available = false;
const BeidlibWrapper *beidlib = NULL;
if(NULL == (beidlib = loadBeidLibWrapper()))
{
LOG_ERROR(L"loadBeidLibWrapper failed");
return DIAGLIB_ERR_LIBRARY_NOT_FOUND;
}
return beidlib->beidlibIsAvailable(available);
}
////////////////////////////////////////////////////////////////////////////////////////////////
int mwGetReaderList(Reader_LIST *readerList)
{
int iReturnCode = DIAGLIB_OK;
if(readerList == NULL)
{
return RETURN_LOG_BAD_FUNCTION_CALL;
}
readerList->clear();
const BeidlibWrapper *beidlib = NULL;
if(NULL == (beidlib = loadBeidLibWrapper()))
{
LOG_ERROR(L"loadBeidLibWrapper failed");
return DIAGLIB_ERR_LIBRARY_NOT_FOUND;
}
return beidlib->beidlibGetReaderList(readerList);
}
////////////////////////////////////////////////////////////////////////////////////////////////
int mwGetCardList(Card_LIST *cardList)
{
int iReturnCode = DIAGLIB_OK;
if(cardList == NULL)
{
return RETURN_LOG_BAD_FUNCTION_CALL;
}
cardList->clear();
const BeidlibWrapper *beidlib = NULL;
if(NULL == (beidlib = loadBeidLibWrapper()))
{
LOG_ERROR(L"loadBeidLibWrapper failed");
return DIAGLIB_ERR_LIBRARY_NOT_FOUND;
}
return beidlib->beidlibGetCardList(cardList);
}
////////////////////////////////////////////////////////////////////////////////////////////////
int mwGetCardInfo (Card_ID id, Card_INFO *info)
{
int iReturnCode = DIAGLIB_OK;
if(info == NULL)
{
return RETURN_LOG_BAD_FUNCTION_CALL;
}
const BeidlibWrapper *beidlib = NULL;
if(NULL == (beidlib = loadBeidLibWrapper()))
{
LOG_ERROR(L"loadBeidLibWrapper failed");
return DIAGLIB_ERR_LIBRARY_NOT_FOUND;
}
return beidlib->beidlibGetCardInfo(id, info);
}
////////////////////////////////////////////////////////////////////////////////////////////////
int mwReportInfo(Report_TYPE type, const MW_INFO &info)
{
int iReturnCode = DIAGLIB_OK;
reportPrint(type,L" id = %ls (%ls)\n",info.id.Guid.c_str(),info.id.Type==PER_USER_SOFT_TYPE?L"Per-User":L"Per-Machine");
reportPrint(type,L" Version = %ls\n", info.LabelVersion.c_str());
reportPrint(type,L" DisplayName = %ls\n", info.DisplayName.c_str());
reportPrintSeparator(type, REPORT_MW_SEPARATOR);
return iReturnCode;
}
////////////////////////////////////////////////////////////////////////////////////////////////
int mwReportList(Report_TYPE type, const MW_LIST &middlewareList, const wchar_t *TitleIn)
{
int iReturnCode = DIAGLIB_OK;
std::wstring Title;
if(TitleIn!=NULL)
Title=TitleIn;
else
Title=L"Middleware list";
Title.append(L" (#");
wchar_t buf[10];
if(-1==swprintf_s(buf,10,L"%ld",middlewareList.size()))
{
Title.append(L"???");
LOG_ERROR(L"swprintf_s failed");
}
else
{
Title.append(buf);
}
Title.append(L")");
reportPrintHeader2(type, Title.c_str(), REPORT_MW_SEPARATOR);
MW_INFO info;
progressInit((int)middlewareList.size());
MW_LIST::const_iterator itr;
for(itr=middlewareList.begin();itr!=middlewareList.end();itr++)
{
if(DIAGLIB_OK == mwGetInfo(*itr,&info))
{
mwReportInfo(type,info);
}
progressIncrement();
}
progressRelease();
return iReturnCode;
}
////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////// PRIVATE FUNCTIONS ////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////
|