2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 * Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
23 #include "stg/optional.h"
33 enum TraffDirection {TRAFF_UPLOAD, TRAFF_DOWNLOAD};
37 friend std::ostream& operator<< (std::ostream& stream, const DirTraff& traff);
40 using ContainerType = std::vector<uint64_t>;
41 using IndexType = ContainerType::size_type;
43 DirTraff() noexcept : traff(DIR_NUM) {}
44 const uint64_t & operator[](IndexType idx) const noexcept { return traff[idx]; }
45 uint64_t & operator[](IndexType idx) noexcept { return traff[idx]; }
46 IndexType size() const noexcept { return traff.size(); }
50 for (IndexType i = 0; i < traff.size(); ++i)
58 //-----------------------------------------------------------------------------
60 std::ostream& operator<<(std::ostream& stream, const DirTraff& traff)
63 for (DirTraff::IndexType i = 0; i < traff.size(); ++i)
77 using ValueType = Optional<uint64_t>;
78 using ContainerType = std::vector<ValueType>;
79 using IndexType = ContainerType::size_type;
81 DirTraffOpt() noexcept: traff(DIR_NUM) {}
82 explicit DirTraffOpt(const DirTraff & ts) noexcept
85 for (IndexType i = 0; i < ts.size(); ++i)
88 DirTraffOpt& operator=(const DirTraff& ts) noexcept
90 for (IndexType i = 0; i < ts.size(); ++i)
94 const ValueType & operator[](IndexType idx) const noexcept { return traff[idx]; }
95 ValueType & operator[](IndexType idx) noexcept { return traff[idx]; }
96 IndexType size() const noexcept { return traff.size(); }