Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
platform_packages_modules_Bluetooth
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LMODroid
platform_packages_modules_Bluetooth
Commits
b50ef041
Commit
b50ef041
authored
1 year ago
by
Jack He
Committed by
Gerrit Code Review
1 year ago
Browse files
Options
Downloads
Plain Diff
Merge "VolumeControl: Early return in registerCallback" into main
parents
d6503c2b
b6d8b917
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
framework/java/android/bluetooth/BluetoothVolumeControl.java
+73
-84
73 additions, 84 deletions
framework/java/android/bluetooth/BluetoothVolumeControl.java
with
73 additions
and
84 deletions
framework/java/android/bluetooth/BluetoothVolumeControl.java
+
73
−
84
View file @
b50ef041
...
...
@@ -476,107 +476,96 @@ public final class BluetoothVolumeControl implements BluetoothProfile, AutoClose
throw
new
IllegalArgumentException
(
"This callback has already been registered"
);
}
final
IBluetoothVolumeControl
service
=
getService
();
if
(
service
==
null
)
{
return
;
}
try
{
final
IBluetoothVolumeControl
service
=
getService
();
if
(
service
!=
null
)
{
final
SynchronousResultReceiver
<
Integer
>
recv
=
SynchronousResultReceiver
.
get
();
final
SynchronousResultReceiver
<
Integer
>
recv
=
SynchronousResultReceiver
.
get
();
/* If the callback map is empty, we register the service-to-app callback.
* Otherwise, callback is registered in mCallbackExecutorMap and we just notify
* user over callback with current values.
*/
boolean
isRegisterCallbackRequired
=
mCallbackExecutorMap
.
isEmpty
();
mCallbackExecutorMap
.
put
(
callback
,
executor
);
if
(
isRegisterCallbackRequired
)
{
service
.
registerCallback
(
mCallback
,
mAttributionSource
,
recv
);
}
else
{
service
.
notifyNewRegisteredCallback
(
new
IBluetoothVolumeControlCallback
.
Stub
()
{
@Override
public
void
onVolumeOffsetChanged
(
BluetoothDevice
device
,
int
instanceId
,
int
volumeOffset
)
throws
RemoteException
{
Attributable
.
setAttributionSource
(
device
,
mAttributionSource
);
/* If the callback map is empty, we register the service-to-app callback.
* Otherwise, callback is registered in mCallbackExecutorMap and we just notify
* user over callback with current values.
*/
boolean
isRegisterCallbackRequired
=
mCallbackExecutorMap
.
isEmpty
();
mCallbackExecutorMap
.
put
(
callback
,
executor
);
// The old API operates on the first instance only
if
(
instanceId
==
1
)
{
try
{
executor
.
execute
(
()
->
callback
.
onVolumeOffsetChanged
(
device
,
volumeOffset
));
}
finally
{
// As this deprecated callback, might not be
// defined; continue
}
}
if
(
Flags
.
leaudioMultipleVocsInstancesApi
())
{
if
(
isRegisterCallbackRequired
)
{
service
.
registerCallback
(
mCallback
,
mAttributionSource
,
recv
);
}
else
{
service
.
notifyNewRegisteredCallback
(
new
IBluetoothVolumeControlCallback
.
Stub
()
{
@Override
public
void
onVolumeOffsetChanged
(
BluetoothDevice
device
,
int
instanceId
,
int
volumeOffset
)
throws
RemoteException
{
Attributable
.
setAttributionSource
(
device
,
mAttributionSource
);
// The old API operates on the first instance only
if
(
instanceId
==
1
)
{
try
{
executor
.
execute
(
()
->
callback
.
onVolumeOffsetChanged
(
device
,
instanceId
,
volumeOffset
));
device
,
volumeOffset
));
}
finally
{
// As this deprecated callback, might not be
// defined; continue
}
}
@Override
public
void
onVolumeOffsetAudioLocationChanged
(
BluetoothDevice
device
,
int
instanceId
,
int
location
)
throws
RemoteException
{
if
(
Flags
.
leaudioMultipleVocsInstancesApi
())
{
Attributable
.
setAttributionSource
(
device
,
mAttributionSource
);
executor
.
execute
(
()
->
callback
.
onVolumeOffsetAudioLocationChanged
(
device
,
instanceId
,
location
));
}
if
(
Flags
.
leaudioMultipleVocsInstancesApi
())
{
executor
.
execute
(
()
->
callback
.
onVolumeOffsetChanged
(
device
,
instanceId
,
volumeOffset
));
}
}
@Override
public
void
onVolumeOffsetAudioDescriptionChanged
(
BluetoothDevice
device
,
int
instanceId
,
String
audioDescription
)
throws
RemoteException
{
if
(
Flags
.
leaudioMultipleVocsInstancesApi
())
{
Attributable
.
setAttributionSource
(
device
,
mAttributionSource
);
executor
.
execute
(
()
->
callback
.
onVolumeOffsetAudioDescriptionChanged
(
device
,
instanceId
,
audioDescription
));
}
@Override
public
void
onVolumeOffsetAudioLocationChanged
(
BluetoothDevice
device
,
int
instanceId
,
int
location
)
throws
RemoteException
{
if
(
Flags
.
leaudioMultipleVocsInstancesApi
())
{
Attributable
.
setAttributionSource
(
device
,
mAttributionSource
);
executor
.
execute
(
()
->
callback
.
onVolumeOffsetAudioLocationChanged
(
device
,
instanceId
,
location
));
}
@Override
public
void
onDeviceVolumeChanged
(
BluetoothDevice
device
,
int
volume
)
throws
RemoteException
{
}
@Override
public
void
onVolumeOffsetAudioDescriptionChanged
(
BluetoothDevice
device
,
int
instanceId
,
String
audioDescription
)
throws
RemoteException
{
if
(
Flags
.
leaudioMultipleVocsInstancesApi
())
{
Attributable
.
setAttributionSource
(
device
,
mAttributionSource
);
executor
.
execute
(
()
->
callback
.
onDeviceVolumeChanged
(
device
,
volume
));
callback
.
onVolumeOffsetAudioDescriptionChanged
(
device
,
instanceId
,
audioDescription
));
}
},
mAttributionSource
,
recv
);
}
recv
.
awaitResultNoInterrupt
(
getSyncTimeout
()).
getValue
(
null
);
}
@Override
public
void
onDeviceVolumeChanged
(
BluetoothDevice
device
,
int
volume
)
throws
RemoteException
{
Attributable
.
setAttributionSource
(
device
,
mAttributionSource
);
executor
.
execute
(
()
->
callback
.
onDeviceVolumeChanged
(
device
,
volume
));
}
},
mAttributionSource
,
recv
);
}
recv
.
awaitResultNoInterrupt
(
getSyncTimeout
()).
getValue
(
null
);
}
catch
(
RemoteException
e
)
{
mCallbackExecutorMap
.
remove
(
callback
);
Log
.
e
(
TAG
,
e
.
toString
()
+
"\n"
+
Log
.
getStackTraceString
(
new
Throwable
()));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment