mirror of
				https://github.com/ton-blockchain/ton
				synced 2025-03-09 15:40:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			282 lines
		
	
	
	
		
			8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			282 lines
		
	
	
	
		
			8 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|     This file is part of TON Blockchain Library.
 | |
| 
 | |
|     TON Blockchain Library is free software: you can redistribute it and/or modify
 | |
|     it under the terms of the GNU Lesser General Public License as published by
 | |
|     the Free Software Foundation, either version 2 of the License, or
 | |
|     (at your option) any later version.
 | |
| 
 | |
|     TON Blockchain Library 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 Lesser General Public License for more details.
 | |
| 
 | |
|     You should have received a copy of the GNU Lesser General Public License
 | |
|     along with TON Blockchain Library.  If not, see <http://www.gnu.org/licenses/>.
 | |
| 
 | |
|     Copyright 2017-2020 Telegram Systems LLP
 | |
| */
 | |
| #include "tl_writer_td.h"
 | |
| 
 | |
| #include <iostream>
 | |
| #include <cassert>
 | |
| 
 | |
| namespace td {
 | |
| 
 | |
| const int TD_TL_writer::MAX_ARITY;
 | |
| 
 | |
| const std::string TD_TL_writer::base_type_class_names[MAX_ARITY + 1] = {"Object"};
 | |
| const std::string TD_TL_writer::base_tl_class_name = "TlObject";
 | |
| const std::string TD_TL_writer::base_function_class_name = "Function";
 | |
| 
 | |
| int TD_TL_writer::get_max_arity() const {
 | |
|   return MAX_ARITY;
 | |
| }
 | |
| 
 | |
| bool TD_TL_writer::is_built_in_simple_type(const std::string &name) const {
 | |
|   return name == "True" || name == "Bool" || name == "Int" || name == "Long" || name == "Double" || name == "String" ||
 | |
|          name == "Int32" || name == "Int53" || name == "Int64" || name == "Int128" || name == "Int256" ||
 | |
|          name == "Bytes" || name == "SecureString" || name == "SecureBytes" || name == "Function" || name == "Object";
 | |
| }
 | |
| 
 | |
| bool TD_TL_writer::is_built_in_complex_type(const std::string &name) const {
 | |
|   return name == "Vector";
 | |
| }
 | |
| 
 | |
| bool TD_TL_writer::is_type_bare(const tl::tl_type *t) const {
 | |
|   return t->simple_constructors <= 1 || (is_built_in_simple_type(t->name) && t->name != "Bool") ||
 | |
|          is_built_in_complex_type(t->name);
 | |
| }
 | |
| 
 | |
| bool TD_TL_writer::is_combinator_supported(const tl::tl_combinator *constructor) const {
 | |
|   if (!TL_writer::is_combinator_supported(constructor)) {
 | |
|     return false;
 | |
|   }
 | |
| 
 | |
|   for (std::size_t i = 0; i < constructor->args.size(); i++) {
 | |
|     if (constructor->args[i].type->get_type() == tl::NODE_TYPE_VAR_TYPE) {
 | |
|       return false;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   return true;
 | |
| }
 | |
| 
 | |
| int TD_TL_writer::get_storer_type(const tl::tl_combinator *t, const std::string &storer_name) const {
 | |
|   return storer_name == "td::TlStorerToString" || storer_name == "TlStorerToString";
 | |
| }
 | |
| 
 | |
| tl::TL_writer::Mode TD_TL_writer::get_parser_mode(int type) const {
 | |
|   if (tl_name == "tonlib_api") {
 | |
| #ifndef TONLIB_ENABLE_JNI  // we need to parse all types in order to implement toString
 | |
|     return Server;
 | |
| #endif
 | |
|   }
 | |
|   return All;
 | |
| }
 | |
| 
 | |
| tl::TL_writer::Mode TD_TL_writer::get_storer_mode(int type) const {
 | |
|   if (type == 1) {
 | |
|     return All;
 | |
|   }
 | |
| 
 | |
|   if (tl_name == "td_api") {
 | |
|     return Server;
 | |
|   }
 | |
|   if (tl_name == "telegram_api") {
 | |
|     return Client;
 | |
|   }
 | |
|   return All;
 | |
| }
 | |
| 
 | |
| std::vector<std::string> TD_TL_writer::get_parsers() const {
 | |
|   std::vector<std::string> parsers;
 | |
|   if (tl_name == "ton_api" || tl_name == "lite_api") {
 | |
|     parsers.push_back("td::TlParser");
 | |
|   }
 | |
|   return parsers;
 | |
| }
 | |
| 
 | |
| std::vector<std::string> TD_TL_writer::get_storers() const {
 | |
|   std::vector<std::string> storers;
 | |
|   if (tl_name == "ton_api" || tl_name == "lite_api") {
 | |
|     storers.push_back("td::TlStorerCalcLength");
 | |
|     storers.push_back("td::TlStorerUnsafe");
 | |
|   }
 | |
|   storers.push_back("td::TlStorerToString");
 | |
|   return storers;
 | |
| }
 | |
| 
 | |
| std::string TD_TL_writer::gen_base_tl_class_name() const {
 | |
|   return base_tl_class_name;
 | |
| }
 | |
| 
 | |
| std::string TD_TL_writer::gen_base_type_class_name(int arity) const {
 | |
|   assert(arity == 0);
 | |
|   return base_type_class_names[arity];
 | |
| }
 | |
| 
 | |
| std::string TD_TL_writer::gen_base_function_class_name() const {
 | |
|   return base_function_class_name;
 | |
| }
 | |
| 
 | |
| std::string TD_TL_writer::gen_class_name(std::string name) const {
 | |
|   if (name == "Object") {
 | |
|     //assert(false);
 | |
|   }
 | |
|   if (name == "function") {
 | |
|     return "Function";
 | |
|   }
 | |
|   if (name == "object") {
 | |
|     return "Object";
 | |
|   }
 | |
|   if (name == "#") {
 | |
|     return "std::int32_t";
 | |
|   }
 | |
|   for (std::size_t i = 0; i < name.size(); i++) {
 | |
|     if (!is_alnum(name[i])) {
 | |
|       name[i] = '_';
 | |
|     }
 | |
|   }
 | |
|   return name;
 | |
| }
 | |
| 
 | |
| std::string TD_TL_writer::gen_field_name(std::string name) const {
 | |
|   for (std::size_t i = 0; i < name.size(); i++) {
 | |
|     if (!is_alnum(name[i])) {
 | |
|       name[i] = '_';
 | |
|     }
 | |
|   }
 | |
|   assert(name.size() > 0);
 | |
|   assert(name[name.size() - 1] != '_');
 | |
|   return name + "_";
 | |
| }
 | |
| 
 | |
| std::string TD_TL_writer::gen_var_name(const tl::var_description &desc) const {
 | |
|   assert(!desc.is_type);
 | |
| 
 | |
|   if (desc.parameter_num != -1) {
 | |
|     assert(false);
 | |
|   }
 | |
|   return "var" + int_to_string(desc.index);
 | |
| }
 | |
| 
 | |
| std::string TD_TL_writer::gen_parameter_name(int index) const {
 | |
|   assert(false);
 | |
|   return std::string();
 | |
| }
 | |
| 
 | |
| std::string TD_TL_writer::gen_type_name(const tl::tl_tree_type *tree_type) const {
 | |
|   const tl::tl_type *t = tree_type->type;
 | |
|   const std::string &name = t->name;
 | |
| 
 | |
|   if (name == "#") {
 | |
|     return "std::int32_t";
 | |
|   }
 | |
|   if (name == "True") {
 | |
|     return "bool";
 | |
|   }
 | |
|   if (name == "Bool") {
 | |
|     return "bool";
 | |
|   }
 | |
|   if (name == "Int" || name == "Int32") {
 | |
|     return "std::int32_t";
 | |
|   }
 | |
|   if (name == "Long" || name == "Int53" || name == "Int64") {
 | |
|     return "std::int64_t";
 | |
|   }
 | |
|   if (name == "Double") {
 | |
|     return "double";
 | |
|   }
 | |
|   if (name == "String") {
 | |
|     return string_type;
 | |
|   }
 | |
|   if (name == "Int128") {
 | |
|     return "td::Bits128";
 | |
|   }
 | |
|   if (name == "Int256") {
 | |
|     return "td::Bits256";
 | |
|   }
 | |
|   if (name == "Bytes") {
 | |
|     return bytes_type;
 | |
|   }
 | |
|   if (name == "SecureString") {
 | |
|     return secure_string_type;
 | |
|   }
 | |
|   if (name == "SecureBytes") {
 | |
|     return secure_bytes_type;
 | |
|   }
 | |
|   if (name == "Object") {
 | |
|     return "object_ptr<" + gen_base_type_class_name(0) + ">";
 | |
|   }
 | |
|   if (name == "Function") {
 | |
|     return "object_ptr<" + gen_base_function_class_name() + ">";
 | |
|   }
 | |
| 
 | |
|   if (name == "Vector") {
 | |
|     assert(t->arity == 1);
 | |
|     assert(tree_type->children.size() == 1);
 | |
|     assert(tree_type->children[0]->get_type() == tl::NODE_TYPE_TYPE);
 | |
|     const tl::tl_tree_type *child = static_cast<const tl::tl_tree_type *>(tree_type->children[0]);
 | |
| 
 | |
|     return "std::vector<" + gen_type_name(child) + ">";
 | |
|   }
 | |
| 
 | |
|   assert(!is_built_in_simple_type(name) && !is_built_in_complex_type(name));
 | |
| 
 | |
|   for (std::size_t i = 0; i < tree_type->children.size(); i++) {
 | |
|     assert(tree_type->children[i]->get_type() == tl::NODE_TYPE_NAT_CONST);
 | |
|   }
 | |
| 
 | |
|   return "object_ptr<" + gen_main_class_name(t) + ">";
 | |
| }
 | |
| 
 | |
| std::string TD_TL_writer::gen_array_type_name(const tl::tl_tree_array *arr, const std::string &field_name) const {
 | |
|   assert(false);
 | |
|   return std::string();
 | |
| }
 | |
| 
 | |
| std::string TD_TL_writer::gen_var_type_name() const {
 | |
|   return "object_ptr<" + gen_base_function_class_name() + ">";
 | |
| }
 | |
| 
 | |
| std::string TD_TL_writer::gen_int_const(const tl::tl_tree *tree_c, const std::vector<tl::var_description> &vars) const {
 | |
|   assert(false);
 | |
|   return std::string();
 | |
| }
 | |
| 
 | |
| std::string TD_TL_writer::gen_constructor_parameter(int field_num, const std::string &class_name, const tl::arg &a,
 | |
|                                                     bool is_default) const {
 | |
|   if (is_default) {
 | |
|     return "";
 | |
|   }
 | |
| 
 | |
|   std::string field_type = gen_field_type(a);
 | |
|   if (field_type.empty()) {
 | |
|     return "";
 | |
|   }
 | |
| 
 | |
|   if (field_type[field_type.size() - 1] != ' ') {
 | |
|     field_type += ' ';
 | |
|   }
 | |
| 
 | |
|   std::string res = (field_num == 0 ? "" : ", ");
 | |
|   if (field_type == "bool " || field_type == "std::int32_t " || field_type == "std::int64_t " ||
 | |
|       field_type == "double ") {
 | |
|     res += field_type;
 | |
|   } else if (field_type == "td::Bits128 " || field_type == "td::Bits256 " || field_type == string_type + " ") {
 | |
|     res += field_type + "const &";
 | |
|   } else if (field_type.compare(0, 11, "std::vector") == 0 || field_type == bytes_type + " " ||
 | |
|              field_type == secure_string_type + " " || field_type == secure_bytes_type + " ") {
 | |
|     res += field_type + "&&";
 | |
|   } else if (field_type.compare(0, 10, "object_ptr") == 0) {
 | |
|     res += field_type + "&&";
 | |
|   } else {
 | |
|     std::cerr << field_type << "\n";
 | |
|     assert(false && "unreachable");
 | |
|   }
 | |
| 
 | |
|   return res + gen_field_name(a.name);
 | |
| }
 | |
| 
 | |
| }  // namespace td
 |