2018-02-26 19:08:47 +01:00
|
|
|
//
|
2020-01-01 02:23:48 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2020
|
2018-02-26 19:08:47 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "td/utils/port/CxCli.h"
|
|
|
|
|
2020-06-06 21:51:45 +02:00
|
|
|
#pragma managed(push, off)
|
2018-02-26 19:08:47 +01:00
|
|
|
#include "td/telegram/td_api.h"
|
|
|
|
#include "td/telegram/td_api.hpp"
|
2020-06-06 21:51:45 +02:00
|
|
|
#pragma managed(pop)
|
2018-02-26 19:08:47 +01:00
|
|
|
|
2018-02-28 02:11:29 +01:00
|
|
|
namespace Telegram {
|
|
|
|
namespace Td {
|
2018-02-28 19:38:21 +01:00
|
|
|
namespace Api {
|
2018-02-28 02:11:29 +01:00
|
|
|
|
2018-02-26 19:08:47 +01:00
|
|
|
using namespace CxCli;
|
|
|
|
|
|
|
|
public ref class NativeObject sealed {
|
|
|
|
public:
|
|
|
|
virtual ~NativeObject() {
|
|
|
|
if (data != nullptr) {
|
|
|
|
get_object_ptr();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
internal:
|
|
|
|
explicit NativeObject(td::td_api::BaseObject *fromData) {
|
|
|
|
data = static_cast<void *>(fromData);
|
|
|
|
}
|
|
|
|
td::td_api::object_ptr<td::td_api::BaseObject> get_object_ptr() {
|
|
|
|
auto res = static_cast<td::td_api::BaseObject *>(data);
|
|
|
|
data = nullptr;
|
|
|
|
return td::td_api::object_ptr<td::td_api::BaseObject>(res);
|
|
|
|
}
|
|
|
|
void *data;
|
|
|
|
};
|
|
|
|
|
|
|
|
public interface class BaseObject {
|
|
|
|
public:
|
|
|
|
virtual NativeObject^ ToUnmanaged();
|
|
|
|
};
|
|
|
|
|
2018-02-28 11:25:07 +01:00
|
|
|
// from unmanaged
|
2018-02-26 19:08:47 +01:00
|
|
|
inline bool FromUnmanaged(bool val) {
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int32 FromUnmanaged(int32 val) {
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int64 FromUnmanaged(int64 val) {
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline float64 FromUnmanaged(float64 val) {
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline String^ FromUnmanaged(const std::string &from) {
|
|
|
|
return string_from_unmanaged(from);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline auto CLRCALL BytesFromUnmanaged(const std::string &from) {
|
2020-04-08 21:21:42 +02:00
|
|
|
Array<BYTE>^ res = REF_NEW Vector<BYTE>(static_cast<ArrayIndexType>(from.size()));
|
2018-02-26 19:08:47 +01:00
|
|
|
ArrayIndexType i = 0;
|
|
|
|
for (auto b : from) {
|
|
|
|
ArraySet(res, i++, b);
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2018-02-28 11:25:07 +01:00
|
|
|
template <class FromT>
|
2018-02-26 19:08:47 +01:00
|
|
|
auto CLRCALL FromUnmanaged(std::vector<FromT> &vec) {
|
|
|
|
using ToT = decltype(FromUnmanaged(vec[0]));
|
2018-03-15 17:25:51 +01:00
|
|
|
Array<ToT>^ res = REF_NEW Vector<ToT>(static_cast<ArrayIndexType>(vec.size()));
|
2018-02-26 19:08:47 +01:00
|
|
|
ArrayIndexType i = 0;
|
|
|
|
for (auto &from : vec) {
|
|
|
|
ArraySet(res, i++, FromUnmanaged(from));
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2018-05-11 12:53:49 +02:00
|
|
|
inline auto CLRCALL BytesFromUnmanaged(const std::vector<std::string> &vec) {
|
|
|
|
using ToT = decltype(BytesFromUnmanaged(vec[0]));
|
|
|
|
Array<ToT>^ res = REF_NEW Vector<ToT>(static_cast<ArrayIndexType>(vec.size()));
|
|
|
|
ArrayIndexType i = 0;
|
|
|
|
for (auto &from : vec) {
|
|
|
|
ArraySet(res, i++, BytesFromUnmanaged(from));
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2018-02-26 19:08:47 +01:00
|
|
|
template <class T>
|
|
|
|
auto CLRCALL FromUnmanaged(td::td_api::object_ptr<T> &from) -> decltype(FromUnmanaged(*from.get())) {
|
|
|
|
if (!from) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
return FromUnmanaged(*from.get());
|
|
|
|
}
|
|
|
|
|
2018-09-03 13:19:14 +02:00
|
|
|
#if TD_CLI
|
|
|
|
template <class ResT>
|
|
|
|
ref class CallFromUnmanagedRes {
|
|
|
|
public:
|
|
|
|
[System::ThreadStaticAttribute]
|
|
|
|
static property ResT res;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class ResT>
|
|
|
|
struct CallFromUnmanaged {
|
|
|
|
template <class T>
|
|
|
|
void operator()(T &val) const {
|
|
|
|
CallFromUnmanagedRes<ResT>::res = FromUnmanaged(val);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2018-09-03 11:47:32 +02:00
|
|
|
template <class ResT, class T>
|
2018-09-14 20:41:03 +02:00
|
|
|
ResT DoFromUnmanaged(T &from) {
|
2018-09-03 13:19:14 +02:00
|
|
|
#if TD_WINRT
|
2018-09-03 11:47:32 +02:00
|
|
|
ResT res;
|
|
|
|
downcast_call(from, [&](auto &from_downcasted) {
|
|
|
|
res = FromUnmanaged(from_downcasted);
|
|
|
|
});
|
|
|
|
return res;
|
2018-09-03 13:19:14 +02:00
|
|
|
#elif TD_CLI
|
|
|
|
CallFromUnmanaged<ResT> res;
|
|
|
|
downcast_call(from, res);
|
|
|
|
return CallFromUnmanagedRes<ResT>::res;
|
|
|
|
#endif
|
2018-09-03 11:47:32 +02:00
|
|
|
}
|
2018-02-26 19:08:47 +01:00
|
|
|
|
|
|
|
inline BaseObject^ FromUnmanaged(td::td_api::Function &from) {
|
2018-09-03 11:47:32 +02:00
|
|
|
return DoFromUnmanaged<BaseObject^>(from);
|
2018-02-26 19:08:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
inline BaseObject^ FromUnmanaged(td::td_api::Object &from) {
|
2018-09-03 11:47:32 +02:00
|
|
|
return DoFromUnmanaged<BaseObject^>(from);
|
2018-02-26 19:08:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// to unmanaged
|
|
|
|
inline bool ToUnmanaged(bool val) {
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
inline int32 ToUnmanaged(int32 val) {
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline int64 ToUnmanaged(int64 val) {
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline float64 ToUnmanaged(float64 val) {
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline std::string ToUnmanaged(String ^from) {
|
|
|
|
return string_to_unmanaged(from);
|
|
|
|
}
|
|
|
|
|
2020-04-08 21:21:42 +02:00
|
|
|
inline std::string ToUnmanaged(Array<BYTE>^ from) {
|
2018-02-26 19:08:47 +01:00
|
|
|
if (!from) {
|
|
|
|
return std::string();
|
|
|
|
}
|
|
|
|
|
|
|
|
ArrayIndexType size = ArraySize(from);
|
|
|
|
std::string res(size, '\0');
|
|
|
|
for (ArrayIndexType i = 0; i < size; i++) {
|
|
|
|
res[i] = static_cast<char>(ArrayGet(from, i));
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
template <class FromT>
|
|
|
|
auto ToUnmanaged(Array<FromT>^ from) {
|
|
|
|
std::vector<decltype(ToUnmanaged(ArrayGet(from, 0)))> res;
|
|
|
|
if (from && ArraySize(from)) {
|
|
|
|
ArrayIndexType size = ArraySize(from);
|
|
|
|
res.reserve(size);
|
|
|
|
for (ArrayIndexType i = 0; i < size; i++) {
|
|
|
|
res.push_back(ToUnmanaged(ArrayGet(from, i)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline NativeObject^ ToUnmanaged(BaseObject^ from) {
|
|
|
|
if (!from) {
|
|
|
|
return REF_NEW NativeObject(nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
return from->ToUnmanaged();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline String^ ToString(BaseObject^ from) {
|
|
|
|
return string_from_unmanaged(td::td_api::to_string(ToUnmanaged(from)->get_object_ptr()));
|
|
|
|
}
|
|
|
|
|
2018-02-28 19:38:21 +01:00
|
|
|
} // namespace Api
|
2018-02-28 02:11:29 +01:00
|
|
|
} // namespace Td
|
|
|
|
} // namespace Telegram
|