blob: 3e767c9e51e34b33c4e78b382717f7fc476dc21e [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ios/chrome/common/channel_info.h"
#include <dispatch/dispatch.h>
#import <Foundation/Foundation.h>
#import "base/mac/bundle_locations.h"
#import "base/strings/sys_string_conversions.h"
#include "build/branding_buildflags.h"
#include "components/version_info/version_info.h"
#include "components/version_info/version_string.h"
#if !defined(__has_feature) || !__has_feature(objc_arc)
#error "This file requires ARC support."
#endif
namespace {
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
// Channel of the running application, initialized by the first call to
// GetChannel() and cached for the whole application lifetime.
version_info::Channel g_channel = version_info::Channel::UNKNOWN;
#endif
} // namespace
std::string GetVersionString() {
return version_info::GetVersionStringWithModifier(GetChannelString());
}
std::string GetChannelString() {
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
// Only ever return one of "" (for STABLE channel), "unknown", "beta", "dev"
// or "canary" in branded build.
switch (GetChannel()) {
case version_info::Channel::STABLE:
return std::string();
case version_info::Channel::BETA:
return "beta";
case version_info::Channel::DEV:
return "dev";
case version_info::Channel::CANARY:
return "canary";
case version_info::Channel::UNKNOWN:
return "unknown";
}
#else
// Always return empty string for non-branded builds.
return std::string();
#endif
}
version_info::Channel GetChannel() {
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
static dispatch_once_t channel_dispatch_token;
dispatch_once(&channel_dispatch_token, ^{
NSBundle* bundle = base::mac::OuterBundle();
// Only Keystone-enabled build can have a channel.
if (![bundle objectForInfoDictionaryKey:@"KSProductID"])
return;
NSString* channel = [bundle objectForInfoDictionaryKey:@"KSChannelID"];
if (!channel) {
// KSChannelID is unset for the stable channel.
g_channel = version_info::Channel::STABLE;
} else if ([channel isEqualToString:@"beta"]) {
g_channel = version_info::Channel::BETA;
} else if ([channel isEqualToString:@"dev"]) {
g_channel = version_info::Channel::DEV;
} else if ([channel isEqualToString:@"canary"]) {
g_channel = version_info::Channel::CANARY;
}
});
return g_channel;
#else
return version_info::Channel::UNKNOWN;
#endif
}