Skip to content

Commit

Permalink
Squashed 'apollo-ios/' changes from 6620447d..6c967447
Browse files Browse the repository at this point in the history
6c967447 fix: Cherry pick `ObjectData` type check to `ListData` (#473)

git-subtree-dir: apollo-ios
git-subtree-split: 6c96744741d811f3d3114d0507c0ec3e3769a4a2
  • Loading branch information
gh-action-runner authored and gh-action-runner committed Sep 13, 2024
1 parent 971d0d1 commit 4196203
Showing 1 changed file with 19 additions and 13 deletions.
32 changes: 19 additions & 13 deletions Sources/ApolloAPI/ObjectData.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,6 @@ public struct ObjectData {
public let _transformer: any _ObjectData_Transformer
public let _rawData: [String: AnyHashable]

@usableFromInline internal static let _boolTrue = AnyHashable(true)
@usableFromInline internal static let _boolFalse = AnyHashable(false)

public init(
_transformer: any _ObjectData_Transformer,
_rawData: [String: AnyHashable]
Expand All @@ -29,7 +26,7 @@ public struct ObjectData {
// This check is based on AnyHashable using a canonical representation of the type-erased value so
// instances wrapping the same value of any type compare as equal. Therefore while Int(1) and Int(0)
// might be representable as Bool they will never equal Bool(true) nor Bool(false).
if let boolVal = value as? Bool, (value == Self._boolTrue || value == Self._boolFalse) {
if let boolVal = value as? Bool, value.isCanonicalBool {
value = boolVal

// Cast to `Int` to ensure we always use `Int` vs `Int32` or `Int64` for consistency and ScalarType casting
Expand Down Expand Up @@ -72,17 +69,17 @@ public struct ListData {
@inlinable public subscript(_ key: Int) -> (any ScalarType)? {
var value: AnyHashable = _rawData[key]

// Attempting cast to `Int` to ensure we always use `Int` vs `Int32` or `Int64` for consistency and ScalarType casting,
// also need to attempt `Bool` cast first to ensure a bool doesn't get inadvertently converted to `Int`
switch value {
case let boolVal as Bool:
// This check is based on AnyHashable using a canonical representation of the type-erased value so
// instances wrapping the same value of any type compare as equal. Therefore while Int(1) and Int(0)
// might be representable as Bool they will never equal Bool(true) nor Bool(false).
if let boolVal = value as? Bool, value.isCanonicalBool {
value = boolVal
case let intVal as Int:
value = intVal
default:
break

// Cast to `Int` to ensure we always use `Int` vs `Int32` or `Int64` for consistency and ScalarType casting
} else if let intValue = value as? Int {
value = intValue
}

return _transformer.transform(value)
}

Expand All @@ -96,3 +93,12 @@ public struct ListData {
return _transformer.transform(_rawData[key])
}
}

extension AnyHashable {
fileprivate static let boolTrue = AnyHashable(true)
fileprivate static let boolFalse = AnyHashable(false)

@usableFromInline var isCanonicalBool: Bool {
self == Self.boolTrue || self == Self.boolFalse
}
}

0 comments on commit 4196203

Please sign in to comment.