Skip to content

Commit

Permalink
Adding http to grpc status code mapping
Browse files Browse the repository at this point in the history
Signed-off-by: Juan Manuel Ollé <[email protected]>
  • Loading branch information
juanmolle committed Oct 24, 2023
1 parent 6b47aec commit c9f33d0
Showing 1 changed file with 39 additions and 1 deletion.
40 changes: 39 additions & 1 deletion src/hostcalls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,44 @@ extern "C" {
) -> Status;
}

#[allow(dead_code)]
enum GrpcStatucCode {
Ok = 0,
Cancelled = 1,
Unknown = 2,
InvalidArgument= 3,
DeadlineExceeded = 4,
NotFound = 5,
AlreadyExists = 6,
PermissionDenied = 7,
ResourceExhausted = 8,
FailedPrecondition = 9,
Aborted = 10,
OutOfRange = 11,
Uninmplemented = 12,
Internal = 13,
Unavailable = 14,
DataLoss = 15,
Unauthenticated = 16,
}

fn http_to_grpc_status_code(status_code: u32) -> i32 {
match status_code {
200 => GrpcStatucCode::Ok as i32,
400 => GrpcStatucCode::InvalidArgument as i32,
401 => GrpcStatucCode::Unauthenticated as i32,
403 => GrpcStatucCode::PermissionDenied as i32,
404 => GrpcStatucCode::NotFound as i32,
409 => GrpcStatucCode::Aborted as i32,
412 => GrpcStatucCode::FailedPrecondition as i32,
429 => GrpcStatucCode::ResourceExhausted as i32,
500 => GrpcStatucCode::Internal as i32,
501 => GrpcStatucCode::Uninmplemented as i32,
503 => GrpcStatucCode::Unavailable as i32,
_ => GrpcStatucCode::Unknown as i32,
}
}

pub fn send_http_response(
status_code: u32,
headers: Vec<(&str, &str)>,
Expand All @@ -718,7 +756,7 @@ pub fn send_http_response(
body.map_or(0, |body| body.len()),
serialized_headers.as_ptr(),
serialized_headers.len(),
-1,
http_to_grpc_status_code(status_code),
) {
Status::Ok => Ok(()),
status => panic!("unexpected status: {}", status as u32),
Expand Down

0 comments on commit c9f33d0

Please sign in to comment.