-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathHttpResponder.java
153 lines (136 loc) · 5.56 KB
/
HttpResponder.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
* Copyright © 2014-2019 Cask Data, Inc.
*
* Licensed 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.
*/
package io.cdap.http;
import io.netty.buffer.ByteBuf;
import io.netty.handler.codec.http.HttpHeaders;
import io.netty.handler.codec.http.HttpResponseStatus;
import java.io.File;
import java.io.IOException;
import java.nio.ByteBuffer;
/**
* HttpResponder is used to send response back to clients.
*/
public interface HttpResponder {
/**
* Sends json response back to the client. This is a convenient method to send json encoded string with
* content type automatically set to {@code application/json}.
*
* @param status Status of the response.
* @param jsonString The json string to send back.
*/
void sendJson(HttpResponseStatus status, String jsonString);
/**
* Send a string response in UTF-8 encoding back to the http client.
*
* @param status status of the Http response.
* @param data string data to be sent back.
*/
void sendString(HttpResponseStatus status, String data);
/**
* Send a string response in UTF-8 encoding back to the http client.
*
* @param status status of the Http response.
* @param data string data to be sent back.
* @param headers additional headers to send with the response.
*/
void sendString(HttpResponseStatus status, String data, HttpHeaders headers);
/**
* Send only a status code back to client without any content.
*
* @param status status of the Http response.
*/
void sendStatus(HttpResponseStatus status);
/**
* Send only a status code back to client without any content.
*
* @param status status of the Http response.
* @param headers additional headers to send with the response.
*/
void sendStatus(HttpResponseStatus status, HttpHeaders headers);
/**
* Send a response containing raw bytes. Default content type is "application/octet-stream", but can be
* overridden by the headers parameter.
*
* @param status status of the Http response.
* @param bytes bytes to be sent back.
* @param headers additional headers to send with the response.
*/
void sendByteArray(HttpResponseStatus status, byte[] bytes, HttpHeaders headers);
/**
* Sends a response containing raw bytes. Default content type is "application/octet-stream", but can be
* overridden by the headers parameter.
*
* @param status status of the Http response
* @param buffer bytes to send
* @param headers additional headers to send with the response.
*/
void sendBytes(HttpResponseStatus status, ByteBuffer buffer, HttpHeaders headers);
/**
* Respond to the client saying the response will be in chunks. The response body can be sent in chunks
* using the {@link ChunkResponder} returned.
*
* @param status the status code to respond with
* @return chunk responder for sending the response
*/
ChunkResponder sendChunkStart(HttpResponseStatus status);
/**
* Respond to the client saying the response will be in chunks. The response body can be sent in chunks
* using the {@link ChunkResponder} returned.
*
* @param status the status code to respond with
* @param headers additional headers to send with the response.
* @return chunk responder for sending the response
*/
ChunkResponder sendChunkStart(HttpResponseStatus status, HttpHeaders headers);
/**
* Send response back to client. Default content type is "application/octet-stream", but can be
* overridden by the headers parameter.
*
* @param status Status of the response.
* @param content Content to be sent back.
* @param headers additional headers to send with the response.
*/
void sendContent(HttpResponseStatus status, ByteBuf content, HttpHeaders headers);
/**
* Sends a file content back to client with response status 200 with content type as "application/octet-stream".
*
* @param file The file to send
* @throws IOException if failed to open and read the file
* @throws Throwable
*/
void sendFile(File file) throws IOException, Throwable;
/**
* Sends a file content back to client with response status 200. Default content type is "application/octet-stream",
* but can be overridden by the headers parameter.
*
* @param file The file to send
* @param headers additional headers to send with the response.
* @throws IOException if failed to open and read the file
* @throws Throwable
*/
void sendFile(File file, HttpHeaders headers) throws IOException, Throwable;
/**
* Sends response back to client. The response body is produced by the given {@link BodyProducer}. This method
* will return immediate after it is called. Invocation of methods on the given {@link BodyProducer} will be
* triggered from another thread. Default content type is "application/octet-stream", but can be
* overridden by the headers parameter.
*
* @param status Status of the response.
* @param bodyProducer a {@link BodyProducer} to produce response body.
* @param headers additional headers to send with the response.
*/
void sendContent(HttpResponseStatus status, BodyProducer bodyProducer, HttpHeaders headers);
}