-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
97094c8
commit 427d963
Showing
6 changed files
with
148 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
Crashlytics/Crashlytics/Rollouts/EncodedRolloutAssignment.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Copyright 2024 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
import FirebaseRemoteConfigInterop | ||
import Foundation | ||
|
||
@objc(FIRCLSEncodedRolloutAssignment) | ||
class EncodedRolloutAssignment: NSObject, Codable { | ||
@objc public private(set) var rolloutId: String | ||
@objc public private(set) var variantId: String | ||
@objc public private(set) var templateVersion: Int64 | ||
@objc public private(set) var parameterKey: String | ||
@objc public private(set) var parameterValue: String | ||
|
||
public init(assignment: RolloutAssignment) { | ||
rolloutId = FileUtility.stringToHexConverter(for: assignment.rolloutId) | ||
variantId = FileUtility.stringToHexConverter(for: assignment.variantId) | ||
templateVersion = assignment.templateVersion | ||
parameterKey = FileUtility.stringToHexConverter(for: assignment.parameterKey) | ||
parameterValue = FileUtility.stringToHexConverter(for: assignment.parameterValue) | ||
super.init() | ||
} | ||
} |
38 changes: 38 additions & 0 deletions
38
Crashlytics/Crashlytics/Rollouts/StringToHexConverter.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
// Copyright 2024 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
import Foundation | ||
|
||
// This is a swift rewrite for the logic in FIRCLSFile for the function FIRCLSFileHexEncodeString() | ||
@objc(FIRCLSwiftFileUtility) | ||
public class FileUtility: NSObject { | ||
@objc public static func stringToHexConverter(for string: String) -> String { | ||
let hexMap = "0123456789abcdef" | ||
|
||
var processedString = "" | ||
let utf8Array = string.utf8.map { UInt8($0) } | ||
for c in utf8Array { | ||
let index1 = String.Index( | ||
utf16Offset: Int(c >> 4), | ||
in: hexMap | ||
) | ||
let index2 = String.Index( | ||
utf16Offset: Int(c & 0x0F), | ||
in: hexMap | ||
) | ||
processedString = processedString + String(hexMap[index1]) + String(hexMap[index2]) | ||
} | ||
return processedString | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters