Compare commits

...

2 Commits

Author SHA1 Message Date
nasiCurious 7225534a28 pointer 2 years ago
nasiCurious 80ec20d68a pointer 2 years ago
  1. 2
      CommandDetector.pro.user
  2. 5
      logic/include/CommandDecoder.h
  3. 15
      logic/src/CommandDecoder.cpp

2
CommandDetector.pro.user

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE QtCreatorProject> <!DOCTYPE QtCreatorProject>
<!-- Written by QtCreator 4.10.0, 2022-10-29T16:44:05. --> <!-- Written by QtCreator 4.10.0, 2022-11-19T14:21:34. -->
<qtcreator> <qtcreator>
<data> <data>
<variable>EnvironmentId</variable> <variable>EnvironmentId</variable>

5
logic/include/CommandDecoder.h

@ -7,9 +7,8 @@
class CommandDecoder class CommandDecoder
{ {
private: private:
QList<CommandsType> decodedList; QList<CommandsType> _decodedList;
bool isNextItemValue = true; bool _isNextItemValue = true;
int j = 0;
int _argc; int _argc;
bool isCommand(char* argv); bool isCommand(char* argv);

15
logic/src/CommandDecoder.cpp

@ -19,13 +19,14 @@ void CommandDecoder::checkIfEnoughArgsAreProvided(int argc)
{ {
if(argc < 2) if(argc < 2)
{ {
throw"the usage should lookLike this Sin <parameter>"; throw"the usage should lookLike this Cin <parameter>";
} }
} }
//**************************************************************** //****************************************************************
QList<CommandsType> CommandDecoder::CommandValueDecoder(char* argv[]) QList<CommandsType> CommandDecoder::CommandValueDecoder(char* argv[])
{ {
int j = 0;
while(j < _argc) while(j < _argc)
{ {
CommandsType sample; CommandsType sample;
@ -41,18 +42,18 @@ QList<CommandsType> CommandDecoder::CommandValueDecoder(char* argv[])
j++; j++;
} }
return decodedList; return _decodedList;
} }
//**************************************************************** //****************************************************************
void CommandDecoder::checkIfNextItemShallBeValue(char* argv) void CommandDecoder::checkIfNextItemShallBeValue(char* argv)
{ {
if(!isNextItemValue) if(!_isNextItemValue)
{ {
throw"duplicated Value and its wrong"; throw"duplicated Value and its wrong";
} }
decodedList.last().value = argv; _decodedList.last().value = argv;
isNextItemValue = false; _isNextItemValue = false;
} }
//**************************************************************** //****************************************************************
@ -60,8 +61,8 @@ void CommandDecoder::initCommandStrcut(char* argv, CommandsType& sample)
{ {
sample.command = argv; sample.command = argv;
sample.value = Q_NULLPTR; sample.value = Q_NULLPTR;
isNextItemValue = true; _isNextItemValue = true;
decodedList.append(sample); _decodedList.append(sample);
} }
//**************************************************************** //****************************************************************

Loading…
Cancel
Save