method.go 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. *
  3. * Copyright 2018 gRPC authors.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License");
  6. * you may not use this file except in compliance with the License.
  7. * You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. *
  17. */
  18. package grpcutil
  19. import (
  20. "errors"
  21. "strings"
  22. )
  23. // ParseMethod splits service and method from the input. It expects format
  24. // "/service/method".
  25. func ParseMethod(methodName string) (service, method string, _ error) {
  26. if !strings.HasPrefix(methodName, "/") {
  27. return "", "", errors.New("invalid method name: should start with /")
  28. }
  29. methodName = methodName[1:]
  30. pos := strings.LastIndex(methodName, "/")
  31. if pos < 0 {
  32. return "", "", errors.New("invalid method name: suffix /method is missing")
  33. }
  34. return methodName[:pos], methodName[pos+1:], nil
  35. }
  36. // baseContentType is the base content-type for gRPC. This is a valid
  37. // content-type on it's own, but can also include a content-subtype such as
  38. // "proto" as a suffix after "+" or ";". See
  39. // https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md#requests
  40. // for more details.
  41. const baseContentType = "application/grpc"
  42. // ContentSubtype returns the content-subtype for the given content-type. The
  43. // given content-type must be a valid content-type that starts with
  44. // "application/grpc". A content-subtype will follow "application/grpc" after a
  45. // "+" or ";". See
  46. // https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md#requests for
  47. // more details.
  48. //
  49. // If contentType is not a valid content-type for gRPC, the boolean
  50. // will be false, otherwise true. If content-type == "application/grpc",
  51. // "application/grpc+", or "application/grpc;", the boolean will be true,
  52. // but no content-subtype will be returned.
  53. //
  54. // contentType is assumed to be lowercase already.
  55. func ContentSubtype(contentType string) (string, bool) {
  56. if contentType == baseContentType {
  57. return "", true
  58. }
  59. if !strings.HasPrefix(contentType, baseContentType) {
  60. return "", false
  61. }
  62. // guaranteed since != baseContentType and has baseContentType prefix
  63. switch contentType[len(baseContentType)] {
  64. case '+', ';':
  65. // this will return true for "application/grpc+" or "application/grpc;"
  66. // which the previous validContentType function tested to be valid, so we
  67. // just say that no content-subtype is specified in this case
  68. return contentType[len(baseContentType)+1:], true
  69. default:
  70. return "", false
  71. }
  72. }
  73. // ContentType builds full content type with the given sub-type.
  74. //
  75. // contentSubtype is assumed to be lowercase
  76. func ContentType(contentSubtype string) string {
  77. if contentSubtype == "" {
  78. return baseContentType
  79. }
  80. return baseContentType + "+" + contentSubtype
  81. }