2023-08-16 20:40:36 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
#include <oi/IntrospectionResult.h>
|
|
|
|
#include <oi/exporters/ParsedData.h>
|
|
|
|
#include <oi/types/dy.h>
|
|
|
|
|
|
|
|
#include <cassert>
|
|
|
|
#include <iterator>
|
2023-10-09 21:39:33 +01:00
|
|
|
#include <sstream>
|
2023-08-16 20:40:36 +01:00
|
|
|
#include <stdexcept>
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
inline constexpr bool always_false_v = false;
|
|
|
|
|
|
|
|
namespace oi {
|
|
|
|
|
|
|
|
IntrospectionResult::const_iterator&
|
|
|
|
IntrospectionResult::const_iterator::operator++() {
|
|
|
|
if (stack_.empty()) {
|
|
|
|
next_ = std::nullopt;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto el = stack_.top();
|
|
|
|
stack_.pop();
|
|
|
|
|
|
|
|
return std::visit(
|
|
|
|
[this](auto&& r) -> IntrospectionResult::const_iterator& {
|
|
|
|
using U = std::decay_t<decltype(r)>;
|
|
|
|
if constexpr (std::is_same_v<U, exporters::inst::PopTypePath>) {
|
|
|
|
type_path_.pop_back();
|
2023-10-09 21:39:33 +01:00
|
|
|
dynamic_type_path_.pop_back();
|
2023-08-16 20:40:36 +01:00
|
|
|
return operator++();
|
|
|
|
} else {
|
|
|
|
// reference wrapper
|
|
|
|
auto ty = r.get();
|
|
|
|
using T = std::decay_t<decltype(ty)>;
|
|
|
|
|
|
|
|
if constexpr (std::is_same_v<T, exporters::inst::Field>) {
|
|
|
|
type_path_.emplace_back(ty.name);
|
|
|
|
stack_.emplace(exporters::inst::PopTypePath{});
|
|
|
|
next_ = result::Element{
|
|
|
|
.name = ty.name,
|
|
|
|
.type_path = type_path_,
|
|
|
|
.type_names = ty.type_names,
|
|
|
|
.static_size = ty.static_size,
|
|
|
|
.exclusive_size = ty.exclusive_size,
|
|
|
|
.container_stats = std::nullopt,
|
|
|
|
.is_set_stats = std::nullopt,
|
|
|
|
};
|
|
|
|
|
|
|
|
for (const auto& [dy, handler] : ty.processors) {
|
|
|
|
auto parsed = exporters::ParsedData::parse(data_, dy);
|
2023-09-14 16:09:23 +01:00
|
|
|
handler(
|
|
|
|
*next_, [this](auto i) { stack_.emplace(i); }, parsed);
|
2023-08-16 20:40:36 +01:00
|
|
|
}
|
2023-10-09 21:39:33 +01:00
|
|
|
|
|
|
|
std::string& new_name = dynamic_type_path_.emplace_back(std::visit(
|
|
|
|
[](const auto& d) -> std::string {
|
|
|
|
using V = std::decay_t<decltype(d)>;
|
|
|
|
if constexpr (std::is_same_v<std::string, V>) {
|
|
|
|
std::string out = "[";
|
|
|
|
out.reserve(d.size() + 2);
|
|
|
|
out += d;
|
|
|
|
out += "]";
|
|
|
|
return out;
|
|
|
|
} else if constexpr (std::is_same_v<result::Element::Pointer,
|
|
|
|
V>) {
|
|
|
|
std::stringstream out;
|
|
|
|
out << '[' << reinterpret_cast<void*>(d.p) << ']';
|
|
|
|
return out.str();
|
|
|
|
} else if constexpr (std::is_same_v<result::Element::Scalar,
|
|
|
|
V>) {
|
|
|
|
std::string out = "[";
|
|
|
|
out += std::to_string(d.n);
|
|
|
|
out += ']';
|
|
|
|
return out;
|
|
|
|
} else if constexpr (std::is_same_v<std::nullopt_t, V>) {
|
|
|
|
return "";
|
|
|
|
} else {
|
|
|
|
static_assert(always_false_v<V>, "missing variant");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
next_->data));
|
|
|
|
if (!new_name.empty()) {
|
|
|
|
type_path_.back() = new_name;
|
|
|
|
next_->type_path.back() = new_name;
|
|
|
|
next_->name = new_name;
|
|
|
|
}
|
|
|
|
|
2023-08-16 20:40:36 +01:00
|
|
|
for (auto it = ty.fields.rbegin(); it != ty.fields.rend(); ++it) {
|
|
|
|
stack_.emplace(*it);
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
} else {
|
|
|
|
static_assert(always_false_v<T>, "non-exhaustive visitor!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
el);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace oi
|