OIDDefines.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*! @file OIDDefines.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. /*! @def OIDIsEqualIncludingNil(x, y)
  17. @brief Returns YES if x and y are equal by reference or value.
  18. @discussion NOTE: parameters may be evaluated multiple times. Be careful if using this check
  19. with expressions - especially if the expressions have side effects.
  20. @param x An object.
  21. @param y An object.
  22. */
  23. #define OIDIsEqualIncludingNil(x, y) (((x) == (y)) || [(x) isEqual:(y)])
  24. /*! @def OID_UNAVAILABLE_USE_INITIALIZER(designatedInitializer)
  25. @brief Provides a template implementation for init-family methods which have been marked as
  26. NS_UNAVILABLE. Stops the compiler from giving a warning when it's the super class'
  27. designated initializer, and gives callers useful feedback telling them what the
  28. new designated initializer is.
  29. @remarks Takes a SEL as a parameter instead of a string so that we get compiler warnings if the
  30. designated intializer's signature changes.
  31. @param designatedInitializer A SEL referencing the designated initializer.
  32. */
  33. #define OID_UNAVAILABLE_USE_INITIALIZER(designatedInitializer) { \
  34. NSString *reason = [NSString stringWithFormat:@"Called: %@\nDesignated Initializer:%@", \
  35. NSStringFromSelector(_cmd), \
  36. NSStringFromSelector(designatedInitializer)]; \
  37. @throw [NSException exceptionWithName:@"Attempt to call unavailable initializer." \
  38. reason:reason \
  39. userInfo:nil]; \
  40. }
  41. #ifdef _APPAUTHTRACE
  42. # define AppAuthRequestTrace(fmt, ...) NSLog(fmt, ##__VA_ARGS__);
  43. #else // _APPAUTHTRACE
  44. # define AppAuthRequestTrace(...)
  45. #endif // _APPAUTHTRACE