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
|
#include "api.h"
#include <qregexp.h>
API::API()
{
initCommand();
}
void API::initCommand()
{
com="";
paramList.clear();
errorString="";
noErr=true;
}
void API::parseCommand (const QString &s)
{
initCommand();
QRegExp re;
int pos;
// Get command
re.setPattern ("(.*)\\s");
re.setMinimal (true);
pos=re.search (s);
if (pos>=0)
com=re.cap(1);
// Get parameters
paramList.clear();
re.setPattern ("\\((.*)\\)");
pos=re.search (s);
if (pos>=0)
{
QString s=re.cap(1);
QString a;
bool inquote=false;
pos=0;
if (!s.isEmpty())
{
while (pos<s.length())
{
if (s.at(pos)=='\"')
{
if (inquote)
inquote=false;
else
inquote=true;
}
if (s.at(pos)==',' && !inquote)
{
a=s.left(pos);
paramList.append(a);
s=s.right(s.length()-pos-1);
pos=0;
} else
pos++;
}
paramList.append (s);
}
}
}
QString API::command()
{
return com;
}
QStringList API::parameters()
{
return paramList;
}
QString API::errorDesc()
{
return errorString;
}
bool API::error()
{
// invert noErr
return (noErr) ?false:true;
}
void API::setError(const QString &e)
{
noErr=false;
errorString=e;
}
bool API::checkParamCount (const uint &expected)
{
if (paramList.count()!=expected)
{
errorString=QString("expected %1 parameters, but got %2").arg(expected).arg(paramList.count());
noErr=false;
} else
noErr=true;
return noErr;
}
bool API::checkParamIsInt(const uint &index)
{
bool ok;
if (index > paramList.count())
{
errorString =QString("Parameter index %1 is outside of parameter list").arg(index);
noErr=false;
} else
{
paramList[index].toInt (&ok, 10);
if (!ok)
{
errorString=QString("Parameter %1 is not an integer").arg(index);
noErr=false;
} else
noErr=true;
}
return noErr;
}
int API::parInt (bool &ok,const uint &index)
{
if (checkParamIsInt (index))
{
return paramList[index].toInt (&ok, 10);
}
ok=false;
return 0;
}
QString API::parString (bool &ok,const uint &index)
{
// return the string at index, this could be also stored in
// a variable later
QString r;
QRegExp re("\"(.*)\"");
int pos=re.search (paramList[index]);
if (pos>=0)
r=re.cap (1);
else
r="";
ok=true;
return r;
}
|