Browse Source

pointer

cleanAndupdate1
nasiCurious 2 years ago
parent
commit
80ec20d68a
  1. 2
      CommandDetector.pro.user
  2. 27
      logic/include/CommandDecoder.h.autosave
  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-19T13:55:01. -->
<qtcreator> <qtcreator>
<data> <data>
<variable>EnvironmentId</variable> <variable>EnvironmentId</variable>

27
logic/include/CommandDecoder.h.autosave

@ -0,0 +1,27 @@
#ifndef COMMANDDECODER_H
#define COMMANDDECODER_H
#include <QList>
#include "CommandsType.h"
class CommandDecoder
{
private:
QList<CommandsType> _decodedList;
bool _isNextItemValue = true;
int j = 0;
int _argc;
bool isCommand(char* argv);
void checkIfEnoughArgsAreProvided(int argc);
QList<CommandsType> CommandValueDecoder(char* argv[]);
void initCommandStrcut(char* argv, CommandsType& sample);
void checkIfNextItemShallBeValue(char* argv);
public:
CommandDecoder();
QList<CommandsType> decoderString(int argc, char* argv[]);
};
#endif //COMMANDDECODER_H

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