1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ash/arc/enterprise/arc_enterprise_reporting_service.h"
#include <utility>
#include "base/functional/bind.h"
#include "base/logging.h"
#include "base/memory/singleton.h"
#include "base/metrics/histogram_functions.h"
#include "base/strings/strcat.h"
#include "chrome/browser/ash/arc/arc_util.h"
#include "chrome/browser/ash/arc/session/arc_session_manager.h"
#include "chromeos/ash/experiences/arc/arc_browser_context_keyed_service_factory_base.h"
#include "chromeos/ash/experiences/arc/session/arc_bridge_service.h"
#include "chromeos/ash/experiences/arc/session/arc_service_manager.h"
// Enable VLOG level 1.
#undef ENABLED_VLOG_LEVEL
#define ENABLED_VLOG_LEVEL 1
namespace arc {
namespace {
// Singleton factory for ArcEnterpriseReportingService.
class ArcEnterpriseReportingServiceFactory
: public internal::ArcBrowserContextKeyedServiceFactoryBase<
ArcEnterpriseReportingService,
ArcEnterpriseReportingServiceFactory> {
public:
// Factory name used by ArcBrowserContextKeyedServiceFactoryBase.
static constexpr const char* kName = "ArcEnterpriseReportingServiceFactory";
static ArcEnterpriseReportingServiceFactory* GetInstance() {
return base::Singleton<ArcEnterpriseReportingServiceFactory>::get();
}
private:
friend base::DefaultSingletonTraits<ArcEnterpriseReportingServiceFactory>;
ArcEnterpriseReportingServiceFactory() = default;
~ArcEnterpriseReportingServiceFactory() override = default;
};
const char* TimedCloudDpcOpToString(mojom::TimedCloudDpcOp op) {
switch (op) {
case mojom::TimedCloudDpcOp::UNKNOWN_OP:
NOTREACHED(); // handled by if-statement in calling method
case mojom::TimedCloudDpcOp::SETUP_TOTAL:
return "SetupService.Total";
case mojom::TimedCloudDpcOp::SETUP_PULL_AND_APPLY_POLICIES:
return "SetupService.PullAndApplyPolicies";
case mojom::TimedCloudDpcOp::SETUP_ADD_ACCOUNT:
return "SetupService.AddAccount";
case mojom::TimedCloudDpcOp::SETUP_INSTALL_APPS:
return "SetupService.InstallApps";
case mojom::TimedCloudDpcOp::DEVICE_SETUP:
return "DeviceSetup";
case mojom::TimedCloudDpcOp::SETUP_CHECK_FOR_ANDROID_ID:
case mojom::TimedCloudDpcOp::SETUP_CHECK_FOR_FIRST_ACCOUNT_READY:
case mojom::TimedCloudDpcOp::SETUP_REGISTER:
case mojom::TimedCloudDpcOp::SETUP_REPORT_POLICY_COMPLIANCE:
case mojom::TimedCloudDpcOp::SETUP_QUARANTINED:
case mojom::TimedCloudDpcOp::SETUP_INSTALL_APPS_RETRY:
case mojom::TimedCloudDpcOp::SETUP_UPDATE_PLAY_SERVICES:
case mojom::TimedCloudDpcOp::SETUP_CHECK_REGISTRATION_TOKEN:
case mojom::TimedCloudDpcOp::SETUP_THIRD_PARTY_SIGNIN:
return ""; // Deprecated and unused
}
NOTREACHED();
}
} // namespace
// static
ArcEnterpriseReportingService*
ArcEnterpriseReportingService::GetForBrowserContext(
content::BrowserContext* context) {
return ArcEnterpriseReportingServiceFactory::GetForBrowserContext(context);
}
// static
ArcEnterpriseReportingService*
ArcEnterpriseReportingService::GetForBrowserContextForTesting(
content::BrowserContext* context) {
return ArcEnterpriseReportingServiceFactory::GetForBrowserContextForTesting(
context);
}
ArcEnterpriseReportingService::ArcEnterpriseReportingService(
content::BrowserContext* context,
ArcBridgeService* bridge_service)
: arc_bridge_service_(bridge_service) {
arc_bridge_service_->enterprise_reporting()->SetHost(this);
}
ArcEnterpriseReportingService::~ArcEnterpriseReportingService() {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
arc_bridge_service_->enterprise_reporting()->SetHost(nullptr);
}
void ArcEnterpriseReportingService::ReportCloudDpcOperationTime(
int64_t time_ms,
mojom::TimedCloudDpcOp op,
bool success) {
DCHECK_CALLED_ON_VALID_THREAD(thread_checker_);
if (op != mojom::TimedCloudDpcOp::UNKNOWN_OP) {
const std::string histogram_name =
base::StrCat({"Arc.CloudDpc.", TimedCloudDpcOpToString(op),
".TimeDelta", success ? ".Success" : ".Failure"});
base::UmaHistogramMediumTimes(
GetHistogramNameByUserTypeForPrimaryProfile(histogram_name),
base::Milliseconds(time_ms));
} else {
DLOG(ERROR) << "Attempted to record time for unknown op";
}
}
// static
void ArcEnterpriseReportingService::EnsureFactoryBuilt() {
ArcEnterpriseReportingServiceFactory::GetInstance();
}
} // namespace arc
|