parent
fb6e13b1b5
commit
fb349b9f71
33 changed files with 1054 additions and 3715 deletions
@ -1,233 +0,0 @@ |
|||||||
/*
|
|
||||||
* |
|
||||||
* Copyright 2015-2016, Google Inc. |
|
||||||
* All rights reserved. |
|
||||||
* |
|
||||||
* Redistribution and use in source and binary forms, with or without |
|
||||||
* modification, are permitted provided that the following conditions are |
|
||||||
* met: |
|
||||||
* |
|
||||||
* * Redistributions of source code must retain the above copyright |
|
||||||
* notice, this list of conditions and the following disclaimer. |
|
||||||
* * Redistributions in binary form must reproduce the above |
|
||||||
* copyright notice, this list of conditions and the following disclaimer |
|
||||||
* in the documentation and/or other materials provided with the |
|
||||||
* distribution. |
|
||||||
* * Neither the name of Google Inc. nor the names of its |
|
||||||
* contributors may be used to endorse or promote products derived from |
|
||||||
* this software without specific prior written permission. |
|
||||||
* |
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
||||||
* |
|
||||||
*/ |
|
||||||
|
|
||||||
#include "src/core/channel/client_uchannel.h" |
|
||||||
|
|
||||||
#include <string.h> |
|
||||||
|
|
||||||
#include "src/core/census/grpc_filter.h" |
|
||||||
#include "src/core/channel/channel_args.h" |
|
||||||
#include "src/core/channel/client_channel.h" |
|
||||||
#include "src/core/channel/compress_filter.h" |
|
||||||
#include "src/core/channel/subchannel_call_holder.h" |
|
||||||
#include "src/core/iomgr/iomgr.h" |
|
||||||
#include "src/core/support/string.h" |
|
||||||
#include "src/core/surface/channel.h" |
|
||||||
#include "src/core/transport/connectivity_state.h" |
|
||||||
|
|
||||||
#include <grpc/support/alloc.h> |
|
||||||
#include <grpc/support/log.h> |
|
||||||
#include <grpc/support/sync.h> |
|
||||||
#include <grpc/support/useful.h> |
|
||||||
|
|
||||||
/** Microchannel (uchannel) implementation: a lightweight channel without any
|
|
||||||
* load-balancing mechanisms meant for communication from within the core. */ |
|
||||||
|
|
||||||
typedef struct client_uchannel_channel_data { |
|
||||||
/** master channel - the grpc_channel instance that ultimately owns
|
|
||||||
this channel_data via its channel stack. |
|
||||||
We occasionally use this to bump the refcount on the master channel |
|
||||||
to keep ourselves alive through an asynchronous operation. */ |
|
||||||
grpc_channel_stack *owning_stack; |
|
||||||
|
|
||||||
/** connectivity state being tracked */ |
|
||||||
grpc_connectivity_state_tracker state_tracker; |
|
||||||
|
|
||||||
/** the subchannel wrapped by the microchannel */ |
|
||||||
grpc_connected_subchannel *connected_subchannel; |
|
||||||
|
|
||||||
/** the callback used to stay subscribed to subchannel connectivity
|
|
||||||
* notifications */ |
|
||||||
grpc_closure connectivity_cb; |
|
||||||
|
|
||||||
/** the current connectivity state of the wrapped subchannel */ |
|
||||||
grpc_connectivity_state subchannel_connectivity; |
|
||||||
|
|
||||||
gpr_mu mu_state; |
|
||||||
} channel_data; |
|
||||||
|
|
||||||
typedef grpc_subchannel_call_holder call_data; |
|
||||||
|
|
||||||
static void monitor_subchannel(grpc_exec_ctx *exec_ctx, void *arg, |
|
||||||
bool iomgr_success) { |
|
||||||
channel_data *chand = arg; |
|
||||||
grpc_connectivity_state_set(exec_ctx, &chand->state_tracker, |
|
||||||
chand->subchannel_connectivity, |
|
||||||
"uchannel_monitor_subchannel"); |
|
||||||
grpc_connected_subchannel_notify_on_state_change( |
|
||||||
exec_ctx, chand->connected_subchannel, NULL, |
|
||||||
&chand->subchannel_connectivity, &chand->connectivity_cb); |
|
||||||
} |
|
||||||
|
|
||||||
static char *cuc_get_peer(grpc_exec_ctx *exec_ctx, grpc_call_element *elem) { |
|
||||||
return grpc_subchannel_call_holder_get_peer(exec_ctx, elem->call_data); |
|
||||||
} |
|
||||||
|
|
||||||
static void cuc_start_transport_stream_op(grpc_exec_ctx *exec_ctx, |
|
||||||
grpc_call_element *elem, |
|
||||||
grpc_transport_stream_op *op) { |
|
||||||
GRPC_CALL_LOG_OP(GPR_INFO, elem, op); |
|
||||||
grpc_subchannel_call_holder_perform_op(exec_ctx, elem->call_data, op); |
|
||||||
} |
|
||||||
|
|
||||||
static void cuc_start_transport_op(grpc_exec_ctx *exec_ctx, |
|
||||||
grpc_channel_element *elem, |
|
||||||
grpc_transport_op *op) { |
|
||||||
channel_data *chand = elem->channel_data; |
|
||||||
|
|
||||||
grpc_exec_ctx_enqueue(exec_ctx, op->on_consumed, true, NULL); |
|
||||||
|
|
||||||
GPR_ASSERT(op->set_accept_stream == false); |
|
||||||
GPR_ASSERT(op->bind_pollset == NULL); |
|
||||||
|
|
||||||
if (op->on_connectivity_state_change != NULL) { |
|
||||||
grpc_connectivity_state_notify_on_state_change( |
|
||||||
exec_ctx, &chand->state_tracker, op->connectivity_state, |
|
||||||
op->on_connectivity_state_change); |
|
||||||
op->on_connectivity_state_change = NULL; |
|
||||||
op->connectivity_state = NULL; |
|
||||||
} |
|
||||||
|
|
||||||
if (op->disconnect) { |
|
||||||
grpc_connectivity_state_set(exec_ctx, &chand->state_tracker, |
|
||||||
GRPC_CHANNEL_FATAL_FAILURE, "disconnect"); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
static int cuc_pick_subchannel(grpc_exec_ctx *exec_ctx, void *arg, |
|
||||||
grpc_metadata_batch *initial_metadata, |
|
||||||
grpc_connected_subchannel **connected_subchannel, |
|
||||||
grpc_closure *on_ready) { |
|
||||||
channel_data *chand = arg; |
|
||||||
GPR_ASSERT(initial_metadata != NULL); |
|
||||||
*connected_subchannel = chand->connected_subchannel; |
|
||||||
return 1; |
|
||||||
} |
|
||||||
|
|
||||||
/* Constructor for call_data */ |
|
||||||
static void cuc_init_call_elem(grpc_exec_ctx *exec_ctx, grpc_call_element *elem, |
|
||||||
grpc_call_element_args *args) { |
|
||||||
grpc_subchannel_call_holder_init(elem->call_data, cuc_pick_subchannel, |
|
||||||
elem->channel_data, args->call_stack); |
|
||||||
} |
|
||||||
|
|
||||||
/* Destructor for call_data */ |
|
||||||
static void cuc_destroy_call_elem(grpc_exec_ctx *exec_ctx, |
|
||||||
grpc_call_element *elem) { |
|
||||||
grpc_subchannel_call_holder_destroy(exec_ctx, elem->call_data); |
|
||||||
} |
|
||||||
|
|
||||||
/* Constructor for channel_data */ |
|
||||||
static void cuc_init_channel_elem(grpc_exec_ctx *exec_ctx, |
|
||||||
grpc_channel_element *elem, |
|
||||||
grpc_channel_element_args *args) { |
|
||||||
channel_data *chand = elem->channel_data; |
|
||||||
memset(chand, 0, sizeof(*chand)); |
|
||||||
grpc_closure_init(&chand->connectivity_cb, monitor_subchannel, chand); |
|
||||||
GPR_ASSERT(args->is_last); |
|
||||||
GPR_ASSERT(elem->filter == &grpc_client_uchannel_filter); |
|
||||||
chand->owning_stack = args->channel_stack; |
|
||||||
grpc_connectivity_state_init(&chand->state_tracker, GRPC_CHANNEL_IDLE, |
|
||||||
"client_uchannel"); |
|
||||||
gpr_mu_init(&chand->mu_state); |
|
||||||
} |
|
||||||
|
|
||||||
/* Destructor for channel_data */ |
|
||||||
static void cuc_destroy_channel_elem(grpc_exec_ctx *exec_ctx, |
|
||||||
grpc_channel_element *elem) { |
|
||||||
channel_data *chand = elem->channel_data; |
|
||||||
/* cancel subscription */ |
|
||||||
grpc_connected_subchannel_notify_on_state_change( |
|
||||||
exec_ctx, chand->connected_subchannel, NULL, NULL, |
|
||||||
&chand->connectivity_cb); |
|
||||||
grpc_connectivity_state_destroy(exec_ctx, &chand->state_tracker); |
|
||||||
gpr_mu_destroy(&chand->mu_state); |
|
||||||
GRPC_CONNECTED_SUBCHANNEL_UNREF(exec_ctx, chand->connected_subchannel, |
|
||||||
"uchannel"); |
|
||||||
} |
|
||||||
|
|
||||||
static void cuc_set_pollset(grpc_exec_ctx *exec_ctx, grpc_call_element *elem, |
|
||||||
grpc_pollset *pollset) { |
|
||||||
call_data *calld = elem->call_data; |
|
||||||
calld->pollset = pollset; |
|
||||||
} |
|
||||||
|
|
||||||
const grpc_channel_filter grpc_client_uchannel_filter = { |
|
||||||
cuc_start_transport_stream_op, cuc_start_transport_op, sizeof(call_data), |
|
||||||
cuc_init_call_elem, cuc_set_pollset, cuc_destroy_call_elem, |
|
||||||
sizeof(channel_data), cuc_init_channel_elem, cuc_destroy_channel_elem, |
|
||||||
cuc_get_peer, "client-uchannel", |
|
||||||
}; |
|
||||||
|
|
||||||
grpc_connectivity_state grpc_client_uchannel_check_connectivity_state( |
|
||||||
grpc_exec_ctx *exec_ctx, grpc_channel_element *elem, int try_to_connect) { |
|
||||||
channel_data *chand = elem->channel_data; |
|
||||||
grpc_connectivity_state out; |
|
||||||
gpr_mu_lock(&chand->mu_state); |
|
||||||
out = grpc_connectivity_state_check(&chand->state_tracker); |
|
||||||
gpr_mu_unlock(&chand->mu_state); |
|
||||||
return out; |
|
||||||
} |
|
||||||
|
|
||||||
void grpc_client_uchannel_watch_connectivity_state( |
|
||||||
grpc_exec_ctx *exec_ctx, grpc_channel_element *elem, grpc_pollset *pollset, |
|
||||||
grpc_connectivity_state *state, grpc_closure *on_complete) { |
|
||||||
channel_data *chand = elem->channel_data; |
|
||||||
gpr_mu_lock(&chand->mu_state); |
|
||||||
grpc_connectivity_state_notify_on_state_change( |
|
||||||
exec_ctx, &chand->state_tracker, state, on_complete); |
|
||||||
gpr_mu_unlock(&chand->mu_state); |
|
||||||
} |
|
||||||
|
|
||||||
grpc_channel *grpc_client_uchannel_create(grpc_subchannel *subchannel, |
|
||||||
grpc_channel_args *args) { |
|
||||||
grpc_channel *channel = NULL; |
|
||||||
grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT; |
|
||||||
|
|
||||||
channel = |
|
||||||
grpc_channel_create(&exec_ctx, NULL, args, GRPC_CLIENT_UCHANNEL, NULL); |
|
||||||
|
|
||||||
return channel; |
|
||||||
} |
|
||||||
|
|
||||||
void grpc_client_uchannel_set_connected_subchannel( |
|
||||||
grpc_channel *uchannel, grpc_connected_subchannel *connected_subchannel) { |
|
||||||
grpc_channel_element *elem = |
|
||||||
grpc_channel_stack_last_element(grpc_channel_get_channel_stack(uchannel)); |
|
||||||
channel_data *chand = elem->channel_data; |
|
||||||
GPR_ASSERT(elem->filter == &grpc_client_uchannel_filter); |
|
||||||
gpr_mu_lock(&chand->mu_state); |
|
||||||
chand->connected_subchannel = connected_subchannel; |
|
||||||
GRPC_CONNECTED_SUBCHANNEL_REF(connected_subchannel, "uchannel"); |
|
||||||
gpr_mu_unlock(&chand->mu_state); |
|
||||||
} |
|
@ -1,60 +0,0 @@ |
|||||||
/*
|
|
||||||
* |
|
||||||
* Copyright 2015-2016, Google Inc. |
|
||||||
* All rights reserved. |
|
||||||
* |
|
||||||
* Redistribution and use in source and binary forms, with or without |
|
||||||
* modification, are permitted provided that the following conditions are |
|
||||||
* met: |
|
||||||
* |
|
||||||
* * Redistributions of source code must retain the above copyright |
|
||||||
* notice, this list of conditions and the following disclaimer. |
|
||||||
* * Redistributions in binary form must reproduce the above |
|
||||||
* copyright notice, this list of conditions and the following disclaimer |
|
||||||
* in the documentation and/or other materials provided with the |
|
||||||
* distribution. |
|
||||||
* * Neither the name of Google Inc. nor the names of its |
|
||||||
* contributors may be used to endorse or promote products derived from |
|
||||||
* this software without specific prior written permission. |
|
||||||
* |
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
||||||
* |
|
||||||
*/ |
|
||||||
|
|
||||||
#ifndef GRPC_CORE_CHANNEL_CLIENT_UCHANNEL_H |
|
||||||
#define GRPC_CORE_CHANNEL_CLIENT_UCHANNEL_H |
|
||||||
|
|
||||||
#include "src/core/channel/channel_stack.h" |
|
||||||
#include "src/core/client_config/resolver.h" |
|
||||||
|
|
||||||
#define GRPC_MICROCHANNEL_SUBCHANNEL_ARG "grpc.microchannel_subchannel_key" |
|
||||||
|
|
||||||
/* A client microchannel (aka uchannel) is a channel wrapping a subchannel, for
|
|
||||||
* the purposes of lightweight RPC communications from within the core.*/ |
|
||||||
|
|
||||||
extern const grpc_channel_filter grpc_client_uchannel_filter; |
|
||||||
|
|
||||||
grpc_connectivity_state grpc_client_uchannel_check_connectivity_state( |
|
||||||
grpc_exec_ctx *exec_ctx, grpc_channel_element *elem, int try_to_connect); |
|
||||||
|
|
||||||
void grpc_client_uchannel_watch_connectivity_state( |
|
||||||
grpc_exec_ctx *exec_ctx, grpc_channel_element *elem, grpc_pollset *pollset, |
|
||||||
grpc_connectivity_state *state, grpc_closure *on_complete); |
|
||||||
|
|
||||||
grpc_channel *grpc_client_uchannel_create(grpc_subchannel *subchannel, |
|
||||||
grpc_channel_args *args); |
|
||||||
|
|
||||||
void grpc_client_uchannel_set_connected_subchannel( |
|
||||||
grpc_channel *uchannel, grpc_connected_subchannel *connected_subchannel); |
|
||||||
|
|
||||||
#endif /* GRPC_CORE_CHANNEL_CLIENT_UCHANNEL_H */ |
|
@ -1,350 +0,0 @@ |
|||||||
/*
|
|
||||||
* |
|
||||||
* Copyright 2015-2016, Google Inc. |
|
||||||
* All rights reserved. |
|
||||||
* |
|
||||||
* Redistribution and use in source and binary forms, with or without |
|
||||||
* modification, are permitted provided that the following conditions are |
|
||||||
* met: |
|
||||||
* |
|
||||||
* * Redistributions of source code must retain the above copyright |
|
||||||
* notice, this list of conditions and the following disclaimer. |
|
||||||
* * Redistributions in binary form must reproduce the above |
|
||||||
* copyright notice, this list of conditions and the following disclaimer |
|
||||||
* in the documentation and/or other materials provided with the |
|
||||||
* distribution. |
|
||||||
* * Neither the name of Google Inc. nor the names of its |
|
||||||
* contributors may be used to endorse or promote products derived from |
|
||||||
* this software without specific prior written permission. |
|
||||||
* |
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|
||||||
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|
||||||
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
||||||
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
||||||
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|
||||||
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|
||||||
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
||||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|
||||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
||||||
* |
|
||||||
*/ |
|
||||||
|
|
||||||
#include "test/core/end2end/end2end_tests.h" |
|
||||||
|
|
||||||
#include <string.h> |
|
||||||
|
|
||||||
#include <grpc/support/alloc.h> |
|
||||||
#include <grpc/support/host_port.h> |
|
||||||
#include <grpc/support/log.h> |
|
||||||
#include <grpc/support/string_util.h> |
|
||||||
#include <grpc/support/sync.h> |
|
||||||
#include <grpc/support/thd.h> |
|
||||||
#include <grpc/support/useful.h> |
|
||||||
#include "src/core/channel/channel_args.h" |
|
||||||
#include "src/core/channel/client_channel.h" |
|
||||||
#include "src/core/channel/client_uchannel.h" |
|
||||||
#include "src/core/channel/connected_channel.h" |
|
||||||
#include "src/core/channel/http_client_filter.h" |
|
||||||
#include "src/core/channel/http_server_filter.h" |
|
||||||
#include "src/core/client_config/resolver_registry.h" |
|
||||||
#include "src/core/iomgr/tcp_client.h" |
|
||||||
#include "src/core/surface/channel.h" |
|
||||||
#include "src/core/surface/server.h" |
|
||||||
#include "src/core/transport/chttp2_transport.h" |
|
||||||
#include "test/core/util/port.h" |
|
||||||
#include "test/core/util/test_config.h" |
|
||||||
|
|
||||||
typedef struct { |
|
||||||
grpc_connector base; |
|
||||||
gpr_refcount refs; |
|
||||||
|
|
||||||
grpc_closure *notify; |
|
||||||
grpc_connect_in_args args; |
|
||||||
grpc_connect_out_args *result; |
|
||||||
|
|
||||||
grpc_endpoint *tcp; |
|
||||||
|
|
||||||
grpc_closure connected; |
|
||||||
} connector; |
|
||||||
|
|
||||||
static void connector_ref(grpc_connector *con) { |
|
||||||
connector *c = (connector *)con; |
|
||||||
gpr_ref(&c->refs); |
|
||||||
} |
|
||||||
|
|
||||||
static void connector_unref(grpc_exec_ctx *exec_ctx, grpc_connector *con) { |
|
||||||
connector *c = (connector *)con; |
|
||||||
if (gpr_unref(&c->refs)) { |
|
||||||
gpr_free(c); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
static void connected(grpc_exec_ctx *exec_ctx, void *arg, bool success) { |
|
||||||
connector *c = arg; |
|
||||||
grpc_closure *notify; |
|
||||||
grpc_endpoint *tcp = c->tcp; |
|
||||||
if (tcp != NULL) { |
|
||||||
c->result->transport = |
|
||||||
grpc_create_chttp2_transport(exec_ctx, c->args.channel_args, tcp, 1); |
|
||||||
grpc_chttp2_transport_start_reading(exec_ctx, c->result->transport, NULL, |
|
||||||
0); |
|
||||||
GPR_ASSERT(c->result->transport); |
|
||||||
} else { |
|
||||||
memset(c->result, 0, sizeof(*c->result)); |
|
||||||
} |
|
||||||
notify = c->notify; |
|
||||||
c->notify = NULL; |
|
||||||
notify->cb(exec_ctx, notify->cb_arg, 1); |
|
||||||
} |
|
||||||
|
|
||||||
static void connector_shutdown(grpc_exec_ctx *exec_ctx, grpc_connector *con) {} |
|
||||||
|
|
||||||
static void connector_connect(grpc_exec_ctx *exec_ctx, grpc_connector *con, |
|
||||||
const grpc_connect_in_args *args, |
|
||||||
grpc_connect_out_args *result, |
|
||||||
grpc_closure *notify) { |
|
||||||
connector *c = (connector *)con; |
|
||||||
GPR_ASSERT(c->notify == NULL); |
|
||||||
GPR_ASSERT(notify->cb); |
|
||||||
c->notify = notify; |
|
||||||
c->args = *args; |
|
||||||
c->result = result; |
|
||||||
c->tcp = NULL; |
|
||||||
grpc_closure_init(&c->connected, connected, c); |
|
||||||
grpc_tcp_client_connect(exec_ctx, &c->connected, &c->tcp, |
|
||||||
args->interested_parties, args->addr, args->addr_len, |
|
||||||
args->deadline); |
|
||||||
} |
|
||||||
|
|
||||||
static const grpc_connector_vtable connector_vtable = { |
|
||||||
connector_ref, connector_unref, connector_shutdown, connector_connect}; |
|
||||||
|
|
||||||
typedef struct { |
|
||||||
grpc_subchannel_factory base; |
|
||||||
gpr_refcount refs; |
|
||||||
grpc_channel_args *merge_args; |
|
||||||
grpc_channel *master; |
|
||||||
grpc_subchannel **sniffed_subchannel; |
|
||||||
} subchannel_factory; |
|
||||||
|
|
||||||
static void subchannel_factory_ref(grpc_subchannel_factory *scf) { |
|
||||||
subchannel_factory *f = (subchannel_factory *)scf; |
|
||||||
gpr_ref(&f->refs); |
|
||||||
} |
|
||||||
|
|
||||||
static void subchannel_factory_unref(grpc_exec_ctx *exec_ctx, |
|
||||||
grpc_subchannel_factory *scf) { |
|
||||||
subchannel_factory *f = (subchannel_factory *)scf; |
|
||||||
if (gpr_unref(&f->refs)) { |
|
||||||
GRPC_CHANNEL_INTERNAL_UNREF(exec_ctx, f->master, "subchannel_factory"); |
|
||||||
grpc_channel_args_destroy(f->merge_args); |
|
||||||
gpr_free(f); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
static grpc_subchannel *subchannel_factory_create_subchannel( |
|
||||||
grpc_exec_ctx *exec_ctx, grpc_subchannel_factory *scf, |
|
||||||
grpc_subchannel_args *args) { |
|
||||||
subchannel_factory *f = (subchannel_factory *)scf; |
|
||||||
connector *c = gpr_malloc(sizeof(*c)); |
|
||||||
grpc_channel_args *final_args = |
|
||||||
grpc_channel_args_merge(args->args, f->merge_args); |
|
||||||
grpc_subchannel *s; |
|
||||||
memset(c, 0, sizeof(*c)); |
|
||||||
c->base.vtable = &connector_vtable; |
|
||||||
gpr_ref_init(&c->refs, 1); |
|
||||||
args->args = final_args; |
|
||||||
s = grpc_subchannel_create(exec_ctx, &c->base, args); |
|
||||||
grpc_connector_unref(exec_ctx, &c->base); |
|
||||||
grpc_channel_args_destroy(final_args); |
|
||||||
if (*f->sniffed_subchannel) { |
|
||||||
GRPC_SUBCHANNEL_UNREF(exec_ctx, *f->sniffed_subchannel, "sniffed"); |
|
||||||
} |
|
||||||
*f->sniffed_subchannel = s; |
|
||||||
GRPC_SUBCHANNEL_REF(s, "sniffed"); |
|
||||||
return s; |
|
||||||
} |
|
||||||
|
|
||||||
static const grpc_subchannel_factory_vtable test_subchannel_factory_vtable = { |
|
||||||
subchannel_factory_ref, subchannel_factory_unref, |
|
||||||
subchannel_factory_create_subchannel}; |
|
||||||
|
|
||||||
/* The evil twin of grpc_insecure_channel_create. It allows the test to use the
|
|
||||||
* custom-built sniffing subchannel_factory */ |
|
||||||
grpc_channel *channel_create(const char *target, const grpc_channel_args *args, |
|
||||||
grpc_subchannel **sniffed_subchannel) { |
|
||||||
grpc_channel *channel = NULL; |
|
||||||
grpc_resolver *resolver; |
|
||||||
subchannel_factory *f; |
|
||||||
grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT; |
|
||||||
|
|
||||||
channel = |
|
||||||
grpc_channel_create(&exec_ctx, target, args, GRPC_CLIENT_CHANNEL, NULL); |
|
||||||
|
|
||||||
f = gpr_malloc(sizeof(*f)); |
|
||||||
f->sniffed_subchannel = sniffed_subchannel; |
|
||||||
f->base.vtable = &test_subchannel_factory_vtable; |
|
||||||
gpr_ref_init(&f->refs, 1); |
|
||||||
f->merge_args = grpc_channel_args_copy(args); |
|
||||||
f->master = channel; |
|
||||||
GRPC_CHANNEL_INTERNAL_REF(f->master, "test_subchannel_factory"); |
|
||||||
resolver = grpc_resolver_create(target, &f->base); |
|
||||||
if (!resolver) { |
|
||||||
return NULL; |
|
||||||
} |
|
||||||
|
|
||||||
grpc_client_channel_set_resolver( |
|
||||||
&exec_ctx, grpc_channel_get_channel_stack(channel), resolver); |
|
||||||
GRPC_RESOLVER_UNREF(&exec_ctx, resolver, "test_create"); |
|
||||||
grpc_subchannel_factory_unref(&exec_ctx, &f->base); |
|
||||||
|
|
||||||
grpc_exec_ctx_finish(&exec_ctx); |
|
||||||
|
|
||||||
return channel; |
|
||||||
} |
|
||||||
|
|
||||||
typedef struct micro_fullstack_fixture_data { |
|
||||||
char *localaddr; |
|
||||||
grpc_channel *master_channel; |
|
||||||
grpc_subchannel *sniffed_subchannel; |
|
||||||
} micro_fullstack_fixture_data; |
|
||||||
|
|
||||||
static grpc_end2end_test_fixture chttp2_create_fixture_micro_fullstack( |
|
||||||
grpc_channel_args *client_args, grpc_channel_args *server_args) { |
|
||||||
grpc_end2end_test_fixture f; |
|
||||||
int port = grpc_pick_unused_port_or_die(); |
|
||||||
micro_fullstack_fixture_data *ffd = |
|
||||||
gpr_malloc(sizeof(micro_fullstack_fixture_data)); |
|
||||||
memset(&f, 0, sizeof(f)); |
|
||||||
memset(ffd, 0, sizeof(*ffd)); |
|
||||||
|
|
||||||
gpr_join_host_port(&ffd->localaddr, "127.0.0.1", port); |
|
||||||
|
|
||||||
f.fixture_data = ffd; |
|
||||||
f.cq = grpc_completion_queue_create(NULL); |
|
||||||
|
|
||||||
return f; |
|
||||||
} |
|
||||||
|
|
||||||
grpc_connectivity_state g_state = GRPC_CHANNEL_IDLE; |
|
||||||
grpc_pollset_set *g_interested_parties; |
|
||||||
|
|
||||||
static void state_changed(grpc_exec_ctx *exec_ctx, void *arg, bool success) { |
|
||||||
if (g_state != GRPC_CHANNEL_READY) { |
|
||||||
grpc_subchannel_notify_on_state_change( |
|
||||||
exec_ctx, arg, g_interested_parties, &g_state, |
|
||||||
grpc_closure_create(state_changed, arg)); |
|
||||||
} |
|
||||||
} |
|
||||||
|
|
||||||
static void destroy_pollset(grpc_exec_ctx *exec_ctx, void *arg, bool success) { |
|
||||||
grpc_pollset_destroy(arg); |
|
||||||
} |
|
||||||
|
|
||||||
static grpc_connected_subchannel *connect_subchannel(grpc_subchannel *c) { |
|
||||||
gpr_mu *mu; |
|
||||||
grpc_pollset *pollset = gpr_malloc(grpc_pollset_size()); |
|
||||||
grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT; |
|
||||||
grpc_pollset_init(pollset, &mu); |
|
||||||
g_interested_parties = grpc_pollset_set_create(); |
|
||||||
grpc_pollset_set_add_pollset(&exec_ctx, g_interested_parties, pollset); |
|
||||||
grpc_subchannel_notify_on_state_change(&exec_ctx, c, g_interested_parties, |
|
||||||
&g_state, |
|
||||||
grpc_closure_create(state_changed, c)); |
|
||||||
grpc_exec_ctx_flush(&exec_ctx); |
|
||||||
gpr_mu_lock(mu); |
|
||||||
while (g_state != GRPC_CHANNEL_READY) { |
|
||||||
grpc_pollset_worker *worker = NULL; |
|
||||||
grpc_pollset_work(&exec_ctx, pollset, &worker, gpr_now(GPR_CLOCK_MONOTONIC), |
|
||||||
GRPC_TIMEOUT_SECONDS_TO_DEADLINE(1)); |
|
||||||
gpr_mu_unlock(mu); |
|
||||||
grpc_exec_ctx_flush(&exec_ctx); |
|
||||||
gpr_mu_lock(mu); |
|
||||||
} |
|
||||||
grpc_pollset_shutdown(&exec_ctx, pollset, |
|
||||||
grpc_closure_create(destroy_pollset, pollset)); |
|
||||||
grpc_pollset_set_destroy(g_interested_parties); |
|
||||||
gpr_mu_unlock(mu); |
|
||||||
grpc_exec_ctx_finish(&exec_ctx); |
|
||||||
gpr_free(pollset); |
|
||||||
return grpc_subchannel_get_connected_subchannel(c); |
|
||||||
} |
|
||||||
|
|
||||||
static void chttp2_init_client_micro_fullstack(grpc_end2end_test_fixture *f, |
|
||||||
grpc_channel_args *client_args) { |
|
||||||
micro_fullstack_fixture_data *ffd = f->fixture_data; |
|
||||||
grpc_connectivity_state conn_state; |
|
||||||
grpc_connected_subchannel *connected_subchannel; |
|
||||||
char *ipv4_localaddr; |
|
||||||
|
|
||||||
gpr_asprintf(&ipv4_localaddr, "ipv4:%s", ffd->localaddr); |
|
||||||
ffd->master_channel = |
|
||||||
channel_create(ipv4_localaddr, client_args, &ffd->sniffed_subchannel); |
|
||||||
gpr_free(ipv4_localaddr); |
|
||||||
gpr_log(GPR_INFO, "MASTER CHANNEL %p ", ffd->master_channel); |
|
||||||
/* the following will block. That's ok for this test */ |
|
||||||
conn_state = grpc_channel_check_connectivity_state(ffd->master_channel, |
|
||||||
1 /* try to connect */); |
|
||||||
GPR_ASSERT(conn_state == GRPC_CHANNEL_IDLE); |
|
||||||
|
|
||||||
/* here sniffed_subchannel should be ready to use */ |
|
||||||
GPR_ASSERT(conn_state == GRPC_CHANNEL_IDLE); |
|
||||||
GPR_ASSERT(ffd->sniffed_subchannel != NULL); |
|
||||||
|
|
||||||
connected_subchannel = connect_subchannel(ffd->sniffed_subchannel); |
|
||||||
f->client = grpc_client_uchannel_create(ffd->sniffed_subchannel, client_args); |
|
||||||
grpc_client_uchannel_set_connected_subchannel(f->client, |
|
||||||
connected_subchannel); |
|
||||||
gpr_log(GPR_INFO, "CHANNEL WRAPPING SUBCHANNEL: %p(%p)", f->client, |
|
||||||
ffd->sniffed_subchannel); |
|
||||||
|
|
||||||
GPR_ASSERT(f->client); |
|
||||||
} |
|
||||||
|
|
||||||
static void chttp2_init_server_micro_fullstack(grpc_end2end_test_fixture *f, |
|
||||||
grpc_channel_args *server_args) { |
|
||||||
micro_fullstack_fixture_data *ffd = f->fixture_data; |
|
||||||
if (f->server) { |
|
||||||
grpc_server_destroy(f->server); |
|
||||||
} |
|
||||||
f->server = grpc_server_create(server_args, NULL); |
|
||||||
grpc_server_register_completion_queue(f->server, f->cq, NULL); |
|
||||||
GPR_ASSERT(grpc_server_add_insecure_http2_port(f->server, ffd->localaddr)); |
|
||||||
grpc_server_start(f->server); |
|
||||||
} |
|
||||||
|
|
||||||
static void chttp2_tear_down_micro_fullstack(grpc_end2end_test_fixture *f) { |
|
||||||
grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT; |
|
||||||
micro_fullstack_fixture_data *ffd = f->fixture_data; |
|
||||||
grpc_channel_destroy(ffd->master_channel); |
|
||||||
if (ffd->sniffed_subchannel) { |
|
||||||
GRPC_SUBCHANNEL_UNREF(&exec_ctx, ffd->sniffed_subchannel, "sniffed"); |
|
||||||
} |
|
||||||
gpr_free(ffd->localaddr); |
|
||||||
gpr_free(ffd); |
|
||||||
grpc_exec_ctx_finish(&exec_ctx); |
|
||||||
} |
|
||||||
|
|
||||||
/* All test configurations */ |
|
||||||
static grpc_end2end_test_config configs[] = { |
|
||||||
{"chttp2/micro_fullstack", 0, chttp2_create_fixture_micro_fullstack, |
|
||||||
chttp2_init_client_micro_fullstack, chttp2_init_server_micro_fullstack, |
|
||||||
chttp2_tear_down_micro_fullstack}, |
|
||||||
}; |
|
||||||
|
|
||||||
int main(int argc, char **argv) { |
|
||||||
size_t i; |
|
||||||
|
|
||||||
grpc_test_init(argc, argv); |
|
||||||
grpc_init(); |
|
||||||
|
|
||||||
for (i = 0; i < sizeof(configs) / sizeof(*configs); i++) { |
|
||||||
grpc_end2end_tests(argc, argv, configs[i]); |
|
||||||
} |
|
||||||
|
|
||||||
grpc_shutdown(); |
|
||||||
|
|
||||||
return 0; |
|
||||||
} |
|
File diff suppressed because it is too large
Load Diff
@ -1,202 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
|
||||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
||||||
<Import Project="$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.1.0.204.1\build\native\grpc.dependencies.openssl.props" Condition="Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.1.0.204.1\build\native\1.0.204.1.props')" /> |
|
||||||
<ItemGroup Label="ProjectConfigurations"> |
|
||||||
<ProjectConfiguration Include="Debug|Win32"> |
|
||||||
<Configuration>Debug</Configuration> |
|
||||||
<Platform>Win32</Platform> |
|
||||||
</ProjectConfiguration> |
|
||||||
<ProjectConfiguration Include="Debug|x64"> |
|
||||||
<Configuration>Debug</Configuration> |
|
||||||
<Platform>x64</Platform> |
|
||||||
</ProjectConfiguration> |
|
||||||
<ProjectConfiguration Include="Release|Win32"> |
|
||||||
<Configuration>Release</Configuration> |
|
||||||
<Platform>Win32</Platform> |
|
||||||
</ProjectConfiguration> |
|
||||||
<ProjectConfiguration Include="Release|x64"> |
|
||||||
<Configuration>Release</Configuration> |
|
||||||
<Platform>x64</Platform> |
|
||||||
</ProjectConfiguration> |
|
||||||
</ItemGroup> |
|
||||||
<PropertyGroup Label="Globals"> |
|
||||||
<ProjectGuid>{BD79A629-4181-DB5E-C28F-44EB280A6F91}</ProjectGuid> |
|
||||||
<IgnoreWarnIntDirInTempDetected>true</IgnoreWarnIntDirInTempDetected> |
|
||||||
<IntDir>$(SolutionDir)IntDir\$(MSBuildProjectName)\</IntDir> |
|
||||||
</PropertyGroup> |
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
|
||||||
<PropertyGroup Condition="'$(VisualStudioVersion)' == '10.0'" Label="Configuration"> |
|
||||||
<PlatformToolset>v100</PlatformToolset> |
|
||||||
</PropertyGroup> |
|
||||||
<PropertyGroup Condition="'$(VisualStudioVersion)' == '11.0'" Label="Configuration"> |
|
||||||
<PlatformToolset>v110</PlatformToolset> |
|
||||||
</PropertyGroup> |
|
||||||
<PropertyGroup Condition="'$(VisualStudioVersion)' == '12.0'" Label="Configuration"> |
|
||||||
<PlatformToolset>v120</PlatformToolset> |
|
||||||
</PropertyGroup> |
|
||||||
<PropertyGroup Condition="'$(VisualStudioVersion)' == '14.0'" Label="Configuration"> |
|
||||||
<PlatformToolset>v140</PlatformToolset> |
|
||||||
</PropertyGroup> |
|
||||||
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration"> |
|
||||||
<ConfigurationType>Application</ConfigurationType> |
|
||||||
<UseDebugLibraries>true</UseDebugLibraries> |
|
||||||
<CharacterSet>Unicode</CharacterSet> |
|
||||||
</PropertyGroup> |
|
||||||
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration"> |
|
||||||
<ConfigurationType>Application</ConfigurationType> |
|
||||||
<UseDebugLibraries>false</UseDebugLibraries> |
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization> |
|
||||||
<CharacterSet>Unicode</CharacterSet> |
|
||||||
</PropertyGroup> |
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
|
||||||
<ImportGroup Label="ExtensionSettings"> |
|
||||||
</ImportGroup> |
|
||||||
<ImportGroup Label="PropertySheets"> |
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
|
||||||
<Import Project="$(SolutionDir)\..\vsprojects\global.props" /> |
|
||||||
<Import Project="$(SolutionDir)\..\vsprojects\openssl.props" /> |
|
||||||
<Import Project="$(SolutionDir)\..\vsprojects\winsock.props" /> |
|
||||||
<Import Project="$(SolutionDir)\..\vsprojects\zlib.props" /> |
|
||||||
</ImportGroup> |
|
||||||
<PropertyGroup Label="UserMacros" /> |
|
||||||
<PropertyGroup Condition="'$(Configuration)'=='Debug'"> |
|
||||||
<TargetName>h2_uchannel_nosec_test</TargetName> |
|
||||||
<Linkage-grpc_dependencies_zlib>static</Linkage-grpc_dependencies_zlib> |
|
||||||
<Configuration-grpc_dependencies_zlib>Debug</Configuration-grpc_dependencies_zlib> |
|
||||||
<Linkage-grpc_dependencies_openssl>static</Linkage-grpc_dependencies_openssl> |
|
||||||
<Configuration-grpc_dependencies_openssl>Debug</Configuration-grpc_dependencies_openssl> |
|
||||||
</PropertyGroup> |
|
||||||
<PropertyGroup Condition="'$(Configuration)'=='Release'"> |
|
||||||
<TargetName>h2_uchannel_nosec_test</TargetName> |
|
||||||
<Linkage-grpc_dependencies_zlib>static</Linkage-grpc_dependencies_zlib> |
|
||||||
<Configuration-grpc_dependencies_zlib>Release</Configuration-grpc_dependencies_zlib> |
|
||||||
<Linkage-grpc_dependencies_openssl>static</Linkage-grpc_dependencies_openssl> |
|
||||||
<Configuration-grpc_dependencies_openssl>Release</Configuration-grpc_dependencies_openssl> |
|
||||||
</PropertyGroup> |
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
|
||||||
<ClCompile> |
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
|
||||||
<WarningLevel>Level3</WarningLevel> |
|
||||||
<Optimization>Disabled</Optimization> |
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|
||||||
<SDLCheck>true</SDLCheck> |
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> |
|
||||||
<TreatWarningAsError>true</TreatWarningAsError> |
|
||||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
|
||||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
|
||||||
</ClCompile> |
|
||||||
<Link> |
|
||||||
<SubSystem>Console</SubSystem> |
|
||||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
|
||||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
|
||||||
</Link> |
|
||||||
</ItemDefinitionGroup> |
|
||||||
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
|
||||||
<ClCompile> |
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
|
||||||
<WarningLevel>Level3</WarningLevel> |
|
||||||
<Optimization>Disabled</Optimization> |
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|
||||||
<SDLCheck>true</SDLCheck> |
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> |
|
||||||
<TreatWarningAsError>true</TreatWarningAsError> |
|
||||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
|
||||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
|
||||||
</ClCompile> |
|
||||||
<Link> |
|
||||||
<SubSystem>Console</SubSystem> |
|
||||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
|
||||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
|
||||||
</Link> |
|
||||||
</ItemDefinitionGroup> |
|
||||||
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
|
||||||
<ClCompile> |
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
|
||||||
<WarningLevel>Level3</WarningLevel> |
|
||||||
<Optimization>MaxSpeed</Optimization> |
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking> |
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions> |
|
||||||
<SDLCheck>true</SDLCheck> |
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary> |
|
||||||
<TreatWarningAsError>true</TreatWarningAsError> |
|
||||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
|
||||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
|
||||||
</ClCompile> |
|
||||||
<Link> |
|
||||||
<SubSystem>Console</SubSystem> |
|
||||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
|
||||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
|
||||||
<OptimizeReferences>true</OptimizeReferences> |
|
||||||
</Link> |
|
||||||
</ItemDefinitionGroup> |
|
||||||
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
|
||||||
<ClCompile> |
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
|
||||||
<WarningLevel>Level3</WarningLevel> |
|
||||||
<Optimization>MaxSpeed</Optimization> |
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking> |
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions> |
|
||||||
<SDLCheck>true</SDLCheck> |
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary> |
|
||||||
<TreatWarningAsError>true</TreatWarningAsError> |
|
||||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
|
||||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
|
||||||
</ClCompile> |
|
||||||
<Link> |
|
||||||
<SubSystem>Console</SubSystem> |
|
||||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
|
||||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
|
||||||
<OptimizeReferences>true</OptimizeReferences> |
|
||||||
</Link> |
|
||||||
</ItemDefinitionGroup> |
|
||||||
|
|
||||||
<ItemGroup> |
|
||||||
<ClCompile Include="$(SolutionDir)\..\test\core\end2end\fixtures\h2_uchannel.c"> |
|
||||||
</ClCompile> |
|
||||||
</ItemGroup> |
|
||||||
<ItemGroup> |
|
||||||
<ProjectReference Include="$(SolutionDir)\..\vsprojects\vcxproj\test/end2end/tests\end2end_nosec_tests\end2end_nosec_tests.vcxproj"> |
|
||||||
<Project>{47C2CB41-4E9F-58B6-F606-F6FAED5D00ED}</Project> |
|
||||||
</ProjectReference> |
|
||||||
<ProjectReference Include="$(SolutionDir)\..\vsprojects\vcxproj\.\grpc_test_util_unsecure\grpc_test_util_unsecure.vcxproj"> |
|
||||||
<Project>{0A7E7F92-FDEA-40F1-A9EC-3BA484F98BBF}</Project> |
|
||||||
</ProjectReference> |
|
||||||
<ProjectReference Include="$(SolutionDir)\..\vsprojects\vcxproj\.\grpc_unsecure\grpc_unsecure.vcxproj"> |
|
||||||
<Project>{46CEDFFF-9692-456A-AA24-38B5D6BCF4C5}</Project> |
|
||||||
</ProjectReference> |
|
||||||
<ProjectReference Include="$(SolutionDir)\..\vsprojects\vcxproj\.\gpr_test_util\gpr_test_util.vcxproj"> |
|
||||||
<Project>{EAB0A629-17A9-44DB-B5FF-E91A721FE037}</Project> |
|
||||||
</ProjectReference> |
|
||||||
<ProjectReference Include="$(SolutionDir)\..\vsprojects\vcxproj\.\gpr\gpr.vcxproj"> |
|
||||||
<Project>{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}</Project> |
|
||||||
</ProjectReference> |
|
||||||
</ItemGroup> |
|
||||||
<ItemGroup> |
|
||||||
<None Include="packages.config" /> |
|
||||||
</ItemGroup> |
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
|
||||||
<ImportGroup Label="ExtensionTargets"> |
|
||||||
<Import Project="$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.zlib.redist.1.2.8.10\build\native\grpc.dependencies.zlib.redist.targets" Condition="Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.zlib.redist.1.2.8.10\build\native\grpc.dependencies\grpc.dependencies.zlib.targets')" /> |
|
||||||
<Import Project="$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.zlib.1.2.8.10\build\native\grpc.dependencies.zlib.targets" Condition="Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.zlib.1.2.8.10\build\native\grpc.dependencies\grpc.dependencies.zlib.targets')" /> |
|
||||||
<Import Project="$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.redist.1.0.204.1\build\native\grpc.dependencies.openssl.redist.targets" Condition="Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.redist.1.0.204.1\build\native\grpc.dependencies\grpc.dependencies.openssl.targets')" /> |
|
||||||
<Import Project="$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.1.0.204.1\build\native\grpc.dependencies.openssl.targets" Condition="Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.1.0.204.1\build\native\grpc.dependencies\grpc.dependencies.openssl.targets')" /> |
|
||||||
</ImportGroup> |
|
||||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> |
|
||||||
<PropertyGroup> |
|
||||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> |
|
||||||
</PropertyGroup> |
|
||||||
<Error Condition="!Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.zlib.redist.1.2.8.10\build\native\grpc.dependencies.zlib.redist.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.zlib.redist.1.2.8.10\build\native\grpc.dependencies.zlib.redist.targets')" /> |
|
||||||
<Error Condition="!Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.zlib.1.2.8.10\build\native\grpc.dependencies.zlib.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.zlib.1.2.8.10\build\native\grpc.dependencies.zlib.targets')" /> |
|
||||||
<Error Condition="!Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.redist.1.0.204.1\build\native\grpc.dependencies.openssl.redist.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.redist.1.0.204.1\build\native\grpc.dependencies.openssl.redist.targets')" /> |
|
||||||
<Error Condition="!Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.1.0.204.1\build\native\grpc.dependencies.openssl.props')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.1.0.204.1\build\native\grpc.dependencies.openssl.props')" /> |
|
||||||
<Error Condition="!Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.1.0.204.1\build\native\grpc.dependencies.openssl.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.1.0.204.1\build\native\grpc.dependencies.openssl.targets')" /> |
|
||||||
</Target> |
|
||||||
</Project> |
|
||||||
|
|
@ -1,24 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
||||||
<ItemGroup> |
|
||||||
<ClCompile Include="$(SolutionDir)\..\test\core\end2end\fixtures\h2_uchannel.c"> |
|
||||||
<Filter>test\core\end2end\fixtures</Filter> |
|
||||||
</ClCompile> |
|
||||||
</ItemGroup> |
|
||||||
|
|
||||||
<ItemGroup> |
|
||||||
<Filter Include="test"> |
|
||||||
<UniqueIdentifier>{549b9d3c-70c0-f3de-36d6-5b2ce5fb098c}</UniqueIdentifier> |
|
||||||
</Filter> |
|
||||||
<Filter Include="test\core"> |
|
||||||
<UniqueIdentifier>{d37f19b6-6893-6a90-09d2-e50d891899ff}</UniqueIdentifier> |
|
||||||
</Filter> |
|
||||||
<Filter Include="test\core\end2end"> |
|
||||||
<UniqueIdentifier>{bde36bf9-4894-e85b-4a35-f7b1abe9387f}</UniqueIdentifier> |
|
||||||
</Filter> |
|
||||||
<Filter Include="test\core\end2end\fixtures"> |
|
||||||
<UniqueIdentifier>{e16ce654-bd8c-2527-1077-e6cd2639c1cb}</UniqueIdentifier> |
|
||||||
</Filter> |
|
||||||
</ItemGroup> |
|
||||||
</Project> |
|
||||||
|
|
@ -1,202 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
|
||||||
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
||||||
<Import Project="$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.1.0.204.1\build\native\grpc.dependencies.openssl.props" Condition="Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.1.0.204.1\build\native\1.0.204.1.props')" /> |
|
||||||
<ItemGroup Label="ProjectConfigurations"> |
|
||||||
<ProjectConfiguration Include="Debug|Win32"> |
|
||||||
<Configuration>Debug</Configuration> |
|
||||||
<Platform>Win32</Platform> |
|
||||||
</ProjectConfiguration> |
|
||||||
<ProjectConfiguration Include="Debug|x64"> |
|
||||||
<Configuration>Debug</Configuration> |
|
||||||
<Platform>x64</Platform> |
|
||||||
</ProjectConfiguration> |
|
||||||
<ProjectConfiguration Include="Release|Win32"> |
|
||||||
<Configuration>Release</Configuration> |
|
||||||
<Platform>Win32</Platform> |
|
||||||
</ProjectConfiguration> |
|
||||||
<ProjectConfiguration Include="Release|x64"> |
|
||||||
<Configuration>Release</Configuration> |
|
||||||
<Platform>x64</Platform> |
|
||||||
</ProjectConfiguration> |
|
||||||
</ItemGroup> |
|
||||||
<PropertyGroup Label="Globals"> |
|
||||||
<ProjectGuid>{E39D59C4-F5CB-7D68-DA6B-C6BC93843435}</ProjectGuid> |
|
||||||
<IgnoreWarnIntDirInTempDetected>true</IgnoreWarnIntDirInTempDetected> |
|
||||||
<IntDir>$(SolutionDir)IntDir\$(MSBuildProjectName)\</IntDir> |
|
||||||
</PropertyGroup> |
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
|
||||||
<PropertyGroup Condition="'$(VisualStudioVersion)' == '10.0'" Label="Configuration"> |
|
||||||
<PlatformToolset>v100</PlatformToolset> |
|
||||||
</PropertyGroup> |
|
||||||
<PropertyGroup Condition="'$(VisualStudioVersion)' == '11.0'" Label="Configuration"> |
|
||||||
<PlatformToolset>v110</PlatformToolset> |
|
||||||
</PropertyGroup> |
|
||||||
<PropertyGroup Condition="'$(VisualStudioVersion)' == '12.0'" Label="Configuration"> |
|
||||||
<PlatformToolset>v120</PlatformToolset> |
|
||||||
</PropertyGroup> |
|
||||||
<PropertyGroup Condition="'$(VisualStudioVersion)' == '14.0'" Label="Configuration"> |
|
||||||
<PlatformToolset>v140</PlatformToolset> |
|
||||||
</PropertyGroup> |
|
||||||
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration"> |
|
||||||
<ConfigurationType>Application</ConfigurationType> |
|
||||||
<UseDebugLibraries>true</UseDebugLibraries> |
|
||||||
<CharacterSet>Unicode</CharacterSet> |
|
||||||
</PropertyGroup> |
|
||||||
<PropertyGroup Condition="'$(Configuration)'=='Release'" Label="Configuration"> |
|
||||||
<ConfigurationType>Application</ConfigurationType> |
|
||||||
<UseDebugLibraries>false</UseDebugLibraries> |
|
||||||
<WholeProgramOptimization>true</WholeProgramOptimization> |
|
||||||
<CharacterSet>Unicode</CharacterSet> |
|
||||||
</PropertyGroup> |
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
|
||||||
<ImportGroup Label="ExtensionSettings"> |
|
||||||
</ImportGroup> |
|
||||||
<ImportGroup Label="PropertySheets"> |
|
||||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
|
||||||
<Import Project="$(SolutionDir)\..\vsprojects\global.props" /> |
|
||||||
<Import Project="$(SolutionDir)\..\vsprojects\openssl.props" /> |
|
||||||
<Import Project="$(SolutionDir)\..\vsprojects\winsock.props" /> |
|
||||||
<Import Project="$(SolutionDir)\..\vsprojects\zlib.props" /> |
|
||||||
</ImportGroup> |
|
||||||
<PropertyGroup Label="UserMacros" /> |
|
||||||
<PropertyGroup Condition="'$(Configuration)'=='Debug'"> |
|
||||||
<TargetName>h2_uchannel_test</TargetName> |
|
||||||
<Linkage-grpc_dependencies_zlib>static</Linkage-grpc_dependencies_zlib> |
|
||||||
<Configuration-grpc_dependencies_zlib>Debug</Configuration-grpc_dependencies_zlib> |
|
||||||
<Linkage-grpc_dependencies_openssl>static</Linkage-grpc_dependencies_openssl> |
|
||||||
<Configuration-grpc_dependencies_openssl>Debug</Configuration-grpc_dependencies_openssl> |
|
||||||
</PropertyGroup> |
|
||||||
<PropertyGroup Condition="'$(Configuration)'=='Release'"> |
|
||||||
<TargetName>h2_uchannel_test</TargetName> |
|
||||||
<Linkage-grpc_dependencies_zlib>static</Linkage-grpc_dependencies_zlib> |
|
||||||
<Configuration-grpc_dependencies_zlib>Release</Configuration-grpc_dependencies_zlib> |
|
||||||
<Linkage-grpc_dependencies_openssl>static</Linkage-grpc_dependencies_openssl> |
|
||||||
<Configuration-grpc_dependencies_openssl>Release</Configuration-grpc_dependencies_openssl> |
|
||||||
</PropertyGroup> |
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
|
||||||
<ClCompile> |
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
|
||||||
<WarningLevel>Level3</WarningLevel> |
|
||||||
<Optimization>Disabled</Optimization> |
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|
||||||
<SDLCheck>true</SDLCheck> |
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> |
|
||||||
<TreatWarningAsError>true</TreatWarningAsError> |
|
||||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
|
||||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
|
||||||
</ClCompile> |
|
||||||
<Link> |
|
||||||
<SubSystem>Console</SubSystem> |
|
||||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
|
||||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
|
||||||
</Link> |
|
||||||
</ItemDefinitionGroup> |
|
||||||
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
|
||||||
<ClCompile> |
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
|
||||||
<WarningLevel>Level3</WarningLevel> |
|
||||||
<Optimization>Disabled</Optimization> |
|
||||||
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|
||||||
<SDLCheck>true</SDLCheck> |
|
||||||
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> |
|
||||||
<TreatWarningAsError>true</TreatWarningAsError> |
|
||||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
|
||||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
|
||||||
</ClCompile> |
|
||||||
<Link> |
|
||||||
<SubSystem>Console</SubSystem> |
|
||||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
|
||||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
|
||||||
</Link> |
|
||||||
</ItemDefinitionGroup> |
|
||||||
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
|
||||||
<ClCompile> |
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
|
||||||
<WarningLevel>Level3</WarningLevel> |
|
||||||
<Optimization>MaxSpeed</Optimization> |
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking> |
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions> |
|
||||||
<SDLCheck>true</SDLCheck> |
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary> |
|
||||||
<TreatWarningAsError>true</TreatWarningAsError> |
|
||||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
|
||||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
|
||||||
</ClCompile> |
|
||||||
<Link> |
|
||||||
<SubSystem>Console</SubSystem> |
|
||||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
|
||||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
|
||||||
<OptimizeReferences>true</OptimizeReferences> |
|
||||||
</Link> |
|
||||||
</ItemDefinitionGroup> |
|
||||||
|
|
||||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
|
||||||
<ClCompile> |
|
||||||
<PrecompiledHeader>NotUsing</PrecompiledHeader> |
|
||||||
<WarningLevel>Level3</WarningLevel> |
|
||||||
<Optimization>MaxSpeed</Optimization> |
|
||||||
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
|
||||||
<FunctionLevelLinking>true</FunctionLevelLinking> |
|
||||||
<IntrinsicFunctions>true</IntrinsicFunctions> |
|
||||||
<SDLCheck>true</SDLCheck> |
|
||||||
<RuntimeLibrary>MultiThreaded</RuntimeLibrary> |
|
||||||
<TreatWarningAsError>true</TreatWarningAsError> |
|
||||||
<DebugInformationFormat Condition="$(Jenkins)">None</DebugInformationFormat> |
|
||||||
<MinimalRebuild Condition="$(Jenkins)">false</MinimalRebuild> |
|
||||||
</ClCompile> |
|
||||||
<Link> |
|
||||||
<SubSystem>Console</SubSystem> |
|
||||||
<GenerateDebugInformation Condition="!$(Jenkins)">true</GenerateDebugInformation> |
|
||||||
<GenerateDebugInformation Condition="$(Jenkins)">false</GenerateDebugInformation> |
|
||||||
<EnableCOMDATFolding>true</EnableCOMDATFolding> |
|
||||||
<OptimizeReferences>true</OptimizeReferences> |
|
||||||
</Link> |
|
||||||
</ItemDefinitionGroup> |
|
||||||
|
|
||||||
<ItemGroup> |
|
||||||
<ClCompile Include="$(SolutionDir)\..\test\core\end2end\fixtures\h2_uchannel.c"> |
|
||||||
</ClCompile> |
|
||||||
</ItemGroup> |
|
||||||
<ItemGroup> |
|
||||||
<ProjectReference Include="$(SolutionDir)\..\vsprojects\vcxproj\test/end2end/tests\end2end_tests\end2end_tests.vcxproj"> |
|
||||||
<Project>{1F1F9084-2A93-B80E-364F-5754894AFAB4}</Project> |
|
||||||
</ProjectReference> |
|
||||||
<ProjectReference Include="$(SolutionDir)\..\vsprojects\vcxproj\.\grpc_test_util\grpc_test_util.vcxproj"> |
|
||||||
<Project>{17BCAFC0-5FDC-4C94-AEB9-95F3E220614B}</Project> |
|
||||||
</ProjectReference> |
|
||||||
<ProjectReference Include="$(SolutionDir)\..\vsprojects\vcxproj\.\grpc\grpc.vcxproj"> |
|
||||||
<Project>{29D16885-7228-4C31-81ED-5F9187C7F2A9}</Project> |
|
||||||
</ProjectReference> |
|
||||||
<ProjectReference Include="$(SolutionDir)\..\vsprojects\vcxproj\.\gpr_test_util\gpr_test_util.vcxproj"> |
|
||||||
<Project>{EAB0A629-17A9-44DB-B5FF-E91A721FE037}</Project> |
|
||||||
</ProjectReference> |
|
||||||
<ProjectReference Include="$(SolutionDir)\..\vsprojects\vcxproj\.\gpr\gpr.vcxproj"> |
|
||||||
<Project>{B23D3D1A-9438-4EDA-BEB6-9A0A03D17792}</Project> |
|
||||||
</ProjectReference> |
|
||||||
</ItemGroup> |
|
||||||
<ItemGroup> |
|
||||||
<None Include="packages.config" /> |
|
||||||
</ItemGroup> |
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
|
||||||
<ImportGroup Label="ExtensionTargets"> |
|
||||||
<Import Project="$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.zlib.redist.1.2.8.10\build\native\grpc.dependencies.zlib.redist.targets" Condition="Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.zlib.redist.1.2.8.10\build\native\grpc.dependencies\grpc.dependencies.zlib.targets')" /> |
|
||||||
<Import Project="$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.zlib.1.2.8.10\build\native\grpc.dependencies.zlib.targets" Condition="Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.zlib.1.2.8.10\build\native\grpc.dependencies\grpc.dependencies.zlib.targets')" /> |
|
||||||
<Import Project="$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.redist.1.0.204.1\build\native\grpc.dependencies.openssl.redist.targets" Condition="Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.redist.1.0.204.1\build\native\grpc.dependencies\grpc.dependencies.openssl.targets')" /> |
|
||||||
<Import Project="$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.1.0.204.1\build\native\grpc.dependencies.openssl.targets" Condition="Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.1.0.204.1\build\native\grpc.dependencies\grpc.dependencies.openssl.targets')" /> |
|
||||||
</ImportGroup> |
|
||||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> |
|
||||||
<PropertyGroup> |
|
||||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> |
|
||||||
</PropertyGroup> |
|
||||||
<Error Condition="!Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.zlib.redist.1.2.8.10\build\native\grpc.dependencies.zlib.redist.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.zlib.redist.1.2.8.10\build\native\grpc.dependencies.zlib.redist.targets')" /> |
|
||||||
<Error Condition="!Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.zlib.1.2.8.10\build\native\grpc.dependencies.zlib.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.zlib.1.2.8.10\build\native\grpc.dependencies.zlib.targets')" /> |
|
||||||
<Error Condition="!Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.redist.1.0.204.1\build\native\grpc.dependencies.openssl.redist.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.redist.1.0.204.1\build\native\grpc.dependencies.openssl.redist.targets')" /> |
|
||||||
<Error Condition="!Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.1.0.204.1\build\native\grpc.dependencies.openssl.props')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.1.0.204.1\build\native\grpc.dependencies.openssl.props')" /> |
|
||||||
<Error Condition="!Exists('$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.1.0.204.1\build\native\grpc.dependencies.openssl.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\..\vsprojects\packages\grpc.dependencies.openssl.1.0.204.1\build\native\grpc.dependencies.openssl.targets')" /> |
|
||||||
</Target> |
|
||||||
</Project> |
|
||||||
|
|
@ -1,24 +0,0 @@ |
|||||||
<?xml version="1.0" encoding="utf-8"?> |
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
||||||
<ItemGroup> |
|
||||||
<ClCompile Include="$(SolutionDir)\..\test\core\end2end\fixtures\h2_uchannel.c"> |
|
||||||
<Filter>test\core\end2end\fixtures</Filter> |
|
||||||
</ClCompile> |
|
||||||
</ItemGroup> |
|
||||||
|
|
||||||
<ItemGroup> |
|
||||||
<Filter Include="test"> |
|
||||||
<UniqueIdentifier>{0e4c3b3f-4d89-039d-c4d2-3bd39bb5701f}</UniqueIdentifier> |
|
||||||
</Filter> |
|
||||||
<Filter Include="test\core"> |
|
||||||
<UniqueIdentifier>{75084bcc-1809-7f7a-8989-d8fe2d5d404f}</UniqueIdentifier> |
|
||||||
</Filter> |
|
||||||
<Filter Include="test\core\end2end"> |
|
||||||
<UniqueIdentifier>{9e123c51-0a8c-f222-f2f9-3cee19f2f99e}</UniqueIdentifier> |
|
||||||
</Filter> |
|
||||||
<Filter Include="test\core\end2end\fixtures"> |
|
||||||
<UniqueIdentifier>{999ee744-f147-9430-9a09-a16f69ecfa2a}</UniqueIdentifier> |
|
||||||
</Filter> |
|
||||||
</ItemGroup> |
|
||||||
</Project> |
|
||||||
|
|
Loading…
Reference in new issue