blob: 03c2cb96092d30da4b4c0fa300a7f43f01c77441 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*
* Contains some contributions under the Thrift Software License.
* Please see doc/old-thrift-license.txt in the Thrift distribution for
* details.
*/
#include <cassert>
#include <string>
#include <fstream>
#include <iostream>
#include <vector>
#include <cctype>
#include <stdlib.h>
#include <sys/stat.h>
#include <sstream>
#include "thrift/platform.h"
#include "thrift/generate/t_oop_generator.h"
#include "thrift/generate/t_netstd_generator.h"
using std::map;
using std::ostream;
using std::ostringstream;
using std::string;
using std::stringstream;
using std::vector;
//TODO: check for indentation
//TODO: Do we need seqId_ in generation?
t_netstd_generator::t_netstd_generator(t_program* program, const map<string, string>& parsed_options, const string& option_string)
: t_oop_generator(program)
{
(void)option_string;
target_net_version = 0;
suppress_deepcopy = false;
add_async_postfix = false;
use_pascal_case_properties = false;
union_ = false;
serialize_ = false;
wcf_ = false;
wcf_namespace_.clear();
map<string, string>::const_iterator iter;
for (iter = parsed_options.begin(); iter != parsed_options.end(); ++iter)
{
if (iter->first.compare("union") == 0) {
union_ = true;
}
else if (iter->first.compare("serial") == 0) {
serialize_ = true;
wcf_namespace_ = iter->second; // since there can be only one namespace
}
else if (iter->first.compare("wcf") == 0) {
wcf_ = true;
wcf_namespace_ = iter->second;
}
else if (iter->first.compare("pascal") == 0) {
use_pascal_case_properties = true;
}
else if (iter->first.compare("no_deepcopy") == 0) {
suppress_deepcopy = true;
}
else if (iter->first.compare("net6") == 0) {
target_net_version = 6;
}
else if (iter->first.compare("net8") == 0) {
target_net_version = 8;
}
else if (iter->first.compare("async_postfix") == 0) {
add_async_postfix = true;
}
else {
throw "unknown option netstd:" + iter->first;
}
}
out_dir_base_ = "gen-netstd";
}
static bool field_has_default(t_field* tfield) { return tfield->get_value() != nullptr; }
static bool field_is_required(t_field* tfield) { return tfield->get_req() == t_field::T_REQUIRED; }
static t_type* resolve_typedef(t_type* ttype)
{
while (ttype->is_typedef())
{
ttype = static_cast<t_typedef*>(ttype)->get_type();
}
return ttype;
}
static bool type_can_be_null(t_type* ttype)
{
ttype = resolve_typedef(ttype);
return ttype->is_container() || ttype->is_struct() || ttype->is_xception() || ttype->is_string();
}
bool t_netstd_generator::is_wcf_enabled() const { return wcf_; }
bool t_netstd_generator::is_serialize_enabled() const { return serialize_; }
bool t_netstd_generator::is_union_enabled() const { return union_; }
void t_netstd_generator::init_generator()
{
MKDIR(get_out_dir().c_str());
namespace_name_ = program_->get_namespace("netstd");
string dir = namespace_name_;
string subdir = get_out_dir().c_str();
string::size_type loc;
while ((loc = dir.find(".")) != string::npos)
{
subdir = subdir + "/" + dir.substr(0, loc);
MKDIR(subdir.c_str());
dir = dir.substr(loc + 1);
}
if (dir.size() > 0)
{
subdir = subdir + "/" + dir;
MKDIR(subdir.c_str());
}
namespace_dir_ = subdir;
while (!member_mapping_scopes.empty())
{
cleanup_member_name_mapping(member_mapping_scopes.back().scope_member);
}
pverbose(".NET Standard options:\n");
pverbose("- union ................ %s\n", (is_union_enabled() ? "ON" : "off"));
pverbose("- serialize ............ %s\n", (is_serialize_enabled() ? "ON" : "off"));
pverbose("- wcf .................. %s\n", (is_wcf_enabled() ? "ON" : "off"));
pverbose("- pascal ............... %s\n", (use_pascal_case_properties ? "ON" : "off"));
pverbose("- target NET version ... %d\n", target_net_version);
pverbose("- no_deepcopy .......... %s\n", (suppress_deepcopy ? "ON" : "off"));
pverbose("- async_postfix ........ %s\n", (add_async_postfix ? "ON" : "off"));
}
string t_netstd_generator::normalize_name(string name, bool is_arg_name)
{
string tmp(name);
transform(tmp.begin(), tmp.end(), tmp.begin(), static_cast<int(*)(int)>(tolower));
// check for reserved argument names
if( is_arg_name && (CANCELLATION_TOKEN_NAME == name))
{
name += "_";
}
// un-conflict keywords by prefixing with "@"
if (netstd_keywords.find(tmp) != netstd_keywords.end())
{
return "@" + name;
}
// prevent CS8981 "The type name only contains lower-cased ascii characters"
if( name.find_first_not_of("abcdefghijklmnopqrstuvwxyz") == std::string::npos)
{
return "@" + name;
}
// no changes necessary
return name;
}
void t_netstd_generator::reset_indent() {
while( indent_count() > 0) {
indent_down();
}
}
void t_netstd_generator::pragmas_and_directives(ostream& out)
{
if( target_net_version >= 6) {
out << "// Thrift code generated for net" << target_net_version << endl;
out << "#nullable enable // requires C# 8.0" << endl;
}
// this one must be first
out << "#pragma warning disable IDE0079 // remove unnecessary pragmas" << endl;
if( target_net_version >= 8) {
out << "#pragma warning disable IDE0290 // use primary CTOR" << endl;
} else {
out << "#pragma warning disable IDE0017 // object init can be simplified" << endl;
out << "#pragma warning disable IDE0028 // collection init can be simplified" << endl;
}
out << "#pragma warning disable IDE1006 // parts of the code use IDL spelling" << endl;
out << "#pragma warning disable CA1822 // empty " << DEEP_COPY_METHOD_NAME << "() methods still non-static" << endl;
if( target_net_version < 6) {
out << "#pragma warning disable IDE0083 // pattern matching \"that is not SomeType\" requires net5.0 but we still support earlier versions" << endl;
}
out << endl;
}
void t_netstd_generator::start_netstd_namespace(ostream& out)
{
if (!namespace_name_.empty())
{
out << "namespace " << namespace_name_ << endl;
scope_up(out);
}
}
void t_netstd_generator::end_netstd_namespace(ostream& out)
{
if (!namespace_name_.empty())
{
scope_down(out);
}
}
string t_netstd_generator::netstd_type_usings() const
{
string namespaces =
"using System;\n"
"using System.Collections;\n"
"using System.Collections.Generic;\n"
"using System.Text;\n"
"using System.IO;\n"
"using System.Linq;\n"
"using System.Threading;\n"
"using System.Threading.Tasks;\n"
"using Microsoft.Extensions.Logging;\n"
"using Thrift;\n"
"using Thrift.Collections;\n";
if (is_wcf_enabled())
{
namespaces += "using System.ServiceModel;\n";
namespaces += "using System.Runtime.Serialization;\n";
}
return namespaces;
}
string t_netstd_generator::netstd_thrift_usings() const
{
string namespaces =
"using Thrift.Protocol;\n"
"using Thrift.Protocol.Entities;\n"
"using Thrift.Protocol.Utilities;\n"
"using Thrift.Transport;\n"
"using Thrift.Transport.Client;\n"
"using Thrift.Transport.Server;\n"
"using Thrift.Processor;\n";
return namespaces;
}
void t_netstd_generator::close_generator()
{
// right at the end, after everything else
generate_extensions_file();
}
void t_netstd_generator::generate_typedef(t_typedef* ttypedef)
{
(void)ttypedef;
}
void t_netstd_generator::generate_enum(t_enum* tenum)
{
int ic = indent_count();
string f_enum_name = namespace_dir_ + "/" + tenum->get_name() + ".cs";
ofstream_with_content_based_conditional_update f_enum;
f_enum.open(f_enum_name.c_str());
generate_enum(f_enum, tenum);
f_enum.close();
indent_validate(ic, "generate_enum");
}
void t_netstd_generator::generate_enum(ostream& out, t_enum* tenum)
{
reset_indent();
out << autogen_comment() << endl;
pragmas_and_directives(out);
start_netstd_namespace(out);
generate_netstd_doc(out, tenum);
out << indent() << "public enum " << type_name(tenum,false) << endl;
scope_up(out);
vector<t_enum_value*> constants = tenum->get_constants();
vector<t_enum_value*>::iterator c_iter;
for (c_iter = constants.begin(); c_iter != constants.end(); ++c_iter)
{
generate_netstd_doc(out, *c_iter);
int value = (*c_iter)->get_value();
out << indent() << normalize_name((*c_iter)->get_name()) << " = " << value << "," << endl;
}
scope_down(out);
end_netstd_namespace(out);
}
void t_netstd_generator::generate_consts(vector<t_const*> consts)
{
if (consts.empty())
{
return;
}
string f_consts_name = namespace_dir_ + '/' + program_name_ + ".Constants.cs";
ofstream_with_content_based_conditional_update f_consts;
f_consts.open(f_consts_name.c_str());
generate_consts(f_consts, consts);
f_consts.close();
}
void t_netstd_generator::generate_consts(ostream& out, vector<t_const*> consts)
{
if (consts.empty())
{
return;
}
reset_indent();
out << autogen_comment() << netstd_type_usings() << endl << endl;
pragmas_and_directives(out);
start_netstd_namespace(out);
out << indent() << "public static class " << make_valid_csharp_identifier(program_name_) << "Constants" << endl;
scope_up(out);
vector<t_const*>::iterator c_iter;
bool need_static_constructor = false;
for (c_iter = consts.begin(); c_iter != consts.end(); ++c_iter)
{
generate_netstd_doc(out, *c_iter);
if (print_const_value(out, normalize_name((*c_iter)->get_name()), (*c_iter)->get_type(), (*c_iter)->get_value(), false))
{
need_static_constructor = true;
}
}
if (need_static_constructor)
{
print_const_constructor(out, consts);
}
scope_down(out);
end_netstd_namespace(out);
}
void t_netstd_generator::print_const_def_value(ostream& out, string name, t_type* type, t_const_value* value)
{
if (type->is_struct() || type->is_xception())
{
const vector<t_field*>& fields = static_cast<t_struct*>(type)->get_members();
const map<t_const_value*, t_const_value*, t_const_value::value_compare>& val = value->get_map();
vector<t_field*>::const_iterator f_iter;
map<t_const_value*, t_const_value*, t_const_value::value_compare>::const_iterator v_iter;
collect_extensions_types(static_cast<t_struct*>(type));
prepare_member_name_mapping(static_cast<t_struct*>(type));
for (v_iter = val.begin(); v_iter != val.end(); ++v_iter)
{
t_field* field = nullptr;
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
if ((*f_iter)->get_name() == v_iter->first->get_string())
{
field = *f_iter;
}
}
if (field == nullptr)
{
throw "type error: " + type->get_name() + " has no field " + v_iter->first->get_string();
}
t_type* field_type = field->get_type();
string val = render_const_value(out, name, field_type, v_iter->second);
out << indent() << name << "." << prop_name(field) << " = " << val << ";" << endl;
}
cleanup_member_name_mapping(static_cast<t_struct*>(type));
}
else if (type->is_map())
{
t_type* ktype = static_cast<t_map*>(type)->get_key_type();
t_type* vtype = static_cast<t_map*>(type)->get_val_type();
const map<t_const_value*, t_const_value*, t_const_value::value_compare>& val = value->get_map();
map<t_const_value*, t_const_value*, t_const_value::value_compare>::const_iterator v_iter;
for (v_iter = val.begin(); v_iter != val.end(); ++v_iter)
{
string key = render_const_value(out, name, ktype, v_iter->first);
string val = render_const_value(out, name, vtype, v_iter->second);
out << indent() << name << "[" << key << "]" << " = " << val << ";" << endl;
}
}
else if (type->is_list() || type->is_set())
{
t_type* etype;
if (type->is_list())
{
etype = static_cast<t_list*>(type)->get_elem_type();
}
else
{
etype = static_cast<t_set*>(type)->get_elem_type();
}
const vector<t_const_value*>& val = value->get_list();
vector<t_const_value*>::const_iterator v_iter;
for (v_iter = val.begin(); v_iter != val.end(); ++v_iter)
{
string val = render_const_value(out, name, etype, *v_iter);
out << indent() << name << ".Add(" << val << ");" << endl;
}
}
}
void t_netstd_generator::print_const_constructor(ostream& out, vector<t_const*> consts)
{
out << indent() << "static " << make_valid_csharp_identifier(program_name_).c_str() << "Constants()" << endl;
scope_up(out);
vector<t_const*>::iterator c_iter;
for (c_iter = consts.begin(); c_iter != consts.end(); ++c_iter)
{
string name = (*c_iter)->get_name();
t_type* type = (*c_iter)->get_type();
t_const_value* value = (*c_iter)->get_value();
print_const_def_value(out, name, type, value);
}
scope_down(out);
}
bool t_netstd_generator::print_const_value(ostream& out, string name, t_type* type, t_const_value* value, bool in_static, bool defval, bool needtype)
{
out << indent();
bool need_static_construction = !in_static;
type = resolve_typedef( type);
if (!defval || needtype)
{
if(in_static) {
out << type_name(type) << " ";
} else if(type->is_base_type()) {
out << "public const " << type_name(type) << " ";
} else {
out << "public static " << (target_net_version >= 6 ? "readonly " : "") << type_name(type) << " ";
}
}
if (type->is_base_type())
{
string v2 = render_const_value(out, name, type, value);
out << name << " = " << v2 << ";" << endl;
need_static_construction = false;
}
else if (type->is_enum())
{
out << name << " = " << type_name(type) << "." << value->get_identifier_name() << ";" << endl;
need_static_construction = false;
}
else if (type->is_struct() || type->is_xception())
{
if(target_net_version >= 6) {
out << name << " = new();" << endl;
} else {
out << name << " = new " << type_name(type) << "();" << endl;
}
}
else if (type->is_map() || type->is_list() || type->is_set())
{
if(target_net_version >= 8) {
out << name << " = [];" << endl;
} else if(target_net_version >= 6) {
out << name << " = new();" << endl;
} else {
out << name << " = new " << type_name(type) << "();" << endl;
}
}
if (defval && !type->is_base_type() && !type->is_enum())
{
print_const_def_value(out, name, type, value);
}
return need_static_construction;
}
string t_netstd_generator::render_const_value(ostream& out, string name, t_type* type, t_const_value* value)
{
(void)name;
ostringstream render;
if (type->is_base_type())
{
t_base_type::t_base tbase = static_cast<t_base_type*>(type)->get_base();
switch (tbase)
{
case t_base_type::TYPE_STRING:
if (type->is_binary()) {
render << "System.Text.Encoding.UTF8.GetBytes(\"" << get_escaped_string(value) << "\")";
} else {
render << '"' << get_escaped_string(value) << '"';
}
break;
case t_base_type::TYPE_UUID:
render << "new System.Guid(\"" << get_escaped_string(value) << "\")";
break;
case t_base_type::TYPE_BOOL:
render << ((value->get_integer() > 0) ? "true" : "false");
break;
case t_base_type::TYPE_I8:
case t_base_type::TYPE_I16:
case t_base_type::TYPE_I32:
case t_base_type::TYPE_I64:
render << value->get_integer();
break;
case t_base_type::TYPE_DOUBLE:
if (value->get_type() == t_const_value::CV_INTEGER)
{
render << value->get_integer();
}
else
{
render << value->get_double();
}
break;
default:
throw "compiler error: no const of base type " + t_base_type::t_base_name(tbase);
}
}
else if (type->is_enum())
{
render << type_name(type) << "." << value->get_identifier_name();
}
else
{
string t = normalize_name(tmp("tmp"));
print_const_value(out, t, type, value, true, true, true);
render << t;
}
return render.str();
}
void t_netstd_generator::collect_extensions_types(t_struct* tstruct)
{
const vector<t_field*>& members = tstruct->get_members();
vector<t_field*>::const_iterator m_iter;
// make private members with public Properties
for (m_iter = members.begin(); m_iter != members.end(); ++m_iter)
{
collect_extensions_types((*m_iter)->get_type());
}
}
void t_netstd_generator::collect_extensions_types(t_type* ttype)
{
ttype = resolve_typedef( ttype);
string key = type_name(ttype);
if (ttype->is_struct() || ttype->is_xception())
{
if( checked_extension_types.find(key) == checked_extension_types.end())
{
checked_extension_types[key] = ttype; // prevent recursion
t_struct* tstruct = static_cast<t_struct*>(ttype);
collect_extensions_types(tstruct);
}
return;
}
if (ttype->is_container())
{
if( collected_extension_types.find(key) == collected_extension_types.end())
{
collected_extension_types[key] = ttype; // prevent recursion
if( ttype->is_map())
{
t_map* tmap = static_cast<t_map*>(ttype);
collect_extensions_types(tmap->get_key_type());
collect_extensions_types(tmap->get_val_type());
}
else if (ttype->is_set())
{
t_set* tset = static_cast<t_set*>(ttype);
collect_extensions_types(tset->get_elem_type());
}
else if (ttype->is_list())
{
t_list* tlist = static_cast<t_list*>(ttype);
collect_extensions_types(tlist->get_elem_type());
}
else
{
throw "compiler error: unhandled container type " + ttype->get_name();
}
}
return;
}
}
void t_netstd_generator::generate_extensions_file()
{
if (collected_extension_types.empty())
{
return;
}
string f_exts_name = namespace_dir_ + '/' + program_name_ + ".Extensions.cs";
ofstream_with_content_based_conditional_update f_exts;
f_exts.open(f_exts_name.c_str());
generate_extensions(f_exts, collected_extension_types);
f_exts.close();
}
void t_netstd_generator::generate_extensions(ostream& out, map<string, t_type*> types)
{
if (types.empty())
{
return;
}
reset_indent();
out << autogen_comment() << netstd_type_usings()
<< "using Thrift.Protocol;" << endl
<< endl << endl;
pragmas_and_directives(out);
start_netstd_namespace(out);
out << indent() << "public static class " << make_valid_csharp_identifier(program_name_) << "Extensions" << endl;
scope_up(out);
bool needs_typecast = false;
std::map<string,t_type*>::const_iterator iter;
for( iter = types.begin(); iter != types.end(); ++iter)
{
out << indent() << "public static bool Equals(this " << iter->first << " instance, object that)" << endl;
scope_up(out);
if( target_net_version >= 6) {
out << indent() << "if (that is not " << iter->first << " other) return false;" << endl;
} else {
out << indent() << "if (!(that is " << iter->first << " other)) return false;" << endl;
}
out << indent() << "if (ReferenceEquals(instance, other)) return true;" << endl;
out << endl;
out << indent() << "return TCollections.Equals(instance, other);" << endl;
scope_down(out);
out << endl << endl;
out << indent() << "public static int GetHashCode(this " << iter->first << " instance)" << endl;
scope_up(out);
out << indent() << "return TCollections.GetHashCode(instance);" << endl;
scope_down(out);
out << endl << endl;
if(! suppress_deepcopy) {
out << indent() << "public static " << iter->first << nullable_field_suffix(iter->second) << " " << DEEP_COPY_METHOD_NAME << "(this " << iter->first << nullable_field_suffix(iter->second) << " source)" << endl;
scope_up(out);
out << indent() << "if (source == null)" << endl;
indent_up();
out << indent() << "return null;" << endl << endl;
indent_down();
string suffix("");
string tmp_instance = tmp("tmp");
out << indent() << "var " << tmp_instance << " = new " << iter->first << "(source.Count);" << endl;
if( iter->second->is_map())
{
t_map* tmap = static_cast<t_map*>(iter->second);
string copy_key = get_deep_copy_method_call(tmap->get_key_type(), true, needs_typecast, suffix);
string copy_val = get_deep_copy_method_call(tmap->get_val_type(), true, needs_typecast, suffix);
bool null_key = type_can_be_null(tmap->get_key_type());
bool null_val = type_can_be_null(tmap->get_val_type());
out << indent() << "foreach (var pair in source)" << endl;
indent_up();
if( target_net_version >= 6) {
out << indent() << tmp_instance << ".Add(pair.Key" << copy_key;
out << ", pair.Value" << copy_val;
} else {
out << indent() << tmp_instance << ".Add(";
if( null_key) {
out << "(pair.Key != null) ? pair.Key" << copy_key << " : null";
} else {
out << "pair.Key" << copy_key;
}
out << ", ";
if( null_val) {
out << "(pair.Value != null) ? pair.Value" << copy_val << " : null";
} else {
out << "pair.Value" << copy_val;
}
}
out << ");" << endl;
indent_down();
} else if( iter->second->is_set() || iter->second->is_list()) {
string copy_elm;
bool null_elm = false;
if (iter->second->is_set())
{
t_set* tset = static_cast<t_set*>(iter->second);
copy_elm = get_deep_copy_method_call(tset->get_elem_type(), true, needs_typecast, suffix);
null_elm = type_can_be_null(tset->get_elem_type());
}
else // list
{
t_list* tlist = static_cast<t_list*>(iter->second);
copy_elm = get_deep_copy_method_call(tlist->get_elem_type(), true, needs_typecast, suffix);
null_elm = type_can_be_null(tlist->get_elem_type());
}
out << indent() << "foreach (var elem in source)" << endl;
indent_up();
if( target_net_version >= 6) {
out << indent() << tmp_instance << ".Add(elem" << copy_elm;
} else {
out << indent() << tmp_instance << ".Add(";
if( null_elm)
{
out << "(elem != null) ? elem" << copy_elm << " : null";
} else {
out << "elem" << copy_elm;
}
}
out << ");" << endl;
indent_down();
}
out << indent() << "return " << tmp_instance << ";" << endl;
scope_down(out);
out << endl << endl;
}
}
scope_down(out);
end_netstd_namespace(out);
}
void t_netstd_generator::generate_struct(t_struct* tstruct)
{
collect_extensions_types(tstruct);
if (is_union_enabled() && tstruct->is_union())
{
generate_netstd_union(tstruct);
}
else
{
generate_netstd_struct(tstruct, false);
}
}
void t_netstd_generator::generate_xception(t_struct* txception)
{
generate_netstd_struct(txception, true);
}
void t_netstd_generator::generate_netstd_struct(t_struct* tstruct, bool is_exception)
{
int ic = indent_count();
string f_struct_name = namespace_dir_ + "/" + (tstruct->get_name()) + ".cs";
ofstream_with_content_based_conditional_update f_struct;
f_struct.open(f_struct_name.c_str());
reset_indent();
f_struct << autogen_comment() << netstd_type_usings() << netstd_thrift_usings() << endl << endl;
pragmas_and_directives(f_struct);
generate_netstd_struct_definition(f_struct, tstruct, is_exception);
f_struct.close();
indent_validate(ic, "generate_netstd_struct");
}
void t_netstd_generator::generate_netstd_struct_definition(ostream& out, t_struct* tstruct, bool is_exception, bool in_class, bool is_result)
{
if (!in_class)
{
start_netstd_namespace(out);
}
out << endl;
generate_netstd_doc(out, tstruct);
collect_extensions_types(tstruct);
prepare_member_name_mapping(tstruct);
if ((is_serialize_enabled() || is_wcf_enabled()) && !is_exception)
{
out << indent() << "[DataContract(Namespace=\"" << wcf_namespace_ << "\")]" << endl;
}
bool is_final = tstruct->annotations_.find("final") != tstruct->annotations_.end();
string sharp_struct_name = type_name(tstruct, false);
out << indent() << "public " << (is_final ? "sealed " : "") << "partial class " << sharp_struct_name << " : ";
if (is_exception)
{
out << "TException, ";
}
out << "TBase" << endl
<< indent() << "{" << endl;
indent_up();
const vector<t_field*>& members = tstruct->get_members();
vector<t_field*>::const_iterator m_iter;
// make private members with public Properties
for (m_iter = members.begin(); m_iter != members.end(); ++m_iter)
{
// if the field is required, then we use auto-properties
if (!field_is_required((*m_iter)))
{
out << indent() << "private " << declare_field(*m_iter, false, true, "_") << endl;
}
}
out << endl;
bool has_non_required_fields = false;
bool has_required_fields = false;
for (m_iter = members.begin(); m_iter != members.end(); ++m_iter)
{
generate_netstd_doc(out, *m_iter);
generate_property(out, *m_iter, true, true);
bool is_required = field_is_required((*m_iter));
if (is_required)
{
has_required_fields = true;
}
else
{
has_non_required_fields = true;
}
}
bool generate_isset = has_non_required_fields;
if (generate_isset)
{
out << endl;
if (is_serialize_enabled() || is_wcf_enabled())
{
out << indent() << "[DataMember(Order = 1)]" << endl;
}
out << indent() << "public Isset __isset;" << endl;
if (is_serialize_enabled() || is_wcf_enabled())
{
out << indent() << "[DataContract]" << endl;
}
out << indent() << "public struct Isset" << endl
<< indent() << "{" << endl;
indent_up();
for (m_iter = members.begin(); m_iter != members.end(); ++m_iter)
{
bool is_required = field_is_required((*m_iter));
// if it is required, don't need Isset for that variable
// if it is not required, if it has a default value, we need to generate Isset
if (!is_required)
{
if (is_serialize_enabled() || is_wcf_enabled())
{
out << indent() << "[DataMember]" << endl;
}
out << indent() << "public bool " << get_isset_name(normalize_name((*m_iter)->get_name())) << ";" << endl;
}
}
indent_down();
out << indent() << "}" << endl << endl;
if (generate_isset && (is_serialize_enabled() || is_wcf_enabled()))
{
out << indent() << "#region XmlSerializer support" << endl << endl;
for (m_iter = members.begin(); m_iter != members.end(); ++m_iter)
{
bool is_required = field_is_required(*m_iter);
// if it is required, don't need Isset for that variable
// if it is not required, if it has a default value, we need to generate Isset
if (!is_required)
{
out << indent() << "public bool ShouldSerialize" << prop_name(*m_iter) << "()" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "return __isset." << get_isset_name(normalize_name((*m_iter)->get_name())) << ";" << endl;
indent_down();
out << indent() << "}" << endl << endl;
}
}
out << indent() << "#endregion XmlSerializer support" << endl << endl;
}
}
// We always want a default, no argument constructor for Reading
out << indent() << "public " << sharp_struct_name << "()" << endl
<< indent() << "{" << endl;
indent_up();
for (m_iter = members.begin(); m_iter != members.end(); ++m_iter)
{
t_type* t = (*m_iter)->get_type();
t = resolve_typedef(t);
if ((*m_iter)->get_value() != nullptr)
{
if (field_is_required((*m_iter)))
{
print_const_value(out, "this." + normalize_name(prop_name(*m_iter)), t, (*m_iter)->get_value(), true, true);
}
else
{
print_const_value(out, "this._" + (*m_iter)->get_name(), t, (*m_iter)->get_value(), true, true);
// Optionals with defaults are marked set
out << indent() << "this.__isset." << get_isset_name(normalize_name((*m_iter)->get_name())) << " = true;" << endl;
}
}
}
indent_down();
out << indent() << "}" << endl << endl;
// if we have required fields, we add that CTOR too
if (has_required_fields)
{
out << indent() << "public " << sharp_struct_name << "(";
bool first = true;
for (m_iter = members.begin(); m_iter != members.end(); ++m_iter)
{
if (field_is_required(*m_iter))
{
if (first)
{
first = false;
}
else
{
out << ", ";
}
out << type_name((*m_iter)->get_type()) << nullable_field_suffix(*m_iter) << " " << normalize_name((*m_iter)->get_name());
}
}
out << ") : this()" << endl
<< indent() << "{" << endl;
indent_up();
for (m_iter = members.begin(); m_iter != members.end(); ++m_iter)
{
if (field_is_required(*m_iter))
{
out << indent() << "this." << prop_name(*m_iter) << " = " << normalize_name((*m_iter)->get_name()) << ";" << endl;
}
}
indent_down();
out << indent() << "}" << endl << endl;
}
// DeepCopy()
generate_netstd_deepcopy_method(out, tstruct, sharp_struct_name);
generate_netstd_struct_reader(out, tstruct);
if (is_result)
{
generate_netstd_struct_result_writer(out, tstruct);
}
else
{
generate_netstd_struct_writer(out, tstruct);
}
generate_netstd_struct_equals(out, tstruct);
generate_netstd_struct_hashcode(out, tstruct);
generate_netstd_struct_tostring(out, tstruct);
indent_down();
out << indent() << "}" << endl << endl;
// generate a corresponding WCF fault to wrap the exception
if ((is_serialize_enabled() || is_wcf_enabled()) && is_exception)
{
generate_netstd_wcffault(out, tstruct);
}
cleanup_member_name_mapping(tstruct);
if (!in_class)
{
end_netstd_namespace(out);
}
}
void t_netstd_generator::generate_netstd_wcffault(ostream& out, t_struct* tstruct)
{
out << endl;
out << indent() << "[DataContract]" << endl;
bool is_final = tstruct->annotations_.find("final") != tstruct->annotations_.end();
out << indent() << "public " << (is_final ? "sealed " : "") << "partial class " << type_name(tstruct,false) << "Fault" << endl
<< indent() << "{" << endl;
indent_up();
const vector<t_field*>& members = tstruct->get_members();
vector<t_field*>::const_iterator m_iter;
// make private members with public Properties
for (m_iter = members.begin(); m_iter != members.end(); ++m_iter)
{
// if the field is required, then we use auto-properties
if (!field_is_required((*m_iter)))
{
out << indent() << "private " << declare_field(*m_iter, false, true, "_") << endl;
}
}
out << endl;
for (m_iter = members.begin(); m_iter != members.end(); ++m_iter)
{
generate_property(out, *m_iter, true, false);
}
indent_down();
out << indent() << "}" << endl << endl;
}
void t_netstd_generator::generate_netstd_deepcopy_method(ostream& out, t_struct* tstruct, std::string sharp_struct_name)
{
if( suppress_deepcopy) {
return; // feature disabled
}
const vector<t_field*>& members = tstruct->get_members();
vector<t_field*>::const_iterator m_iter;
out << indent() << "public " << sharp_struct_name << " " << DEEP_COPY_METHOD_NAME << "()" << endl;
out << indent() << "{" << endl;
indent_up();
// return directly if there are only required fields
string tmp_instance = tmp("tmp");
out << indent() << "var " << tmp_instance << " = new " << sharp_struct_name << "()";
bool inline_assignment = (target_net_version >= 6);
if(inline_assignment) {
out << endl << indent() << "{" << endl;
indent_up();
} else {
out << ";" << endl;
}
for (m_iter = members.begin(); m_iter != members.end(); ++m_iter) {
bool needs_typecast = false;
string suffix("");
t_type* ttype = (*m_iter)->get_type();
string copy_op = get_deep_copy_method_call(ttype, true, needs_typecast, suffix);
bool is_required = field_is_required(*m_iter);
bool null_allowed = type_can_be_null((*m_iter)->get_type());
if(inline_assignment) {
if( null_allowed || (!is_required)) { // = has isset
indent_down();
out << indent() << "};" << endl;
inline_assignment = false;
}
}
generate_null_check_begin( out, *m_iter);
out << indent();
if(!inline_assignment) {
out << tmp_instance << ".";
}
out << prop_name(*m_iter) << " = ";
if( needs_typecast) {
out << "(" << type_name(ttype) << ")";
}
out << "this." << prop_name(*m_iter) << copy_op;
out << (inline_assignment ? "," : ";") << endl;
generate_null_check_end( out, *m_iter);
if( !is_required) {
out << indent();
if(!inline_assignment) {
out << tmp_instance << ".";
}
out << "__isset." << get_isset_name(normalize_name((*m_iter)->get_name()));
out << " = this.__isset." << get_isset_name(normalize_name((*m_iter)->get_name()));
out << (inline_assignment ? "," : ";") << endl;
}
}
if(inline_assignment) {
indent_down();
out << indent() << "};" << endl;
}
out << indent() << "return " << tmp_instance << ";" << endl;
indent_down();
out << indent() << "}" << endl << endl;
}
void t_netstd_generator::generate_netstd_struct_reader(ostream& out, t_struct* tstruct)
{
out << indent() << "public async global::System.Threading.Tasks.Task ReadAsync(TProtocol iprot, CancellationToken " << CANCELLATION_TOKEN_NAME << ")" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "iprot.IncrementRecursionDepth();" << endl
<< indent() << "try" << endl
<< indent() << "{" << endl;
indent_up();
const vector<t_field*>& fields = tstruct->get_members();
vector<t_field*>::const_iterator f_iter;
// Required variables aren't in __isset, so we need tmp vars to check them
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
if (field_is_required(*f_iter))
{
out << indent() << "bool isset_" << (*f_iter)->get_name() << " = false;" << endl;
}
}
out << indent() << "TField field;" << endl
<< indent() << "await iprot.ReadStructBeginAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "while (true)" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "field = await iprot.ReadFieldBeginAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "if (field.Type == TType.Stop)" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "break;" << endl;
indent_down();
out << indent() << "}" << endl << endl
<< indent() << "switch (field.ID)" << endl
<< indent() << "{" << endl;
indent_up();
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
bool is_required = field_is_required(*f_iter);
out << indent() << "case " << (*f_iter)->get_key() << ":" << endl;
indent_up();
out << indent() << "if (field.Type == " << type_to_enum((*f_iter)->get_type()) << ")" << endl
<< indent() << "{" << endl;
indent_up();
generate_deserialize_field(out, *f_iter);
if (is_required)
{
out << indent() << "isset_" << (*f_iter)->get_name() << " = true;" << endl;
}
indent_down();
out << indent() << "}" << endl
<< indent() << "else" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "await TProtocolUtil.SkipAsync(iprot, field.Type, " << CANCELLATION_TOKEN_NAME << ");" << endl;
indent_down();
out << indent() << "}" << endl
<< indent() << "break;" << endl;
indent_down();
}
out << indent() << "default: " << endl;
indent_up();
out << indent() << "await TProtocolUtil.SkipAsync(iprot, field.Type, " << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "break;" << endl;
indent_down();
indent_down();
out << indent() << "}" << endl
<< endl
<< indent() << "await iprot.ReadFieldEndAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl;
indent_down();
out << indent() << "}" << endl
<< endl
<< indent() << "await iprot.ReadStructEndAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl;
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
if (field_is_required((*f_iter)))
{
out << indent() << "if (!isset_" << (*f_iter)->get_name() << ")" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "throw new TProtocolException(TProtocolException.INVALID_DATA);" << endl;
indent_down();
out << indent() << "}" << endl;
}
}
indent_down();
out << indent() << "}" << endl;
out << indent() << "finally" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "iprot.DecrementRecursionDepth();" << endl;
indent_down();
out << indent() << "}" << endl;
indent_down();
out << indent() << "}" << endl << endl;
}
void t_netstd_generator::generate_null_check_begin(ostream& out, t_field* tfield) {
bool is_required = field_is_required(tfield);
bool null_allowed = type_can_be_null(tfield->get_type());
if( null_allowed || (!is_required)) {
bool first = true;
out << indent() << "if(";
if( null_allowed) {
out << "(" << prop_name(tfield) << " != null)";
first = false;
}
if( !is_required) {
if( !first) {
out << " && ";
}
out << "__isset." << get_isset_name(normalize_name(tfield->get_name()));
}
out << ")" << endl
<< indent() << "{" << endl;
indent_up();
}
}
void t_netstd_generator::generate_null_check_end(ostream& out, t_field* tfield) {
bool is_required = field_is_required(tfield);
bool null_allowed = type_can_be_null(tfield->get_type());
if( null_allowed || (!is_required)) {
indent_down();
out << indent() << "}" << endl;
}
}
void t_netstd_generator::generate_netstd_struct_writer(ostream& out, t_struct* tstruct)
{
out << indent() << "public async global::System.Threading.Tasks.Task WriteAsync(TProtocol oprot, CancellationToken " << CANCELLATION_TOKEN_NAME << ")" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "oprot.IncrementRecursionDepth();" << endl
<< indent() << "try" << endl
<< indent() << "{" << endl;
indent_up();
string name = tstruct->get_name();
const vector<t_field*>& fields = tstruct->get_sorted_members();
vector<t_field*>::const_iterator f_iter;
string tmpvar = tmp("tmp");
out << indent() << "var " << tmpvar << " = new TStruct(\"" << name << "\");" << endl
<< indent() << "await oprot.WriteStructBeginAsync(" << tmpvar << ", " << CANCELLATION_TOKEN_NAME << ");" << endl;
if (fields.size() > 0)
{
tmpvar = tmp("tmp");
if(target_net_version >= 8) {
out << indent() << "#pragma warning disable IDE0017 // simplified init" << endl;
}
out << indent() << "var " << tmpvar << " = new TField();" << endl;
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
generate_null_check_begin( out, *f_iter);
out << indent() << tmpvar << ".Name = \"" << (*f_iter)->get_name() << "\";" << endl
<< indent() << tmpvar << ".Type = " << type_to_enum((*f_iter)->get_type()) << ";" << endl
<< indent() << tmpvar << ".ID = " << (*f_iter)->get_key() << ";" << endl
<< indent() << "await oprot.WriteFieldBeginAsync(" << tmpvar << ", " << CANCELLATION_TOKEN_NAME << ");" << endl;
generate_serialize_field(out, *f_iter);
out << indent() << "await oprot.WriteFieldEndAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl;
generate_null_check_end(out, *f_iter);
}
if(target_net_version >= 8) {
out << indent() << "#pragma warning restore IDE0017 // simplified init" << endl;
}
}
out << indent() << "await oprot.WriteFieldStopAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "await oprot.WriteStructEndAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl;
indent_down();
out << indent() << "}" << endl
<< indent() << "finally" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "oprot.DecrementRecursionDepth();" << endl;
indent_down();
out << indent() << "}" << endl;
indent_down();
out << indent() << "}" << endl << endl;
}
void t_netstd_generator::generate_netstd_struct_result_writer(ostream& out, t_struct* tstruct)
{
out << indent() << "public async global::System.Threading.Tasks.Task WriteAsync(TProtocol oprot, CancellationToken " << CANCELLATION_TOKEN_NAME << ")" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "oprot.IncrementRecursionDepth();" << endl
<< indent() << "try" << endl
<< indent() << "{" << endl;
indent_up();
string name = tstruct->get_name();
const vector<t_field*>& fields = tstruct->get_sorted_members();
vector<t_field*>::const_iterator f_iter;
string tmpvar = tmp("tmp");
out << indent() << "var " << tmpvar << " = new TStruct(\"" << name << "\");" << endl
<< indent() << "await oprot.WriteStructBeginAsync(" << tmpvar << ", " << CANCELLATION_TOKEN_NAME << ");" << endl;
if (fields.size() > 0)
{
tmpvar = tmp("tmp");
if(target_net_version >= 8) {
out << indent() << "#pragma warning disable IDE0017 // simplified init" << endl;
}
out << indent() << "var " << tmpvar << " = new TField();" << endl;
bool first = true;
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
if (first)
{
first = false;
out << endl << indent() << "if";
}
else
{
out << indent() << "else if";
}
out << "(this.__isset." << get_isset_name(normalize_name((*f_iter)->get_name())) << ")" << endl
<< indent() << "{" << endl;
indent_up();
bool null_allowed = type_can_be_null((*f_iter)->get_type());
if (null_allowed)
{
out << indent() << "if (" << prop_name(*f_iter) << " != null)" << endl
<< indent() << "{" << endl;
indent_up();
}
out << indent() << tmpvar << ".Name = \"" << prop_name(*f_iter) << "\";" << endl
<< indent() << tmpvar << ".Type = " << type_to_enum((*f_iter)->get_type()) << ";" << endl
<< indent() << tmpvar << ".ID = " << (*f_iter)->get_key() << ";" << endl
<< indent() << "await oprot.WriteFieldBeginAsync(" << tmpvar << ", " << CANCELLATION_TOKEN_NAME << ");" << endl;
generate_serialize_field(out, *f_iter);
out << indent() << "await oprot.WriteFieldEndAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl;
if (null_allowed)
{
indent_down();
out << indent() << "}" << endl;
}
indent_down();
out << indent() << "}" << endl;
}
if(target_net_version >= 8) {
out << indent() << "#pragma warning restore IDE0017 // simplified init" << endl;
}
}
out << indent() << "await oprot.WriteFieldStopAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "await oprot.WriteStructEndAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl;
indent_down();
out << indent() << "}" << endl
<< indent() << "finally" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "oprot.DecrementRecursionDepth();" << endl;
indent_down();
out << indent() << "}" << endl;
indent_down();
out << indent() << "}" << endl << endl;
}
void t_netstd_generator::generate_netstd_struct_tostring(ostream& out, t_struct* tstruct)
{
string tmpvar = tmp("tmp");
out << indent() << "public override string ToString()" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "var " << tmpvar << " = new StringBuilder(\"" << tstruct->get_name() << "(\");" << endl;
const vector<t_field*>& fields = tstruct->get_members();
vector<t_field*>::const_iterator f_iter;
bool useFirstFlag = false;
string tmp_count = tmp("tmp");
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
if (!field_is_required((*f_iter)))
{
out << indent() << "int " << tmp_count.c_str() << " = 0;" << endl;
useFirstFlag = true;
}
break;
}
bool had_required = false; // set to true after first required field has been processed
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
bool is_required = field_is_required(*f_iter);
generate_null_check_begin(out, *f_iter);
if (useFirstFlag && (!had_required))
{
out << indent() << "if(0 < " << tmp_count.c_str() << (is_required ? "" : "++") << ") { " << tmpvar << ".Append(\", \"); }" << endl;
out << indent() << tmpvar << ".Append(\"" << prop_name(*f_iter) << ": \");" << endl;
}
else
{
out << indent() << tmpvar << ".Append(\", " << prop_name(*f_iter) << ": \");" << endl;
}
out << indent() << prop_name(*f_iter) << ".ToString(" << tmpvar << ");" << endl;
generate_null_check_end(out, *f_iter);
if (is_required) {
had_required = true; // now __count must be > 0, so we don't need to check it anymore
}
}
out << indent() << tmpvar << ".Append(')');" << endl
<< indent() << "return " << tmpvar << ".ToString();" << endl;
indent_down();
out << indent() << "}" << endl;
}
void t_netstd_generator::generate_netstd_union(t_struct* tunion)
{
int ic = indent_count();
string f_union_name = namespace_dir_ + "/" + (tunion->get_name()) + ".cs";
ofstream_with_content_based_conditional_update f_union;
f_union.open(f_union_name.c_str());
reset_indent();
f_union << autogen_comment() << netstd_type_usings() << netstd_thrift_usings() << endl << endl;
pragmas_and_directives(f_union);
generate_netstd_union_definition(f_union, tunion);
f_union.close();
indent_validate(ic, "generate_netstd_union.");
}
void t_netstd_generator::generate_netstd_union_definition(ostream& out, t_struct* tunion)
{
// Let's define the class first
start_netstd_namespace(out);
out << indent() << "public abstract partial class " << normalize_name(tunion->get_name()) << " : TUnionBase" << endl;
out << indent() << "{" << endl;
indent_up();
out << indent() << "public abstract global::System.Threading.Tasks.Task WriteAsync(TProtocol tProtocol, CancellationToken " << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "public readonly int Isset;" << endl
<< indent() << "public abstract object" << nullable_suffix() <<" Data { get; }" << endl
<< indent() << "protected " << normalize_name(tunion->get_name()) << "(int isset)" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "Isset = isset;" << endl;
indent_down();
out << indent() << "}" << endl << endl;
const vector<t_field*>& fields = tunion->get_members();
vector<t_field*>::const_iterator f_iter;
out << indent() << "public override bool Equals(object" << nullable_suffix() << " that)" << endl;
scope_up(out);
if( target_net_version >= 6) {
out << indent() << "if (that is not " << tunion->get_name() << " other) return false;" << endl;
} else {
out << indent() << "if (!(that is " << tunion->get_name() << " other)) return false;" << endl;
}
out << indent() << "if (ReferenceEquals(this, other)) return true;" << endl;
out << endl;
out << indent() << "if(this.Isset != other.Isset) return false;" << endl;
out << endl;
if(target_net_version >= 6) {
out << indent() << "return Isset switch" << endl;
scope_up(out);
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
bool needs_typecast = false;
string suffix("");
get_deep_copy_method_call((*f_iter)->get_type(), false, needs_typecast, suffix);
out << indent() << (*f_iter)->get_key() << " => Equals(As_" << (*f_iter)->get_name() << ", other.As_" << (*f_iter)->get_name() << ")," << endl;
}
out << indent() << "_ => true," << endl;
indent_down();
out << indent() << "};" << endl;
} else {
out << indent() << "switch (Isset)" << endl;
scope_up(out);
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
bool needs_typecast = false;
string suffix("");
get_deep_copy_method_call((*f_iter)->get_type(), false, needs_typecast, suffix);
out << indent() << "case " << (*f_iter)->get_key() << ":" << endl;
indent_up();
out << indent() << "return Equals(As_" << (*f_iter)->get_name() << ", other.As_" << (*f_iter)->get_name() << ");" << endl;
indent_down();
}
out << indent() << "default:" << endl;
indent_up();
out << indent() << "return true;" << endl;
indent_down();
scope_down(out);
}
scope_down(out);
out << endl;
out << indent() << "public override int GetHashCode()" << endl;
out << indent() << "{" << endl;
indent_up();
if(target_net_version >= 6) {
out << indent() << "return Isset switch" << endl;
out << indent() << "{" << endl;
indent_up();
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
string null_coalesce(is_nullable_type((*f_iter)->get_type()) ? "?" : "");
out << indent() << (*f_iter)->get_key() << " => As_" << (*f_iter)->get_name() << null_coalesce << ".GetHashCode()";
if( null_coalesce.size() > 0) {
out << " ?? 0";
}
out << "," << endl;
}
out << indent() << "_ => (new ___undefined()).GetHashCode()" << endl;
indent_down();
out << indent() << "};" << endl;
} else {
out << indent() << "switch (Isset)" << endl;
out << indent() << "{" << endl;
indent_up();
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
string null_coalesce(is_nullable_type((*f_iter)->get_type()) ? "?" : "");
out << indent() << "case " << (*f_iter)->get_key() << ":" << endl;
indent_up();
out << indent() << "return As_" << (*f_iter)->get_name() << null_coalesce << ".GetHashCode()";
if( null_coalesce.size() > 0) {
out << " ?? 0";
}
out << ";" << endl;
indent_down();
}
out << indent() << "default:" << endl;
indent_up();
out << indent() << "return (new ___undefined()).GetHashCode();" << endl;
indent_down();
indent_down();
out << indent() << "}" << endl;
}
indent_down();
out << indent() << "}" << endl << endl;
if( ! suppress_deepcopy) {
out << indent() << "public " << tunion->get_name() << " " << DEEP_COPY_METHOD_NAME << "()" << endl;
out << indent() << "{" << endl;
indent_up();
if(target_net_version >= 6) {
out << indent() << "return Isset switch" << endl;
out << indent() << "{" << endl;
indent_up();
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
bool needs_typecast = false;
string suffix("");
string copy_op = get_deep_copy_method_call((*f_iter)->get_type(), false, needs_typecast, suffix);
out << indent() << (*f_iter)->get_key() << " => new " << (*f_iter)->get_name() << "(As_" << (*f_iter)->get_name() << suffix << copy_op << ")," << endl;
}
out << indent() << "_ => new ___undefined()" << endl;
indent_down();
out << indent() << "};" << endl;
} else {
out << indent() << "switch (Isset)" << endl;
out << indent() << "{" << endl;
indent_up();
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
bool needs_typecast = false;
string suffix("");
string copy_op = get_deep_copy_method_call((*f_iter)->get_type(), false, needs_typecast, suffix);
out << indent() << "case " << (*f_iter)->get_key() << ":" << endl;
indent_up();
out << indent() << "return new " << (*f_iter)->get_name() << "(As_" << (*f_iter)->get_name() << suffix << copy_op << ");" << endl;
indent_down();
}
out << indent() << "default:" << endl;
indent_up();
out << indent() << "return new ___undefined();" << endl;
indent_down();
indent_down();
out << indent() << "}" << endl;
}
indent_down();
out << indent() << "}" << endl << endl;
}
out << indent() << "public class ___undefined : " << tunion->get_name() << endl;
out << indent() << "{" << endl;
indent_up();
out << indent() << "public override object" << nullable_suffix() <<" Data { get { return null; } }" << endl
<< indent() << "public ___undefined() : base(0) {}" << endl << endl;
if( ! suppress_deepcopy) {
out << indent() << "public new ___undefined " << DEEP_COPY_METHOD_NAME << "()" << endl;
out << indent() << "{" << endl;
indent_up();
out << indent() << "return new ___undefined();" << endl;
indent_down();
out << indent() << "}" << endl << endl;
}
t_struct undefined_struct(program_,"___undefined");
generate_netstd_struct_equals(out, &undefined_struct);
generate_netstd_struct_hashcode(out, &undefined_struct);
out << indent() << "public override global::System.Threading.Tasks.Task WriteAsync(TProtocol oprot, CancellationToken " << CANCELLATION_TOKEN_NAME << ")" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "throw new TProtocolException( TProtocolException.INVALID_DATA, \"Cannot persist an union type which is not set.\");" << endl;
indent_down();
out << indent() << "}" << endl << endl;
indent_down();
out << indent() << "}" << endl << endl;
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
generate_netstd_union_class(out, tunion, (*f_iter));
}
generate_netstd_union_reader(out, tunion);
indent_down();
out << indent() << "}" << endl << endl;
end_netstd_namespace(out);
}
void t_netstd_generator::generate_netstd_union_class(ostream& out, t_struct* tunion, t_field* tfield)
{
out << indent() << "public " << type_name(tfield->get_type()) << nullable_field_suffix(tfield) << " As_" << tfield->get_name() << endl;
out << indent() << "{" << endl;
indent_up();
out << indent() << "get" << endl;
out << indent() << "{" << endl;
indent_up();
out << indent() << "return (" << tfield->get_key() << " == Isset) && (Data != null)"
<< " ? (" << type_name(tfield->get_type()) << nullable_field_suffix(tfield) << ")Data"
<< " : default"
<< (target_net_version >= 6 ? "" : ("(" + type_name(tfield->get_type()) + ")"))
<< ";" << endl;
indent_down();
out << indent() << "}" << endl;
indent_down();
out << indent() << "}" << endl
<< endl;
out << indent() << "public class " << normalize_name(tfield->get_name()) << " : " << normalize_name(tunion->get_name()) << endl;
out << indent() << "{" << endl;
indent_up();
out << indent() << "private readonly " << type_name(tfield->get_type()) << " _data;" << endl
<< indent() << "public override object" << nullable_suffix() <<" Data { get { return _data; } }" << endl
<< indent() << "public " << normalize_name(tfield->get_name()) << "(" << type_name(tfield->get_type()) << " data) : base("<< tfield->get_key() <<")" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "this._data = data;" << endl;
indent_down();
out << indent() << "}" << endl;
if( ! suppress_deepcopy) {
out << indent() << "public new " << normalize_name(tfield->get_name()) << " " << DEEP_COPY_METHOD_NAME << "()" << endl;
out << indent() << "{" << endl;
indent_up();
bool needs_typecast = false;
string suffix("");
string copy_op = get_deep_copy_method_call(tfield->get_type(), true, needs_typecast, suffix);
out << indent() << "return new " << normalize_name(tfield->get_name()) << "(_data" << copy_op << ");" << endl;
indent_down();
out << indent() << "}" << endl << endl;
}
out << indent() << "public override bool Equals(object" << nullable_suffix() << " that)" << endl;
out << indent() << "{" << endl;
indent_up();
if(target_net_version >= 6) {
out << indent() << "if (that is not " << tunion->get_name() << " other) return false;" << endl;
} else {
out << indent() << "if (!(that is " << tunion->get_name() << " other)) return false;" << endl;
}
out << indent() << "if (ReferenceEquals(this, other)) return true;" << endl;
out << endl;
out << indent() << "return Equals( _data, other.As_" << tfield->get_name() << ");" << endl;
indent_down();
out << indent() << "}" << endl << endl;
out << indent() << "public override int GetHashCode()" << endl;
out << indent() << "{" << endl;
indent_up();
out << indent() << "return _data.GetHashCode();" << endl;
indent_down();
out << indent() << "}" << endl << endl;
out << indent() << "public override async global::System.Threading.Tasks.Task WriteAsync(TProtocol oprot, CancellationToken " << CANCELLATION_TOKEN_NAME << ") {" << endl;
indent_up();
out << indent() << "oprot.IncrementRecursionDepth();" << endl
<< indent() << "try" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "var struc = new TStruct(\"" << tunion->get_name() << "\");" << endl
<< indent() << "await oprot.WriteStructBeginAsync(struc, " << CANCELLATION_TOKEN_NAME << ");" << endl;
out << indent() << "var field = new TField()" << endl;
out << indent() << "{" << endl;
indent_up();
out << indent() << "Name = \"" << tfield->get_name() << "\"," << endl
<< indent() << "Type = " << type_to_enum(tfield->get_type()) << "," << endl
<< indent() << "ID = " << tfield->get_key() << endl;
indent_down();
out << indent() << "};" << endl;
out << indent() << "await oprot.WriteFieldBeginAsync(field, " << CANCELLATION_TOKEN_NAME << ");" << endl;
generate_serialize_field(out, tfield, "_data", true, false);
out << indent() << "await oprot.WriteFieldEndAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "await oprot.WriteFieldStopAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "await oprot.WriteStructEndAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl;
indent_down();
out << indent() << "}" << endl
<< indent() << "finally" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "oprot.DecrementRecursionDepth();" << endl;
indent_down();
out << indent() << "}" << endl;
indent_down();
out << indent() << "}" << endl;
indent_down();
out << indent() << "}" << endl << endl;
}
void t_netstd_generator::generate_netstd_struct_equals(ostream& out, t_struct* tstruct)
{
out << indent() << "public override bool Equals(object" << nullable_suffix() << " that)" << endl
<< indent() << "{" << endl;
indent_up();
if(target_net_version >= 6) {
out << indent() << "if (that is not " << type_name(tstruct,false) << " other) return false;" << endl;
} else {
out << indent() << "if (!(that is " << type_name(tstruct,false) << " other)) return false;" << endl;
}
out << indent() << "if (ReferenceEquals(this, other)) return true;" << endl;
const vector<t_field*>& fields = tstruct->get_members();
vector<t_field*>::const_iterator f_iter;
bool first = true;
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
if (first)
{
first = false;
out << indent() << "return ";
indent_up();
}
else
{
out << endl;
out << indent() << "&& ";
}
if (!field_is_required((*f_iter)))
{
out << "((__isset." << get_isset_name(normalize_name((*f_iter)->get_name())) << " == other.__isset."
<< get_isset_name(normalize_name((*f_iter)->get_name())) << ") && ((!__isset."
<< get_isset_name(normalize_name((*f_iter)->get_name())) << ") || (";
}
t_type* ttype = (*f_iter)->get_type();
if (ttype->is_container() || ttype->is_binary())
{
out << "TCollections.Equals(";
}
else
{
out << "global::System.Object.Equals(";
}
out << prop_name((*f_iter)) << ", other." << prop_name((*f_iter)) << ")";
if (!field_is_required((*f_iter)))
{
out << ")))";
}
}
if (first)
{
out << indent() << "return true;" << endl;
}
else
{
out << ";" << endl;
indent_down();
}
indent_down();
out << indent() << "}" << endl << endl;
}
void t_netstd_generator::generate_netstd_struct_hashcode(ostream& out, t_struct* tstruct)
{
out << indent() << "public override int GetHashCode() {" << endl;
indent_up();
out << indent() << "int hashcode = 157;" << endl;
out << indent() << "unchecked {" << endl;
indent_up();
const vector<t_field*>& fields = tstruct->get_members();
vector<t_field*>::const_iterator f_iter;
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
t_type* ttype = (*f_iter)->get_type();
generate_null_check_begin(out, *f_iter);
out << indent() << "hashcode = (hashcode * 397) + ";
if (ttype->is_container()) {
out << "TCollections.GetHashCode(" << prop_name((*f_iter)) << ")";
}
else {
out << prop_name(*f_iter) << ".GetHashCode()";
}
out << ";" << endl;
generate_null_check_end(out, *f_iter);
}
indent_down();
out << indent() << "}" << endl;
out << indent() << "return hashcode;" << endl;
indent_down();
out << indent() << "}" << endl << endl;
}
void t_netstd_generator::generate_service(t_service* tservice)
{
int ic = indent_count();
string f_service_name = namespace_dir_ + "/" + service_name_ + ".cs";
ofstream_with_content_based_conditional_update f_service;
f_service.open(f_service_name.c_str());
reset_indent();
f_service << autogen_comment() << netstd_type_usings() << netstd_thrift_usings() << endl << endl;
pragmas_and_directives(f_service);
start_netstd_namespace(f_service);
f_service << indent() << "public partial class " << normalize_name(service_name_) << endl
<< indent() << "{" << endl;
indent_up();
generate_service_interface(f_service, tservice);
generate_service_client(f_service, tservice);
generate_service_server(f_service, tservice);
generate_service_helpers(f_service, tservice);
indent_down();
f_service << indent() << "}" << endl;
end_netstd_namespace(f_service);
f_service.close();
indent_validate(ic, "generate_service.");
}
void t_netstd_generator::generate_service_interface(ostream& out, t_service* tservice)
{
string extends = "";
string extends_iface = "";
if (tservice->get_extends() != nullptr)
{
extends = type_name(tservice->get_extends());
extends_iface = " : " + extends + ".IAsync";
}
//out << endl << endl;
generate_netstd_doc(out, tservice);
if (is_wcf_enabled())
{
out << indent() << "[ServiceContract(Namespace=\"" << wcf_namespace_ << "\")]" << endl;
}
prepare_member_name_mapping(tservice);
out << indent() << "public interface IAsync" << extends_iface << endl
<< indent() << "{" << endl;
indent_up();
vector<t_function*> functions = tservice->get_functions();
vector<t_function*>::iterator f_iter;
for (f_iter = functions.begin(); f_iter != functions.end(); ++f_iter)
{
generate_netstd_doc(out, *f_iter);
// if we're using WCF, add the corresponding attributes
if (is_wcf_enabled())
{
out << indent() << "[OperationContract]" << endl;
const vector<t_field*>& xceptions = (*f_iter)->get_xceptions()->get_members();
vector<t_field*>::const_iterator x_iter;
for (x_iter = xceptions.begin(); x_iter != xceptions.end(); ++x_iter)
{
out << indent() << "[FaultContract(typeof(" + type_name((*x_iter)->get_type()) + "Fault))]" << endl;
}
}
generate_deprecation_attribute(out, *f_iter);
out << indent() << function_signature_async(*f_iter) << ";" << endl << endl;
}
indent_down();
out << indent() << "}" << endl << endl;
cleanup_member_name_mapping(tservice);
}
void t_netstd_generator::generate_deprecation_attribute(ostream& out, t_function* func)
{
auto iter = func->annotations_.find("deprecated");
if( func->annotations_.end() != iter) {
out << indent() << "[Obsolete";
// empty annotation values end up with "1" somewhere, ignore these as well
if ((iter->second.back().length() > 0) && (iter->second.back() != "1")) {
out << "(" << make_csharp_string_literal(iter->second.back()) << ")";
}
out << "]" << endl;
}
}
void t_netstd_generator::generate_service_helpers(ostream& out, t_service* tservice)
{
vector<t_function*> functions = tservice->get_functions();
vector<t_function*>::iterator f_iter;
prepare_member_name_mapping(tservice);
out << indent() << "public class InternalStructs" << endl;
out << indent() << "{" << endl;
indent_up();
for (f_iter = functions.begin(); f_iter != functions.end(); ++f_iter)
{
t_struct* ts = (*f_iter)->get_arglist();
collect_extensions_types(ts);
generate_netstd_struct_definition(out, ts, false, true);
generate_function_helpers(out, *f_iter);
}
indent_down();
out << indent() << "}" << endl << endl;
cleanup_member_name_mapping(tservice);
}
void t_netstd_generator::generate_service_client(ostream& out, t_service* tservice)
{
string extends = "";
string extends_client = "";
if (tservice->get_extends() != nullptr)
{
extends = type_name(tservice->get_extends());
extends_client = extends + ".Client, ";
}
else
{
extends_client = "TBaseClient, IDisposable, ";
}
out << endl;
generate_netstd_doc(out, tservice);
prepare_member_name_mapping(tservice);
out << indent() << "public class Client : " << extends_client << "IAsync" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "public Client(TProtocol protocol) : this(protocol, protocol)" << endl
<< indent() << "{" << endl
<< indent() << "}" << endl
<< endl
<< indent() << "public Client(TProtocol inputProtocol, TProtocol outputProtocol) : base(inputProtocol, outputProtocol)" << endl
<< indent() << "{" << endl
<< indent() << "}" << endl
<< endl;
vector<t_function*> functions = tservice->get_functions();
vector<t_function*>::const_iterator functions_iterator;
for (functions_iterator = functions.begin(); functions_iterator != functions.end(); ++functions_iterator)
{
string raw_func_name = (*functions_iterator)->get_name();
string function_name = raw_func_name + (add_async_postfix ? "Async" : "");
// async
generate_deprecation_attribute(out, *functions_iterator);
out << indent() << "public async " << function_signature_async(*functions_iterator, "") << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "await send_" << function_name << "(";
string call_args = argument_list((*functions_iterator)->get_arglist(),false);
if(! call_args.empty()) {
out << call_args << ", ";
}
out << CANCELLATION_TOKEN_NAME << ");" << endl;
if(! (*functions_iterator)->is_oneway()) {
out << indent() << ((*functions_iterator)->get_returntype()->is_void() ? "" : "return ")
<< "await recv_" << function_name << "(" << CANCELLATION_TOKEN_NAME << ");" << endl;
}
indent_down();
out << indent() << "}" << endl << endl;
// async send
generate_deprecation_attribute(out, *functions_iterator);
out << indent() << "public async " << function_signature_async(*functions_iterator, "send_", MODE_NO_RETURN) << endl
<< indent() << "{" << endl;
indent_up();
string tmpvar = tmp("tmp");
string argsname = (*functions_iterator)->get_name() + "_args";
out << indent() << "await OutputProtocol.WriteMessageBeginAsync(new TMessage(\"" << raw_func_name
<< "\", TMessageType." << ((*functions_iterator)->is_oneway() ? "Oneway" : "Call")
<< ", SeqId), " << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << endl
<< indent() << "var " << tmpvar << " = new InternalStructs." << argsname << "() {" << endl;
indent_up();
t_struct* arg_struct = (*functions_iterator)->get_arglist();
collect_extensions_types(arg_struct);
prepare_member_name_mapping(arg_struct);
const vector<t_field*>& fields = arg_struct->get_members();
vector<t_field*>::const_iterator fld_iter;
for (fld_iter = fields.begin(); fld_iter != fields.end(); ++fld_iter)
{
out << indent() << prop_name(*fld_iter) << " = " << normalize_name((*fld_iter)->get_name(),true) << "," << endl;
}
indent_down();
out << indent() << "};" << endl;
out << indent() << endl
<< indent() << "await " << tmpvar << ".WriteAsync(OutputProtocol, " << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "await OutputProtocol.WriteMessageEndAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "await OutputProtocol.Transport.FlushAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl;
indent_down();
out << indent() << "}" << endl << endl;
if (!(*functions_iterator)->is_oneway())
{
// async recv
generate_deprecation_attribute(out, *functions_iterator);
out << indent() << "public async " << function_signature_async(*functions_iterator, "recv_", MODE_NO_ARGS) << endl
<< indent() << "{" << endl;
indent_up();
string resultname = (*functions_iterator)->get_name() + "_result";
t_struct noargs(program_);
t_struct* xs = (*functions_iterator)->get_xceptions();
collect_extensions_types(xs);
prepare_member_name_mapping(xs, xs->get_members(), resultname);
tmpvar = tmp("tmp");
out << indent() << endl
<< indent() << "var " << tmpvar << " = await InputProtocol.ReadMessageBeginAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "if (" << tmpvar << ".Type == TMessageType.Exception)" << endl
<< indent() << "{" << endl;
indent_up();
tmpvar = tmp("tmp");
out << indent() << "var " << tmpvar << " = await TApplicationException.ReadAsync(InputProtocol, " << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "await InputProtocol.ReadMessageEndAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "throw " << tmpvar << ";" << endl;
indent_down();
tmpvar = tmp("tmp");
out << indent() << "}" << endl
<< endl
<< indent() << "var " << tmpvar << " = new InternalStructs." << resultname << "();" << endl
<< indent() << "await " << tmpvar << ".ReadAsync(InputProtocol, " << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "await InputProtocol.ReadMessageEndAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl;
if (!(*functions_iterator)->get_returntype()->is_void())
{
out << indent() << "if (" << tmpvar << ".__isset.success)" << endl
<< indent() << "{" << endl;
indent_up();
string nullable_value = nullable_value_access((*functions_iterator)->get_returntype());
out << indent() << "return " << tmpvar << ".Success" << nullable_value << ";" << endl;
indent_down();
out << indent() << "}" << endl;
}
const vector<t_field*>& xceptions = xs->get_members();
vector<t_field*>::const_iterator x_iter;
for (x_iter = xceptions.begin(); x_iter != xceptions.end(); ++x_iter)
{
out << indent() << "if (" << tmpvar << ".__isset." << get_isset_name(normalize_name((*x_iter)->get_name())) << ")" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "throw " << tmpvar << "." << prop_name(*x_iter) << nullable_value_access((*x_iter)->get_type()) << ";" << endl;
indent_down();
out << indent() << "}" << endl;
}
if (!(*functions_iterator)->get_returntype()->is_void())
{
out << indent() << "throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, \""
<< function_name << " failed: unknown result\");" << endl;
}
cleanup_member_name_mapping(xs);
indent_down();
out << indent() << "}" << endl << endl;
}
cleanup_member_name_mapping(arg_struct);
}
indent_down();
out << indent() << "}" << endl << endl;
cleanup_member_name_mapping(tservice);
}
void t_netstd_generator::generate_service_server(ostream& out, t_service* tservice)
{
vector<t_function*> functions = tservice->get_functions();
vector<t_function*>::iterator f_iter;
string extends = "";
string extends_processor = "";
if (tservice->get_extends() != nullptr)
{
extends = type_name(tservice->get_extends());
extends_processor = extends + ".AsyncProcessor, ";
}
prepare_member_name_mapping(tservice);
out << indent() << "public class AsyncProcessor : " << extends_processor << "ITAsyncProcessor" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "private readonly IAsync _iAsync;" << endl
<< indent() << "private readonly ILogger<AsyncProcessor>" << nullable_suffix() << " _logger;" << endl
<< endl
<< indent() << "public AsyncProcessor(IAsync iAsync, ILogger<AsyncProcessor>" << nullable_suffix() << " logger = default)";
if (!extends.empty())
{
out << " : base(iAsync)";
}
out << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "_iAsync = iAsync ?? throw new ArgumentNullException(nameof(iAsync));" << endl;
out << indent() << "_logger = logger;" << endl;
for (f_iter = functions.begin(); f_iter != functions.end(); ++f_iter)
{
string raw_func_name = (*f_iter)->get_name();
out << indent() << "processMap_[\"" << raw_func_name << "\"] = " << raw_func_name << "_ProcessAsync;" << endl;
}
indent_down();
out << indent() << "}" << endl
<< endl;
if (extends.empty())
{
out << indent() << "protected delegate global::System.Threading.Tasks.Task ProcessFunction(int seqid, TProtocol iprot, TProtocol oprot, CancellationToken " << CANCELLATION_TOKEN_NAME << ");" << endl;
}
if (extends.empty())
{
out << indent() << "protected Dictionary<string, ProcessFunction> processMap_ = ";
if(target_net_version >= 8) {
out << "[];" << endl;
} else if(target_net_version >= 6) {
out << "new();" << endl;
} else {
out << "new Dictionary<string, ProcessFunction>();" << endl;
}
}
out << endl;
if (extends.empty())
{
out << indent() << "public async Task<bool> ProcessAsync(TProtocol iprot, TProtocol oprot)" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "return await ProcessAsync(iprot, oprot, CancellationToken.None);" << endl;
indent_down();
out << indent() << "}" << endl << endl;
out << indent() << "public async Task<bool> ProcessAsync(TProtocol iprot, TProtocol oprot, CancellationToken " << CANCELLATION_TOKEN_NAME << ")" << endl;
}
else
{
out << indent() << "public new async Task<bool> ProcessAsync(TProtocol iprot, TProtocol oprot)" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "return await ProcessAsync(iprot, oprot, CancellationToken.None);" << endl;
indent_down();
out << indent() << "}" << endl << endl;
out << indent() << "public new async Task<bool> ProcessAsync(TProtocol iprot, TProtocol oprot, CancellationToken " << CANCELLATION_TOKEN_NAME << ")" << endl;
}
out << indent() << "{" << endl;
indent_up();
out << indent() << "try" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "var msg = await iprot.ReadMessageBeginAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl
<< endl
<< indent() << "processMap_.TryGetValue(msg.Name, out var fn);" << endl
<< endl
<< indent() << "if (fn == null)" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "await TProtocolUtil.SkipAsync(iprot, TType.Struct, " << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "await iprot.ReadMessageEndAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "var x = new TApplicationException (TApplicationException.ExceptionType.UnknownMethod, \"Invalid method name: '\" + msg.Name + \"'\");" << endl
<< indent() << "await oprot.WriteMessageBeginAsync(new TMessage(msg.Name, TMessageType.Exception, msg.SeqID), " << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "await x.WriteAsync(oprot, " << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "await oprot.WriteMessageEndAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "await oprot.Transport.FlushAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "return true;" << endl;
indent_down();
out << indent() << "}" << endl
<< endl
<< indent() << "await fn(msg.SeqID, iprot, oprot, " << CANCELLATION_TOKEN_NAME << ");" << endl
<< endl;
indent_down();
out << indent() << "}" << endl;
out << indent() << "catch (IOException)" << endl
<< indent() << "{" << endl;
indent_up();
out << indent() << "return false;" << endl;
indent_down();
out << indent() << "}" << endl
<< endl
<< indent() << "return true;" << endl;
indent_down();
out << indent() << "}" << endl << endl;
for (f_iter = functions.begin(); f_iter != functions.end(); ++f_iter)
{
generate_process_function_async(out, tservice, *f_iter);
}
indent_down();
out << indent() << "}" << endl << endl;
cleanup_member_name_mapping(tservice);
}
void t_netstd_generator::generate_function_helpers(ostream& out, t_function* tfunction)
{
if (tfunction->is_oneway())
{
return;
}
t_struct result(program_, tfunction->get_name() + "_result");
t_field success(tfunction->get_returntype(), "success", 0);
if (!tfunction->get_returntype()->is_void())
{
result.append(&success);
}
t_struct* xs = tfunction->get_xceptions();
const vector<t_field*>& fields = xs->get_members();
vector<t_field*>::const_iterator f_iter;
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
result.append(*f_iter);
}
collect_extensions_types(&result);
generate_netstd_struct_definition(out, &result, false, true, true);
}
void t_netstd_generator::generate_process_function_async(ostream& out, t_service* tservice, t_function* tfunction)
{
(void)tservice;
out << indent() << "public async global::System.Threading.Tasks.Task " << tfunction->get_name()
<< "_ProcessAsync(int seqid, TProtocol iprot, TProtocol oprot, CancellationToken " << CANCELLATION_TOKEN_NAME << ")" << endl
<< indent() << "{" << endl;
indent_up();
string argsname = tfunction->get_name() + "_args";
string resultname = tfunction->get_name() + "_result";
string args = tmp("tmp");
out << indent() << "var " << args << " = new InternalStructs." << argsname << "();" << endl
<< indent() << "await " << args << ".ReadAsync(iprot, " << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "await iprot.ReadMessageEndAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl;
string tmpResult = tmp("tmp");
if (!tfunction->is_oneway())
{
out << indent() << "var " << tmpResult << " = new InternalStructs." << resultname << "();" << endl;
}
out << indent() << "try" << endl
<< indent() << "{" << endl;
indent_up();
t_struct* xs = tfunction->get_xceptions();
const vector<t_field*>& xceptions = xs->get_members();
if (xceptions.size() > 0)
{
out << indent() << "try" << endl
<< indent() << "{" << endl;
indent_up();
}
t_struct* arg_struct = tfunction->get_arglist();
const vector<t_field*>& fields = arg_struct->get_members();
vector<t_field*>::const_iterator f_iter;
bool is_deprecated = (tfunction->annotations_.end() != tfunction->annotations_.find("deprecated"));
if( is_deprecated) {
out << indent() << "#pragma warning disable CS0618,CS0612" << endl;
}
out << indent();
if (!tfunction->is_oneway() && !tfunction->get_returntype()->is_void())
{
out << tmpResult << ".Success = ";
}
out << "await _iAsync." << func_name(normalize_name(tfunction->get_name()) + (add_async_postfix ? "Async" : "")) << "(";
bool first = true;
collect_extensions_types(arg_struct);
prepare_member_name_mapping(arg_struct);
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
if (first)
{
first = false;
}
else
{
out << ", ";
}
out << args << "." << prop_name(*f_iter);
}
cleanup_member_name_mapping(arg_struct);
if (!first)
{
out << ", ";
}
out << "" << CANCELLATION_TOKEN_NAME << ");" << endl;
if( is_deprecated) {
out << indent() << "#pragma warning restore CS0618,CS0612" << endl;
}
vector<t_field*>::const_iterator x_iter;
collect_extensions_types(xs);
prepare_member_name_mapping(xs, xs->get_members(), resultname);
if (xceptions.size() > 0)
{
indent_down();
out << indent() << "}" << endl;
for (x_iter = xceptions.begin(); x_iter != xceptions.end(); ++x_iter)
{
string tmpex = tmp("tmp");
out << indent() << "catch (" << type_name((*x_iter)->get_type()) << " " << tmpex << ")" << endl
<< indent() << "{" << endl;
if (!tfunction->is_oneway())
{
indent_up();
out << indent() << tmpResult << "." << prop_name(*x_iter) << " = " << tmpex << ";" << endl;
indent_down();
}
out << indent() << "}" << endl;
}
}
if (!tfunction->is_oneway())
{
out << indent() << "await oprot.WriteMessageBeginAsync(new TMessage(\""
<< tfunction->get_name() << "\", TMessageType.Reply, seqid), " << CANCELLATION_TOKEN_NAME << "); " << endl
<< indent() << "await " << tmpResult << ".WriteAsync(oprot, " << CANCELLATION_TOKEN_NAME << ");" << endl;
}
indent_down();
cleanup_member_name_mapping(xs);
string tmpex = tmp("tmp");
out << indent() << "}" << endl
<< indent() << "catch (TTransportException)" << endl
<< indent() << "{" << endl
<< indent() << " throw;" << endl
<< indent() << "}" << endl
<< indent() << "catch (Exception " << tmpex << ")" << endl
<< indent() << "{" << endl;
indent_up();
string tmpvar = tmp("tmp");
out << indent() << "var " << tmpvar << " = $\"Error occurred in {GetType().FullName}: {" << tmpex << ".Message}\";" << endl;
out << indent() << "if(_logger != null)" << endl;
indent_up();
out << indent() << "_logger.LogError(\"{Exception}, {Message}\", " << tmpex << ", " << tmpvar << ");" << endl;
indent_down();
out << indent() << "else" << endl;
indent_up();
out << indent() << "Console.Error.WriteLine(" << tmpvar << ");" << endl;
indent_down();
if (tfunction->is_oneway())
{
indent_down();
out << indent() << "}" << endl;
}
else
{
tmpvar = tmp("tmp");
out << indent() << "var " << tmpvar << " = new TApplicationException(TApplicationException.ExceptionType.InternalError,\" Internal error.\");" << endl
<< indent() << "await oprot.WriteMessageBeginAsync(new TMessage(\"" << tfunction->get_name()
<< "\", TMessageType.Exception, seqid), " << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "await " << tmpvar << ".WriteAsync(oprot, " << CANCELLATION_TOKEN_NAME << ");" << endl;
indent_down();
out << indent() << "}" << endl
<< indent() << "await oprot.WriteMessageEndAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl
<< indent() << "await oprot.Transport.FlushAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl;
}
indent_down();
out << indent() << "}" << endl << endl;
}
void t_netstd_generator::generate_netstd_union_reader(ostream& out, t_struct* tunion)
{
// Thanks to THRIFT-1768, we don't need to check for required fields in the union
const vector<t_field*>& fields = tunion->get_members();
vector<t_field*>::const_iterator f_iter;
out << indent() << "public static async Task<" << tunion->get_name() << "> ReadAsync(TProtocol iprot, CancellationToken " << CANCELLATION_TOKEN_NAME << ")" << endl;
scope_up(out);
out << indent() << "iprot.IncrementRecursionDepth();" << endl;
out << indent() << "try" << endl;
scope_up(out);
string tmpRetval = tmp("tmp");
out << indent() << tunion->get_name() << " " << tmpRetval << ";" << endl;
out << indent() << "await iprot.ReadStructBeginAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl;
out << indent() << "TField field = await iprot.ReadFieldBeginAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl;
// we cannot have the first field be a stop -- we must have a single field defined
out << indent() << "if (field.Type == TType.Stop)" << endl;
scope_up(out);
out << indent() << "await iprot.ReadFieldEndAsync(" << CANCELLATION_TOKEN_NAME << ");" << endl;
out << indent() << "" << tmpRetval << " = new ___undefined();" << endl;
scope_down(out);
out << indent() << "else" << endl;
scope_up(out);
out << indent() << "switch (field.ID)" << endl;
scope_up(out);
for (f_iter = fields.begin(); f_iter != fields.end(); ++f_iter)
{
out << indent() << "case " << (*f_iter)->get_key() << ":" <<