// Copyright (c) 2024 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 "paddle/ap/include/adt/adt.h" #include "paddle/ap/include/axpr/method_class.h" namespace ap::axpr { template class InterpreterBase; template adt::Result ToString(InterpreterBase* interpreter, const ValueT& val) { const auto& func = MethodClass::ToString(val); using RetT = adt::Result; return func.Match( [&](const adt::Nothing&) -> RetT { return adt::errors::TypeError{GetTypeName(val) + " class has no __str__ function"}; }, [&](adt::Result (*unary_func)(const ValueT&)) -> RetT { ADT_LET_CONST_REF(str_val, unary_func(val)); ADT_LET_CONST_REF(str, str_val.template TryGet()); return str; }, [&](adt::Result (*unary_func)(InterpreterBase*, const ValueT&)) -> RetT { ADT_LET_CONST_REF(str_val, unary_func(interpreter, val)); ADT_LET_CONST_REF(str, str_val.template TryGet()); return str; }); } template std::string ToDebugString(InterpreterBase* interpreter, const ValueT& val) { const auto& str = ToString(interpreter, val); if (str.HasError()) { return "[invalid debug string]"; } return str.GetOkValue(); } } // namespace ap::axpr