Remove USBDataSink

pull/1/head
michal.szwaj 2018-03-13 17:22:35 +01:00
parent b8bcf7cbef
commit 36833be832
2 changed files with 0 additions and 125 deletions

View File

@ -1,51 +0,0 @@
/*
* This file is part of aasdk library project.
* Copyright (C) 2018 f1x.studio (Michal Szwaj)
*
* aasdk is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
* aasdk is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include <limits>
#include <boost/circular_buffer.hpp>
#include <f1x/aasdk/Common/Data.hpp>
namespace f1x
{
namespace aasdk
{
namespace transport
{
class USBDataSink
{
public:
USBDataSink();
common::DataBuffer fill();
void commit(common::Data::size_type size);
common::Data::size_type getAvailableSize();
common::Data consume(common::Data::size_type size);
private:
boost::circular_buffer<common::Data::value_type> data_;
static constexpr common::Data::size_type cChunkSize = 16384;
};
}
}
}

View File

@ -1,74 +0,0 @@
/*
* This file is part of aasdk library project.
* Copyright (C) 2018 f1x.studio (Michal Szwaj)
*
* aasdk is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
* aasdk is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/
#include <cstring>
#include <f1x/aasdk/Transport/USBDataSink.hpp>
#include <f1x/aasdk/Error/Error.hpp>
namespace f1x
{
namespace aasdk
{
namespace transport
{
USBDataSink::USBDataSink()
: data_(common::cStaticDataSize)
{
}
common::DataBuffer USBDataSink::fill()
{
const auto offset = data_.size();
data_.resize(data_.size() + cChunkSize);
return common::DataBuffer(&data_[offset], cChunkSize);
}
void USBDataSink::commit(common::Data::size_type size)
{
if(size > cChunkSize)
{
throw error::Error(error::ErrorCode::USB_SINK_COMMIT_OVERFLOW);
}
data_.resize(data_.size() - (cChunkSize - size));
}
common::Data::size_type USBDataSink::getAvailableSize()
{
return data_.size();
}
common::Data USBDataSink::consume(common::Data::size_type size)
{
if(size > data_.size())
{
throw error::Error(error::ErrorCode::USB_SINK_CONSUME_UNDERFLOW);
}
common::Data data;
common::copy(data, common::DataConstBuffer(&data_[0], size));
data_.erase(data_.begin(), data_.begin() + size);
return data;
}
}
}
}