| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /*
- * Copyright 2017 Google
- *
- * 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 "FirebaseMessaging/Sources/FIRMessagingUtilities.h"
- #import "FirebaseMessaging/Sources/FIRMessagingLogger.h"
- #import <GoogleUtilities/GULAppEnvironmentUtil.h>
- static const uint64_t kBytesToMegabytesDivisor = 1024 * 1024LL;
- #pragma mark - Time
- int64_t FIRMessagingCurrentTimestampInSeconds(void) {
- return (int64_t)[[NSDate date] timeIntervalSince1970];
- }
- int64_t FIRMessagingCurrentTimestampInMilliseconds(void) {
- return (int64_t)(FIRMessagingCurrentTimestampInSeconds() * 1000.0);
- }
- #pragma mark - App Info
- NSString *FIRMessagingCurrentAppVersion(void) {
- NSString *version = [[NSBundle mainBundle] infoDictionary][@"CFBundleShortVersionString"];
- if (![version length]) {
- FIRMessagingLoggerError(kFIRMessagingMessageCodeUtilities000,
- @"Could not find current app version");
- return @"";
- }
- return version;
- }
- NSString *FIRMessagingBundleIDByRemovingLastPartFrom(NSString *bundleID) {
- NSString *bundleIDComponentsSeparator = @".";
- NSMutableArray<NSString *> *bundleIDComponents =
- [[bundleID componentsSeparatedByString:bundleIDComponentsSeparator] mutableCopy];
- [bundleIDComponents removeLastObject];
- return [bundleIDComponents componentsJoinedByString:bundleIDComponentsSeparator];
- }
- NSString *FIRMessagingAppIdentifier(void) {
- NSString *bundleID = [[NSBundle mainBundle] bundleIdentifier];
- #if TARGET_OS_WATCH
- // The code is running in watchKit extension target but the actually bundleID is in the watchKit
- // target. So we need to remove the last part of the bundle ID in watchKit extension to match
- // the one in watchKit target.
- return FIRMessagingBundleIDByRemovingLastPartFrom(bundleID);
- #else
- return bundleID;
- #endif
- }
- uint64_t FIRMessagingGetFreeDiskSpaceInMB(void) {
- NSError *error;
- NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
- NSDictionary *attributesMap =
- [[NSFileManager defaultManager] attributesOfFileSystemForPath:[paths lastObject]
- error:&error];
- if (attributesMap) {
- uint64_t totalSizeInBytes __unused = [attributesMap[NSFileSystemSize] longLongValue];
- uint64_t freeSizeInBytes = [attributesMap[NSFileSystemFreeSize] longLongValue];
- FIRMessagingLoggerDebug(
- kFIRMessagingMessageCodeUtilities001, @"Device has capacity %llu MB with %llu MB free.",
- totalSizeInBytes / kBytesToMegabytesDivisor, freeSizeInBytes / kBytesToMegabytesDivisor);
- return ((double)freeSizeInBytes) / kBytesToMegabytesDivisor;
- } else {
- FIRMessagingLoggerError(kFIRMessagingMessageCodeUtilities002,
- @"Error in retreiving device's free memory %@", error);
- return 0;
- }
- }
- NSSearchPathDirectory FIRMessagingSupportedDirectory(void) {
- #if TARGET_OS_TV
- return NSCachesDirectory;
- #else
- return NSApplicationSupportDirectory;
- #endif
- }
|