RLMNetworkTransport.h 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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. NS_ASSUME_NONNULL_BEGIN
  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 occured while subscribing to changes.
  64. /// @param error The error that has occured.
  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 occured.
  70. - (void)didCloseWithError:(NSError *)error;
  71. @end
  72. /// A block for receiving an `RLMResponse` from the `RLMNetworkTransport`.
  73. typedef void(^RLMNetworkTransportCompletionBlock)(RLMResponse *);
  74. /// Transporting protocol for foreign interfaces. Allows for custom
  75. /// request/response handling.
  76. @protocol RLMNetworkTransport <NSObject>
  77. /**
  78. Sends a request to a given endpoint.
  79. @param request The request to send.
  80. @param completionBlock A callback invoked on completion of the request.
  81. */
  82. - (void)sendRequestToServer:(RLMRequest *)request
  83. completion:(RLMNetworkTransportCompletionBlock)completionBlock;
  84. /// Starts an event stream request.
  85. /// @param request The RLMRequest to start.
  86. /// @param subscriber The RLMEventDelegate which will subscribe to changes from the server.
  87. - (NSURLSession *)doStreamRequest:(RLMRequest *)request
  88. eventSubscriber:(id<RLMEventDelegate>)subscriber;
  89. @end
  90. /// Transporting protocol for foreign interfaces. Allows for custom
  91. /// request/response handling.
  92. @interface RLMNetworkTransport : NSObject<RLMNetworkTransport>
  93. /**
  94. Sends a request to a given endpoint.
  95. @param request The request to send.
  96. @param completionBlock A callback invoked on completion of the request.
  97. */
  98. - (void)sendRequestToServer:(RLMRequest *) request
  99. completion:(RLMNetworkTransportCompletionBlock)completionBlock;
  100. @end
  101. NS_ASSUME_NONNULL_END