Skip to content

Commit

Permalink
analytics: Modify the returned code with a new OperationResultCodeWit…
Browse files Browse the repository at this point in the history
…hMediums for Bluetooth - StartAdvertising/UpdateAdvertisingOptions, I

PiperOrigin-RevId: 697841540
  • Loading branch information
edwinwugoog authored and copybara-github committed Nov 19, 2024
1 parent b00d9ab commit f88d632
Show file tree
Hide file tree
Showing 44 changed files with 2,603 additions and 1,063 deletions.
3 changes: 3 additions & 0 deletions connections/implementation/analytics/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ cc_library(
"throughput_recorder.cc",
],
hdrs = [
"advertising_metadata_params.h",
"analytics_recorder.h",
"connection_attempt_metadata_params.h",
"discovery_metadata_params.h",
"packet_meta_data.h",
"throughput_recorder.h",
],
Expand Down Expand Up @@ -57,6 +59,7 @@ cc_test(
shard_count = 16,
deps = [
":analytics",
"//connections:core_types",
"//internal/analytics:mock_event_logger",
"//internal/platform:base",
"//internal/platform:error_code_recorder",
Expand Down
36 changes: 36 additions & 0 deletions connections/implementation/analytics/advertising_metadata_params.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
// Copyright 2024 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
//
// https://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.

#ifndef ANALYTICS_ADVERTISING_METADATA_PARAMS_H_
#define ANALYTICS_ADVERTISING_METADATA_PARAMS_H_

#include <vector>

#include "internal/proto/analytics/connections_log.pb.h"

namespace nearby {

// A struct to construct AdvertisingMetadata for the analytics recorder.
struct AdvertisingMetadataParams {
bool is_extended_advertisement_supported = false;
int connected_ap_frequency = 0;
bool is_nfc_available = false;
std::vector<location::nearby::analytics::proto::ConnectionsLog::
OperationResultWithMedium>
operation_result_with_mediums = {};
};

} // namespace nearby

#endif // ANALYTICS_ADVERTISING_METADATA_PARAMS_H_
Loading

0 comments on commit f88d632

Please sign in to comment.