Skip to content
Snippets Groups Projects
Commit 1e27328d authored by klempner's avatar klempner Committed by Michael Lumish
Browse files

Move status 200 setting into http_server_filter and keep a fixed mdelem for it

rather than allocating a separate one for each rpc.
	Change on 2014/12/10 by klempner <klempner@google.com>
-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=81814150
parent 6919c759
No related branches found
No related tags found
No related merge requests found
...@@ -34,11 +34,12 @@ ...@@ -34,11 +34,12 @@
#include "src/core/channel/http_server_filter.h" #include "src/core/channel/http_server_filter.h"
#include <grpc/support/log.h> #include <grpc/support/log.h>
typedef struct call_data { typedef struct call_data { int sent_status; } call_data;
int unused; /* C89 requires at least one struct element */
} call_data;
typedef struct channel_data { grpc_mdelem *te_trailers; } channel_data; typedef struct channel_data {
grpc_mdelem *te_trailers;
grpc_mdelem *status_md;
} channel_data;
/* used to silence 'variable not used' warnings */ /* used to silence 'variable not used' warnings */
static void ignore_unused(void *ignored) {} static void ignore_unused(void *ignored) {}
...@@ -76,6 +77,17 @@ static void call_op(grpc_call_element *elem, grpc_call_op *op) { ...@@ -76,6 +77,17 @@ static void call_op(grpc_call_element *elem, grpc_call_op *op) {
grpc_call_next_op(elem, op); grpc_call_next_op(elem, op);
} }
break; break;
case GRPC_SEND_START:
case GRPC_SEND_METADATA:
/* If we haven't sent status 200 yet, we need to so so because it needs to
come before any non : prefixed metadata. */
if (!calld->sent_status) {
calld->sent_status = 1;
/* status_md is reffed by grpc_call_element_send_metadata */
grpc_call_element_send_metadata(elem, channeld->status_md);
}
grpc_call_next_op(elem, op);
break;
default: default:
/* pass control up or down the stack depending on op->dir */ /* pass control up or down the stack depending on op->dir */
grpc_call_next_op(elem, op); grpc_call_next_op(elem, op);
...@@ -109,7 +121,7 @@ static void init_call_elem(grpc_call_element *elem, ...@@ -109,7 +121,7 @@ static void init_call_elem(grpc_call_element *elem,
ignore_unused(channeld); ignore_unused(channeld);
/* initialize members */ /* initialize members */
calld->unused = 0; calld->sent_status = 0;
} }
/* Destructor for call_data */ /* Destructor for call_data */
...@@ -137,6 +149,7 @@ static void init_channel_elem(grpc_channel_element *elem, ...@@ -137,6 +149,7 @@ static void init_channel_elem(grpc_channel_element *elem,
/* initialize members */ /* initialize members */
channeld->te_trailers = grpc_mdelem_from_strings(mdctx, "te", "trailers"); channeld->te_trailers = grpc_mdelem_from_strings(mdctx, "te", "trailers");
channeld->status_md = grpc_mdelem_from_strings(mdctx, ":status", "200");
} }
/* Destructor for channel data */ /* Destructor for channel data */
...@@ -145,6 +158,7 @@ static void destroy_channel_elem(grpc_channel_element *elem) { ...@@ -145,6 +158,7 @@ static void destroy_channel_elem(grpc_channel_element *elem) {
channel_data *channeld = elem->channel_data; channel_data *channeld = elem->channel_data;
grpc_mdelem_unref(channeld->te_trailers); grpc_mdelem_unref(channeld->te_trailers);
grpc_mdelem_unref(channeld->status_md);
} }
const grpc_channel_filter grpc_http_server_filter = { const grpc_channel_filter grpc_http_server_filter = {
......
...@@ -216,7 +216,6 @@ static void queue_new_rpc(grpc_server *server, call_data *calld, void *tag) { ...@@ -216,7 +216,6 @@ static void queue_new_rpc(grpc_server *server, call_data *calld, void *tag) {
const char *host = NULL; const char *host = NULL;
const char *method = NULL; const char *method = NULL;
size_t i; size_t i;
grpc_metadata status_md;
for (i = 0; i < count; i++) { for (i = 0; i < count; i++) {
if (0 == strcmp(elements[i].key, ":authority")) { if (0 == strcmp(elements[i].key, ":authority")) {
...@@ -226,11 +225,6 @@ static void queue_new_rpc(grpc_server *server, call_data *calld, void *tag) { ...@@ -226,11 +225,6 @@ static void queue_new_rpc(grpc_server *server, call_data *calld, void *tag) {
} }
} }
status_md.key = ":status";
status_md.value = "200";
status_md.value_length = 3;
grpc_call_add_metadata(call, &status_md, GRPC_WRITE_BUFFER_HINT);
grpc_call_internal_ref(call); grpc_call_internal_ref(call);
grpc_cq_end_new_rpc(server->cq, tag, call, grpc_cq_end_new_rpc(server->cq, tag, call,
grpc_metadata_buffer_cleanup_elements, elements, method, grpc_metadata_buffer_cleanup_elements, elements, method,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment