1 //
2 // Copyright (C) 2015 Google, Inc.
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at:
7 //
8 // http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 #include "service/hal/gatt_helpers.h"
18
19 namespace bluetooth {
20 namespace hal {
21
22 // Populates a HAL btgatt_srvc_id_t structure from the given GattIdentifier that
23 // represents a service ID.
GetHALServiceId(const GattIdentifier & id,btgatt_srvc_id_t * hal_id)24 void GetHALServiceId(const GattIdentifier& id, btgatt_srvc_id_t* hal_id) {
25 CHECK(hal_id);
26 CHECK(id.IsService());
27
28 memset(hal_id, 0, sizeof(*hal_id));
29 hal_id->is_primary = id.is_primary();
30 hal_id->id.inst_id = id.service_instance_id();
31 hal_id->id.uuid = id.service_uuid().GetBlueDroid();
32 }
33
GetServiceIdFromHAL(const btgatt_srvc_id_t & srvc_id)34 std::unique_ptr<GattIdentifier> GetServiceIdFromHAL(
35 const btgatt_srvc_id_t& srvc_id) {
36 UUID uuid(srvc_id.id.uuid);
37
38 return GattIdentifier::CreateServiceId(
39 "", srvc_id.id.inst_id, uuid, srvc_id.is_primary);
40 }
41
42 } // namespace hal
43 } // namespace bluetooth
44