// Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #pragma once #include #include #include "flatbuffers/flatbuffers.h" #include "lite/model_parser/base/vector_view.h" namespace paddle { namespace lite { namespace vector_view { template struct ElementTraits::value>::type> { typedef flatbuffers::Offset element_type; }; template <> struct ElementTraits { typedef flatbuffers::Offset element_type; }; template struct VectorTraits { typedef flatbuffers::Vector::element_type> vector_type; typedef typename vector_type::const_iterator const_iterator; typedef typename const_iterator::value_type value_type; typedef const typename const_iterator::reference const_reference; typedef value_type subscript_return_type; }; struct FBSStrIterator { typedef flatbuffers::VectorIterator< flatbuffers::Offset, typename flatbuffers::IndirectHelper< flatbuffers::Offset>::return_type> VI; explicit FBSStrIterator(const VI& iter) { iter_ = iter; } const VI& raw_iter() const { return iter_; } bool operator==(const FBSStrIterator& other) const { return iter_ == other.raw_iter(); } bool operator<(const FBSStrIterator& other) const { return iter_ < other.raw_iter(); } bool operator!=(const FBSStrIterator& other) const { return iter_ != other.raw_iter(); } ptrdiff_t operator-(const FBSStrIterator& other) const { return iter_ - other.raw_iter(); } std::string operator*() const { return iter_.operator*()->str(); } std::string operator->() const { return iter_.operator->()->str(); } FBSStrIterator& operator++() { iter_++; return *this; } FBSStrIterator& operator--() { iter_--; return *this; } FBSStrIterator operator+(const size_t& offset) { return FBSStrIterator(iter_ + offset); } FBSStrIterator operator-(const size_t& offset) { return FBSStrIterator(iter_ - offset); } private: VI iter_; }; } // namespace vector_view template <> class VectorView { public: typedef vector_view::VectorTraits Traits; explicit VectorView(typename Traits::vector_type const* cvec) { cvec_ = cvec; } std::string operator[](size_t i) const { return cvec_->operator[](i)->str(); } vector_view::FBSStrIterator begin() const { return vector_view::FBSStrIterator(cvec_->begin()); } vector_view::FBSStrIterator end() const { return vector_view::FBSStrIterator(cvec_->end()); } size_t size() const { return cvec_->size(); } operator std::vector() { VLOG(5) << "Copying elements out of VectorView will damage performance."; std::vector tmp; tmp.reserve(cvec_->size()); for (auto val : *cvec_) { tmp.push_back(val->str()); } return tmp; } ~VectorView() = default; private: typename Traits::vector_type const* cvec_; }; } // namespace lite } // namespace paddle