Skip to content
Snippets Groups Projects
Commit 9a30a9f9 authored by Jack He's avatar Jack He
Browse files

Metrics: Move bluetooth.proto to one place

* Move bluetooth.proto to proto/ and compile it for both Java LITE
  runtime and C++ LITE runtime so that it can be shared between Java
  and native code
* Remove redundant comments in bluetooth.proto

Bug: 33693818
Test: make, toggle Bluetooth, clearcut server-client E2E test
      adb shell dumpsys bluetooth_manager --proto-bin
      ACTS tests: BtMetricsTest, BtFunhausMetricsTest
Change-Id: I7cd5e1b4fb8fcc197272ef8161ff384e53022424
parent b64aca18
No related branches found
No related tags found
No related merge requests found
......@@ -19,4 +19,5 @@ subdirs = [
"types",
"udrv",
"tools",
"proto",
]
java_library_static {
name: "bluetooth-protos-lite",
host_supported: true,
proto: {
type: "lite",
},
srcs: ["bluetooth/metrics/bluetooth.proto"],
}
cc_library_static {
name: "libbt-protos-lite",
host_supported: true,
proto: {
export_proto_headers: true,
type: "lite",
},
srcs: ["bluetooth/metrics/bluetooth.proto"],
}
// Copyright 2014 Google Inc. All Rights Reserved.
// Author: pkanwar@google.com (Pankaj Kanwar)
// Protos for uploading bluetooth metrics.
/*
* Copyright (C) 2018 The Android Open Source Project
*
* 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.
*/
syntax = "proto2";
option optimize_for = LITE_RUNTIME;
package clearcut.connectivity;
option optimize_for = LITE_RUNTIME;
option java_package = "com.google.wireless.android.play.playlog.connectivity";
// option (datapol.file_vetting_status) = "latest";
// C++ namespace: bluetooth::metrics::BluetoothMetricsProto
package bluetooth.metrics.BluetoothMetricsProto;
// import "storage/datapol/annotations/proto/semantic_annotations.proto";
option java_package = "com.android.bluetooth";
option java_outer_classname = "BluetoothMetricsProto";
message BluetoothLog {
// Session information that gets logged for every BT connection.
......@@ -144,7 +156,7 @@ message A2DPSession {
message PairEvent {
// The reason for disconnecting
// https://cs.corp.google.com/#android/packages/modules/Bluetooth/system/stack/include/hcidefs.h&q=failed_establish.
// See: packages/modules/Bluetooth/system/stack/include/hcidefs.h, HCI_ERR_CONN_FAILED_ESTABLISHMENT
optional int32 disconnect_reason = 1;
// Pair event time
......@@ -158,12 +170,9 @@ message PairEvent {
message WakeEvent {
// Information about the wake event type.
enum WakeEventType {
// Type is unknown.
UNKNOWN = 0;
// WakeLock was acquired.
ACQUIRED = 1;
// WakeLock was released.
RELEASED = 2;
}
......@@ -172,7 +181,7 @@ message WakeEvent {
optional WakeEventType wake_event_type = 1;
// Initiator of the scan. Only the first three names will be stored.
// e.g. com.google.gms.
// e.g. com.company.app
optional string requestor = 2;
// Name of the wakelock (e.g. bluedroid_timer).
......@@ -186,7 +195,6 @@ message WakeEvent {
message ScanEvent {
// Scan type.
enum ScanTechnologyType {
// Scan Type is unknown.
SCAN_TYPE_UNKNOWN = 0;
SCAN_TECH_TYPE_LE = 1;
......@@ -200,7 +208,6 @@ message ScanEvent {
enum ScanEventType {
// Scan started.
SCAN_EVENT_START = 0;
// Scan stopped.
SCAN_EVENT_STOP = 1;
}
......@@ -209,7 +216,7 @@ message ScanEvent {
optional ScanEventType scan_event_type = 1;
// Initiator of the scan. Only the first three names will be stored.
// e.g. com.google.gms.
// e.g. com.company.app
optional string initiator = 2;
// Technology used for scanning.
......
......@@ -132,7 +132,7 @@ cc_test {
"libbtcore",
"libbt-bta",
"libbluetooth-types",
"libbt-protos-lite",
"libosi",
"libbt-protos",
],
}
......@@ -126,7 +126,7 @@ cc_test {
"libudrv-uipc",
"libbluetooth-types",
"libosi",
"libbt-protos",
"libbt-protos-lite",
],
whole_static_libs: [
"libbtif",
......
......@@ -73,6 +73,6 @@ cc_test {
"libosi-AllocationTestHarness",
"libcutils",
"libbtcore",
"libbt-protos",
"libbt-protos-lite",
],
}
......@@ -63,11 +63,11 @@ cc_library_shared {
"libbtdevice",
"libbtif",
"libbt-hci",
"libbt-protos",
"libbt-stack",
"libbt-utils",
"libbtcore",
"libosi",
"libbt-protos-lite",
],
// Shared library link options.
// References to global symbols and functions should bind to the library
......
......@@ -4,7 +4,6 @@ cc_defaults {
include_dirs: [
"packages/modules/Bluetooth/system",
"packages/modules/Bluetooth/system/internal_include",
"packages/modules/Bluetooth/system/osi/src/protos",
"packages/modules/Bluetooth/system/utils/include",
"packages/modules/Bluetooth/system/stack/include",
]
......@@ -36,19 +35,6 @@ cc_test_library {
},
}
// Bluetooth Protobuf static library for target and host
// ========================================================
cc_library_static {
name: "libbt-protos",
defaults: ["fluoride_defaults"],
srcs: ["src/protos/bluetooth.proto"],
proto: {
export_proto_headers: true,
},
host_supported: true,
}
// libosi static library for target
// ========================================================
cc_library_static {
......@@ -85,7 +71,7 @@ cc_library_static {
shared_libs: [
"liblog",
],
static_libs: ["libbt-protos"],
static_libs: ["libbt-protos-lite"],
host_supported: true,
// TODO(armansito): Setting _GNU_SOURCE isn't very platform-independent but
// should be compatible for a Linux host OS. We should figure out what to do for
......@@ -136,7 +122,7 @@ cc_test {
"libcutils",
],
static_libs: [
"libbt-protos",
"libbt-protos-lite",
"libgmock",
"libosi",
],
......
......@@ -29,31 +29,32 @@
#include <base/base64.h>
#include <base/logging.h>
#include "bluetooth/metrics/bluetooth.pb.h"
#include "osi/include/leaky_bonded_queue.h"
#include "osi/include/log.h"
#include "osi/include/osi.h"
#include "osi/include/time.h"
#include "stack/include/btm_api_types.h"
#include "src/protos/bluetooth.pb.h"
#include "osi/include/metrics.h"
namespace system_bt_osi {
using clearcut::connectivity::A2DPSession;
using clearcut::connectivity::BluetoothLog;
using clearcut::connectivity::BluetoothSession;
using clearcut::connectivity::BluetoothSession_ConnectionTechnologyType;
using clearcut::connectivity::BluetoothSession_DisconnectReasonType;
using clearcut::connectivity::DeviceInfo;
using clearcut::connectivity::DeviceInfo_DeviceType;
using clearcut::connectivity::PairEvent;
using clearcut::connectivity::ScanEvent;
using clearcut::connectivity::ScanEvent_ScanTechnologyType;
using clearcut::connectivity::ScanEvent_ScanEventType;
using clearcut::connectivity::WakeEvent;
using clearcut::connectivity::WakeEvent_WakeEventType;
using bluetooth::metrics::BluetoothMetricsProto::A2DPSession;
using bluetooth::metrics::BluetoothMetricsProto::BluetoothLog;
using bluetooth::metrics::BluetoothMetricsProto::BluetoothSession;
using bluetooth::metrics::BluetoothMetricsProto::
BluetoothSession_ConnectionTechnologyType;
using bluetooth::metrics::BluetoothMetricsProto::
BluetoothSession_DisconnectReasonType;
using bluetooth::metrics::BluetoothMetricsProto::DeviceInfo;
using bluetooth::metrics::BluetoothMetricsProto::DeviceInfo_DeviceType;
using bluetooth::metrics::BluetoothMetricsProto::PairEvent;
using bluetooth::metrics::BluetoothMetricsProto::ScanEvent;
using bluetooth::metrics::BluetoothMetricsProto::ScanEvent_ScanTechnologyType;
using bluetooth::metrics::BluetoothMetricsProto::ScanEvent_ScanEventType;
using bluetooth::metrics::BluetoothMetricsProto::WakeEvent;
using bluetooth::metrics::BluetoothMetricsProto::WakeEvent_WakeEventType;
/*
* Get current OS boot time in millisecond
......
......@@ -26,28 +26,30 @@
#include <base/logging.h>
#include "bluetooth/metrics/bluetooth.pb.h"
#include "osi/include/metrics.h"
#include "osi/include/time.h"
#include "src/protos/bluetooth.pb.h"
#define BTM_COD_MAJOR_AUDIO_TEST 0x04
namespace testing {
using clearcut::connectivity::A2DPSession;
using clearcut::connectivity::BluetoothLog;
using clearcut::connectivity::BluetoothSession;
using clearcut::connectivity::BluetoothSession_ConnectionTechnologyType;
using clearcut::connectivity::BluetoothSession_DisconnectReasonType;
using clearcut::connectivity::DeviceInfo;
using clearcut::connectivity::DeviceInfo_DeviceType;
using clearcut::connectivity::PairEvent;
using clearcut::connectivity::RFCommSession;
using clearcut::connectivity::ScanEvent;
using clearcut::connectivity::ScanEvent_ScanTechnologyType;
using clearcut::connectivity::ScanEvent_ScanEventType;
using clearcut::connectivity::WakeEvent;
using clearcut::connectivity::WakeEvent_WakeEventType;
using bluetooth::metrics::BluetoothMetricsProto::A2DPSession;
using bluetooth::metrics::BluetoothMetricsProto::BluetoothLog;
using bluetooth::metrics::BluetoothMetricsProto::BluetoothSession;
using bluetooth::metrics::BluetoothMetricsProto::
BluetoothSession_ConnectionTechnologyType;
using bluetooth::metrics::BluetoothMetricsProto::
BluetoothSession_DisconnectReasonType;
using bluetooth::metrics::BluetoothMetricsProto::DeviceInfo;
using bluetooth::metrics::BluetoothMetricsProto::DeviceInfo_DeviceType;
using bluetooth::metrics::BluetoothMetricsProto::PairEvent;
using bluetooth::metrics::BluetoothMetricsProto::RFCommSession;
using bluetooth::metrics::BluetoothMetricsProto::ScanEvent;
using bluetooth::metrics::BluetoothMetricsProto::ScanEvent_ScanTechnologyType;
using bluetooth::metrics::BluetoothMetricsProto::ScanEvent_ScanEventType;
using bluetooth::metrics::BluetoothMetricsProto::WakeEvent;
using bluetooth::metrics::BluetoothMetricsProto::WakeEvent_WakeEventType;
using system_bt_osi::BluetoothMetricsLogger;
using system_bt_osi::A2dpSessionMetrics;
......
......@@ -214,7 +214,7 @@ cc_test {
"libbtdevice",
"libbt-hci",
"libosi",
"libbt-protos",
"libbt-protos-lite",
],
whole_static_libs: [
"libbluetooth-for-tests",
......@@ -338,7 +338,7 @@ cc_test {
"libbluetooth-types",
"libgmock",
"libosi",
"libbt-protos",
"libbt-protos-lite",
],
sanitize: {
cfi: false,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment