Subversion Repositories HomeAutomation

Rev

Rev 1598 | Rev 1642 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1. /*
  2.  *
  3.  *  Copyright (C) 2010  Mattias Runge
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2 of the License, or
  8.  *  (at your option) any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License along
  16.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  17.  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  18.  *
  19.  */
  20.  
  21. #include "Byteset.h"
  22.  
  23. #include "string.h"
  24.  
  25. #include <boost/lexical_cast.hpp>
  26.  
  27. namespace atom {
  28. namespace type {
  29.  
  30. Byteset::Byteset(unsigned int max_size)
  31. {
  32.     this->max_size_ = max_size;
  33.     this->bytes_ = new unsigned char[this->max_size_];
  34.    
  35.     this->Clear();
  36. }
  37.  
  38. Byteset::Byteset(const Byteset& set)
  39. {
  40.     this->max_size_ = set.size_;
  41.     this->size_ = this->max_size_;
  42.     this->bytes_ = new unsigned char[this->max_size_];
  43.  
  44.     memcpy(this->bytes_, set.bytes_, this->max_size_);
  45. }
  46.  
  47. Byteset::Byteset(std::string str)
  48. {
  49.     this->max_size_ = str.size() + 1;
  50.     this->size_ = this->max_size_;
  51.     this->bytes_ = new unsigned char[this->max_size_];
  52.    
  53.     memcpy(this->bytes_, str.data(), this->max_size_);
  54. }
  55.  
  56. Byteset::~Byteset()
  57. {
  58.     delete [] this->bytes_;
  59. }
  60.  
  61. unsigned char* Byteset::Get() const
  62. {
  63.     return this->bytes_;
  64. }
  65.  
  66. std::string Byteset::ToCharString()
  67. {
  68.     return std::string((char*)this->bytes_, this->size_ - 1);
  69. }
  70.  
  71. std::string Byteset::ToDebugString()
  72. {
  73.     std::string debug_string;
  74.    
  75.     for (unsigned int n = 0; n < this->size_; n++)
  76.     {
  77.         debug_string += boost::lexical_cast<std::string>((unsigned int)this->bytes_[n]) + ",";
  78.     }
  79.    
  80.     return debug_string;
  81. }
  82.  
  83. unsigned char& Byteset::operator[](unsigned int index)
  84. {
  85.     return this->bytes_[index];
  86. }
  87.  
  88. unsigned int Byteset::GetMaxSize() const
  89. {
  90.     return this->max_size_;
  91. }
  92.  
  93. unsigned int Byteset::GetSize() const
  94. {
  95.     return this->size_;
  96. }
  97.  
  98. void Byteset::SetSize(unsigned int size)
  99. {
  100.     this->size_ = size;
  101. }
  102.  
  103. void Byteset::Append(unsigned char byte)
  104. {
  105.     this->bytes_[this->size_] = byte;
  106.     this->size_++;
  107. }
  108.  
  109. void Byteset::Clear()
  110. {
  111.     memset(this->bytes_, 0, this->max_size_);
  112.     this->size_ = 0;
  113. }
  114.    
  115. }; // namespace type
  116. }; // namespace atom
  117.