#include <grpc/support/port_platform.h>
#include "src/core/lib/iomgr/port.h"
#ifdef GRPC_CFSTREAM_CLIENT
#include <CoreFoundation/CoreFoundation.h>
#include <netinet/in.h>
#include <string.h>
#include <grpc/event_engine/endpoint_config.h>
#include <grpc/support/alloc.h>
#include <grpc/support/log.h>
#include <grpc/support/sync.h>
#include "src/core/lib/address_utils/sockaddr_utils.h"
#include "src/core/lib/gprpp/crash.h"
#include "src/core/lib/gprpp/host_port.h"
#include "src/core/lib/iomgr/cfstream_handle.h"
#include "src/core/lib/iomgr/closure.h"
#include "src/core/lib/iomgr/endpoint_cfstream.h"
#include "src/core/lib/iomgr/error.h"
#include "src/core/lib/iomgr/error_cfstream.h"
#include "src/core/lib/iomgr/tcp_client.h"
#include "src/core/lib/iomgr/timer.h"
extern grpc_core::TraceFlag grpc_tcp_trace;
struct CFStreamConnect {
gpr_mu mu;
gpr_refcount refcount;
CFReadStreamRef read_stream;
CFWriteStreamRef write_stream;
CFStreamHandle* stream_handle;
grpc_timer alarm;
grpc_closure on_alarm;
grpc_closure on_open;
bool read_stream_open;
bool write_stream_open;
bool failed;
grpc_closure* closure;
grpc_endpoint** endpoint;
int refs;
std::string addr_name;
};
static void CFStreamConnectCleanup(CFStreamConnect* connect) {
CFSTREAM_HANDLE_UNREF(connect->stream_handle, "async connect clean up");
CFRelease(connect->read_stream);
CFRelease(connect->write_stream);
gpr_mu_destroy(&connect->mu);
delete connect;
}
static void OnAlarm(void* arg, grpc_error_handle error) {
CFStreamConnect* connect = static_cast<CFStreamConnect*>(arg);
if (grpc_tcp_trace.enabled()) {
gpr_log(GPR_DEBUG, "CLIENT_CONNECT :%p OnAlarm, error:%s", connect,
grpc_core::StatusToString(error).c_str());
}
gpr_mu_lock(&connect->mu);
grpc_closure* closure = connect->closure;
connect->closure = nil;
const bool done = (--connect->refs == 0);
gpr_mu_unlock(&connect->mu);
if (done) {
CFStreamConnectCleanup(connect);
} else {
grpc_error_handle error = GRPC_ERROR_CREATE("connect() timed out");
grpc_core::ExecCtx::Run(DEBUG_LOCATION, closure, error);
}
}
static void OnOpen(void* arg, grpc_error_handle error) {
CFStreamConnect* connect = static_cast<CFStreamConnect*>(arg);
if (grpc_tcp_trace.enabled()) {
gpr_log(GPR_DEBUG, "CLIENT_CONNECT :%p OnOpen, error:%s", connect,
grpc_core::StatusToString(error).c_str());
}
gpr_mu_lock(&connect->mu);
grpc_timer_cancel(&connect->alarm);
grpc_closure* closure = connect->closure;
connect->closure = nil;
bool done = (--connect->refs == 0);
grpc_endpoint** endpoint = connect->endpoint;
if (done) {
gpr_mu_unlock(&connect->mu);
CFStreamConnectCleanup(connect);
} else {
if (error.ok()) {
CFErrorRef stream_error = CFReadStreamCopyError(connect->read_stream);
if (stream_error == NULL) {
stream_error = CFWriteStreamCopyError(connect->write_stream);
}
if (stream_error) {
error = GRPC_ERROR_CREATE_FROM_CFERROR(stream_error, "connect() error");
CFRelease(stream_error);
}
if (error.ok()) {
*endpoint = grpc_cfstream_endpoint_create(
connect->read_stream, connect->write_stream,
connect->addr_name.c_str(), connect->stream_handle);
}
}
gpr_mu_unlock(&connect->mu);
grpc_core::ExecCtx::Run(DEBUG_LOCATION, closure, error);
}
}
static void ParseResolvedAddress(const grpc_resolved_address* addr,
CFStringRef* host, int* port) {
std::string host_port = grpc_sockaddr_to_string(addr, true).value();
std::string host_string;
std::string port_string;
grpc_core::SplitHostPort(host_port, &host_string, &port_string);
*host = CFStringCreateWithCString(NULL, host_string.c_str(),
kCFStringEncodingUTF8);
*port = grpc_sockaddr_get_port(addr);
}
static int64_t CFStreamClientConnect(
grpc_closure* closure, grpc_endpoint** ep,
grpc_pollset_set* interested_parties,
const grpc_event_engine::experimental::EndpointConfig& ,
const grpc_resolved_address* resolved_addr, grpc_core::Timestamp deadline) {
auto addr_uri = grpc_sockaddr_to_uri(resolved_addr);
if (!addr_uri.ok()) {
grpc_error_handle error = GRPC_ERROR_CREATE(addr_uri.status().ToString());
grpc_core::ExecCtx::Run(DEBUG_LOCATION, closure, error);
return 0;
}
CFStreamConnect* connect = new CFStreamConnect();
connect->closure = closure;
connect->endpoint = ep;
connect->addr_name = addr_uri.value();
connect->refs = 2;
gpr_ref_init(&connect->refcount, 1);
gpr_mu_init(&connect->mu);
if (grpc_tcp_trace.enabled()) {
gpr_log(GPR_DEBUG, "CLIENT_CONNECT: %p, %s: asynchronously connecting",
connect, connect->addr_name.c_str());
}
CFReadStreamRef read_stream;
CFWriteStreamRef write_stream;
CFStringRef host;
int port;
ParseResolvedAddress(resolved_addr, &host, &port);
CFStreamCreatePairWithSocketToHost(NULL, host, port, &read_stream,
&write_stream);
CFRelease(host);
connect->read_stream = read_stream;
connect->write_stream = write_stream;
connect->stream_handle =
CFStreamHandle::CreateStreamHandle(read_stream, write_stream);
GRPC_CLOSURE_INIT(&connect->on_open, OnOpen, static_cast<void*>(connect),
grpc_schedule_on_exec_ctx);
connect->stream_handle->NotifyOnOpen(&connect->on_open);
GRPC_CLOSURE_INIT(&connect->on_alarm, OnAlarm, connect,
grpc_schedule_on_exec_ctx);
gpr_mu_lock(&connect->mu);
CFReadStreamOpen(read_stream);
CFWriteStreamOpen(write_stream);
grpc_timer_init(&connect->alarm, deadline, &connect->on_alarm);
gpr_mu_unlock(&connect->mu);
return 0;
}
static bool CFStreamClientCancelConnect(int64_t ) {
return false;
}
grpc_tcp_client_vtable grpc_cfstream_client_vtable = {
CFStreamClientConnect, CFStreamClientCancelConnect};
#endif