RLMNetworkTransport.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2020 Realm Inc.
  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. #import <Realm/RLMConstants.h>
  19. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  20. /// Allowed HTTP methods to be used with `RLMNetworkTransport`.
  21. typedef RLM_CLOSED_ENUM(int32_t, RLMHTTPMethod) {
  22. /// GET is used to request data from a specified resource.
  23. RLMHTTPMethodGET = 0,
  24. /// POST is used to send data to a server to create/update a resource.
  25. RLMHTTPMethodPOST = 1,
  26. /// PATCH is used to send data to a server to update a resource.
  27. RLMHTTPMethodPATCH = 2,
  28. /// PUT is used to send data to a server to create/update a resource.
  29. RLMHTTPMethodPUT = 3,
  30. /// The DELETE method deletes the specified resource.
  31. RLMHTTPMethodDELETE = 4
  32. };
  33. /// An HTTP request that can be made to an arbitrary server.
  34. @interface RLMRequest : NSObject
  35. /// The HTTP method of this request.
  36. @property (nonatomic, assign) RLMHTTPMethod method;
  37. /// The URL to which this request will be made.
  38. @property (nonatomic, strong) NSString *url;
  39. /// The number of milliseconds that the underlying transport should spend on an
  40. /// HTTP round trip before failing with an error.
  41. @property (nonatomic, assign) NSTimeInterval timeout;
  42. /// The HTTP headers of this request.
  43. @property (nonatomic, strong) NSDictionary<NSString *, NSString *>* headers;
  44. /// The body of the request.
  45. @property (nonatomic, strong) NSString* body;
  46. @end
  47. /// The contents of an HTTP response.
  48. @interface RLMResponse : NSObject
  49. /// The status code of the HTTP response.
  50. @property (nonatomic, assign) NSInteger httpStatusCode;
  51. /// A custom status code provided by the SDK.
  52. @property (nonatomic, assign) NSInteger customStatusCode;
  53. /// The headers of the HTTP response.
  54. @property (nonatomic, strong) NSDictionary<NSString *, NSString *>* headers;
  55. /// The body of the HTTP response.
  56. @property (nonatomic, strong) NSString *body;
  57. @end
  58. /// Delegate which is used for subscribing to changes.
  59. @protocol RLMEventDelegate <NSObject>
  60. /// Invoked when a change event has been received.
  61. /// @param event The change event encoded as NSData
  62. - (void)didReceiveEvent:(NSData *)event;
  63. /// A error has occurred while subscribing to changes.
  64. /// @param error The error that has occurred.
  65. - (void)didReceiveError:(NSError *)error;
  66. /// The stream was opened.
  67. - (void)didOpen;
  68. /// The stream has been closed.
  69. /// @param error The error that has occurred.
  70. - (void)didCloseWithError:(NSError *_Nullable)error;
  71. @end
  72. /// A block for receiving an `RLMResponse` from the `RLMNetworkTransport`.
  73. RLM_SWIFT_SENDABLE // invoked on a backgroun thread
  74. typedef void(^RLMNetworkTransportCompletionBlock)(RLMResponse *);
  75. /// Transporting protocol for foreign interfaces. Allows for custom
  76. /// request/response handling.
  77. RLM_SWIFT_SENDABLE // used from multiple threads so must be internally thread-safe
  78. @protocol RLMNetworkTransport <NSObject>
  79. /**
  80. Sends a request to a given endpoint.
  81. @param request The request to send.
  82. @param completionBlock A callback invoked on completion of the request.
  83. */
  84. - (void)sendRequestToServer:(RLMRequest *)request
  85. completion:(RLMNetworkTransportCompletionBlock)completionBlock;
  86. /// Starts an event stream request.
  87. /// @param request The RLMRequest to start.
  88. /// @param subscriber The RLMEventDelegate which will subscribe to changes from the server.
  89. - (NSURLSession *)doStreamRequest:(RLMRequest *)request
  90. eventSubscriber:(id<RLMEventDelegate>)subscriber;
  91. @end
  92. /// Transporting protocol for foreign interfaces. Allows for custom
  93. /// request/response handling.
  94. RLM_SWIFT_SENDABLE // is internally thread-safe
  95. @interface RLMNetworkTransport : NSObject<RLMNetworkTransport>
  96. /**
  97. Sends a request to a given endpoint.
  98. @param request The request to send.
  99. @param completionBlock A callback invoked on completion of the request.
  100. */
  101. - (void)sendRequestToServer:(RLMRequest *) request
  102. completion:(RLMNetworkTransportCompletionBlock)completionBlock;
  103. @end
  104. RLM_HEADER_AUDIT_END(nullability, sendability)