OIDFieldMapping.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*! @file OIDFieldMapping.h
  2. @brief AppAuth iOS SDK
  3. @copyright
  4. Copyright 2015 Google Inc. All Rights Reserved.
  5. @copydetails
  6. Licensed under the Apache License, Version 2.0 (the "License");
  7. you may not use this file except in compliance with the License.
  8. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. */
  16. #import <Foundation/Foundation.h>
  17. NS_ASSUME_NONNULL_BEGIN
  18. /*! @brief Represents a function which transforms incoming source values into instance variable
  19. values.
  20. */
  21. typedef _Nullable id(^OIDFieldMappingConversionFunction)(NSObject *_Nullable value);
  22. /*! @brief Describes the mapping of a key/value pair to an iVar with an optional conversion
  23. function.
  24. */
  25. @interface OIDFieldMapping : NSObject
  26. /*! @brief The name of the instance variable the field should be mapped to.
  27. */
  28. @property(nonatomic, readonly) NSString *name;
  29. /*! @brief The type of the instance variable.
  30. */
  31. @property(nonatomic, readonly) Class expectedType;
  32. /*! @brief An optional conversion function which specifies a transform from the incoming data to the
  33. instance variable value.
  34. */
  35. @property(nonatomic, readonly, nullable) OIDFieldMappingConversionFunction conversion;
  36. /*! @internal
  37. @brief Unavailable. Please use initWithName:type:conversion:.
  38. */
  39. - (instancetype)init NS_UNAVAILABLE;
  40. /*! @brief The designated initializer.
  41. @param name The name of the instance variable the field should be mapped to.
  42. @param type The type of the instance variable.
  43. @param conversion An optional conversion function which specifies a transform from the incoming
  44. data to the instance variable value. Used during the process performed by
  45. @c OIDFieldMapping.remainingParametersWithMap:parameters:instance: but not during
  46. encoding/decoding, since the encoded and decoded values should already be of the type
  47. specified by the @c type parameter.
  48. */
  49. - (instancetype)initWithName:(NSString *)name
  50. type:(Class)type
  51. conversion:(nullable OIDFieldMappingConversionFunction)conversion
  52. NS_DESIGNATED_INITIALIZER;
  53. /*! @brief A convenience initializer.
  54. @param name The name of the instance variable the field should be mapped to.
  55. @param type The type of the instance variable.
  56. */
  57. - (instancetype)initWithName:(NSString *)name
  58. type:(Class)type;
  59. /*! @brief Performs a mapping of key/value pairs in an incoming parameters dictionary to instance
  60. variables, returning a dictionary of parameter key/values which didn't map to instance
  61. variables.
  62. @param map A mapping of incoming keys to instance variables.
  63. @param parameters Incoming key value pairs to map to an instance's variables.
  64. @param instance The instance whose variables should be set based on the mapping.
  65. @return A dictionary of parameter key/values which didn't map to instance variables.
  66. */
  67. + (NSDictionary<NSString *, NSObject<NSCopying> *> *)remainingParametersWithMap:
  68. (NSDictionary<NSString *, OIDFieldMapping *> *)map
  69. parameters:(NSDictionary<NSString *, NSObject<NSCopying> *> *)parameters
  70. instance:(id)instance;
  71. /*! @brief This helper method for @c NSCoding implementations performs a serialization of fields
  72. defined in a field mapping.
  73. @param aCoder An @c NSCoder instance to serialize instance variable values to.
  74. @param map A mapping of keys to instance variables.
  75. @param instance The instance whose variables should be serialized based on the mapping.
  76. */
  77. + (void)encodeWithCoder:(NSCoder *)aCoder
  78. map:(NSDictionary<NSString *, OIDFieldMapping *> *)map
  79. instance:(id)instance;
  80. /*! @brief This helper method for @c NSCoding implementations performs a deserialization of
  81. fields defined in a field mapping.
  82. @param aCoder An @c NSCoder instance from which to deserialize instance variable values from.
  83. @param map A mapping of keys to instance variables.
  84. @param instance The instance whose variables should be deserialized based on the mapping.
  85. */
  86. + (void)decodeWithCoder:(NSCoder *)aCoder
  87. map:(NSDictionary<NSString *, OIDFieldMapping *> *)map
  88. instance:(id)instance;
  89. /*! @brief Returns an @c NSSet of classes suitable for deserializing JSON content in an
  90. @c NSSecureCoding context.
  91. */
  92. + (NSSet *)JSONTypes;
  93. /*! @brief Returns a function for converting an @c NSString to an @c NSURL.
  94. */
  95. + (OIDFieldMappingConversionFunction)URLConversion;
  96. /*! @brief Returns a function for converting an @c NSNumber number of seconds from now to an
  97. @c NSDate.
  98. */
  99. + (OIDFieldMappingConversionFunction)dateSinceNowConversion;
  100. /*! @brief Returns a function for converting an @c NSNumber representing a unix time stamp to an
  101. @c NSDate.
  102. */
  103. + (OIDFieldMappingConversionFunction)dateEpochConversion;
  104. @end
  105. NS_ASSUME_NONNULL_END