// Copyright 2021 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 #if TARGET_OS_IOS #import "GoogleSignIn/Sources/GIDMDMPasscodeState.h" #import "GoogleSignIn/Sources/GIDMDMPasscodeState_Private.h" #import #import "GoogleSignIn/Sources/GIDMDMPasscodeCache.h" NS_ASSUME_NONNULL_BEGIN @implementation GIDMDMPasscodeState - (instancetype)initWithStatus:(NSString *)status info:(NSString *)info { self = [super init]; if (self) { _status = [status copy]; _info = [info copy]; } return self; } + (instancetype)passcodeState { #if DEBUG NSDate *start = [NSDate date]; #endif GIDMDMPasscodeState *passcodeState = [[GIDMDMPasscodeCache sharedInstance] passcodeState]; #if DEBUG NSTimeInterval timeElapsed = [[NSDate date] timeIntervalSinceDate:start]; NSLog(@"Retrieved device passcode state in %dms.", (int)round(timeElapsed * 1000)); #endif return passcodeState; } @end NS_ASSUME_NONNULL_END #endif