代码拉取完成,页面将自动刷新
#include <QString>
#include <json\json.h>
#include "Card_CVR100UDDLL.h"
#include <QTextCodec>
#include <QApplication>
char buffer[4096];
int console_main(int argc, char *argv[])
{
QApplication app(argc, argv);
QTextCodec::setCodecForTr(QTextCodec::codecForLocale());
QTextCodec::setCodecForCStrings(QTextCodec::codecForLocale());
AbstractLock *lock = NULL;
Json::Value json_param;
json_param["cardType"] = 1;
Card_CVR100UDDLL *dll = new Card_CVR100UDDLL();
dll->DealCommand("ReadIDCard",json_param);
return 0;
bool m_run = true;
while(m_run)
{
fgets(buffer,4096,stdin);
Json::FastWriter w;
Json::Reader r;
Json::Value json_cmd;
Json::Value json_ret;
QByteArray recv = buffer;
recv = QByteArray::fromBase64(recv);
if(r.parse(recv.data(),json_cmd))
{
QString cmd = json_cmd["InternalCommand"].asCString();
if(cmd == "init")
{
QString dll = json_cmd["dll"].asCString();
if(dll == "CVR100UDDLL")
{
Card_CVR100UDDLL *dll = new Card_CVR100UDDLL();
if(dll->isVaild())
lock = dll;
else
delete dll;
}
if(lock)
{
json_ret.clear();
json_ret["code"] = 0;
}
else
{
json_ret.clear();
json_ret["code"] = -1;
json_ret["message"] = "Dll init failed";
m_run = false;
}
}
else if(cmd == "exit")
{
json_ret["code"] = 0;
m_run = false;
}
else
{
json_ret = lock->DealCommand(cmd,json_cmd);
}
}
else
{
json_ret.clear();
json_ret["code"] = -1;
json_ret["message"] = "Dll input invalid";
}
//send
string str_ret = w.write(json_ret);
QByteArray data(str_ret.data(),str_ret.size());
data = data.toBase64();
printf("%s\n",data.data());
}
if(lock)
delete lock;
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。