Subversion Repositories HomeAutomation

Rev

Rev 983 | Blame | Last modification | View Log | SVN | RSS feed

  1. /***************************************************************************
  2.  *   Copyright (C) November 28, 2008 by Mattias Runge                             *
  3.  *   mattias@runge.se                                                      *
  4.  *   canmessage.h                                            *
  5.  *                                                                         *
  6.  *   This program is free software; you can redistribute it and/or modify  *
  7.  *   it under the terms of the GNU General Public License as published by  *
  8.  *   the Free Software Foundation; either version 2 of the License, or     *
  9.  *   (at your option) any later version.                                   *
  10.  *                                                                         *
  11.  *   This program is distributed in the hope that it will be useful,       *
  12.  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
  13.  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
  14.  *   GNU General Public License for more details.                          *
  15.  *                                                                         *
  16.  *   You should have received a copy of the GNU General Public License     *
  17.  *   along with this program; if not, write to the                         *
  18.  *   Free Software Foundation, Inc.,                                       *
  19.  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  20.  ***************************************************************************/
  21.  
  22. #ifndef _CANMESSAGE_H
  23. #define _CANMESSAGE_H
  24.  
  25. using namespace std;
  26.  
  27. #include <string>
  28. #include <map>
  29.  
  30. #include "canmessageexception.h"
  31. #include "canidtranslator.h"
  32. #include "canvariable.h"
  33. #include "../Tools/tools.h"
  34.  
  35. class CanMessage
  36. {
  37. public:
  38.     CanMessage() { myIsUnknown = false; myModuleId = 0; };
  39.     CanMessage(string raw) { setRaw(raw); };
  40.  
  41.     void setRaw(string rawHex);
  42.     string getRaw();
  43.  
  44.     bool isUnknown() { return myIsUnknown; };
  45.    
  46.     string getClassName() { return myClassName; };
  47.     void setClassName(string className) { myClassName = className; }; ///FIXME: Check if data is valid
  48.  
  49.     string getDirectionFlag() { return myDirectionFlag; };
  50.     void setDirectionFlag(string directionFlag) { myDirectionFlag = directionFlag; }; ///FIXME: Check if data is valid
  51.  
  52.     string getModuleName() { return myModuleName; };
  53.     void setModuleName(string moduleName) { myModuleName = moduleName; }; ///FIXME: Check if data is valid
  54.  
  55.     unsigned int getModuleId() { return myModuleId; };
  56.     void setModuleId(unsigned int moduleId) { myModuleId = moduleId; };
  57.  
  58.     string getCommandName() { return myCommandName; };
  59.     void setCommandName(string commandName) { myCommandName = commandName; }; ///FIXME: Check if data is valid
  60.  
  61.     map<string, CanVariable>& getData() { return myData; };
  62.     string getJSONData();
  63.     void setData(map<string, CanVariable> data) { myData = data; }; ///FIXME: Check if data is valid
  64.    
  65. private:
  66.     bool myIsUnknown;
  67.     string myClassName;
  68.     string myDirectionFlag;
  69.     string myModuleName;
  70.     unsigned int myModuleId;
  71.     string myCommandName;
  72.     map<string, CanVariable> myData;
  73. };
  74.  
  75. #endif  /* _CANMESSAGE_H */
  76.  
  77.