-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathibluetoothpancallback.go
More file actions
176 lines (148 loc) · 5.06 KB
/
ibluetoothpancallback.go
File metadata and controls
176 lines (148 loc) · 5.06 KB
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
package bluetooth
import (
"context"
"fmt"
"github.com/AndroidGoLab/binder/binder"
"github.com/AndroidGoLab/binder/parcel"
)
// Code generated by aidlgen. DO NOT EDIT.
const DescriptorIBluetoothPanCallback = "android.bluetooth.IBluetoothPanCallback"
const (
TransactionIBluetoothPanCallbackOnAvailable = binder.FirstCallTransaction + 0
TransactionIBluetoothPanCallbackOnUnavailable = binder.FirstCallTransaction + 1
)
const (
MethodIBluetoothPanCallbackOnAvailable = "onAvailable"
MethodIBluetoothPanCallbackOnUnavailable = "onUnavailable"
)
type IBluetoothPanCallback interface {
AsBinder() binder.IBinder
OnAvailable(ctx context.Context, iface string) error
OnUnavailable(ctx context.Context) error
}
type BluetoothPanCallbackProxy struct {
Remote binder.IBinder
}
func NewBluetoothPanCallbackProxy(
remote binder.IBinder,
) *BluetoothPanCallbackProxy {
return &BluetoothPanCallbackProxy{Remote: remote}
}
func (p *BluetoothPanCallbackProxy) AsBinder() binder.IBinder {
return p.Remote
}
var _ IBluetoothPanCallback = (*BluetoothPanCallbackProxy)(nil)
func (p *BluetoothPanCallbackProxy) OnAvailable(
ctx context.Context,
iface string,
) error {
_data := parcel.New()
defer _data.Recycle()
_data.WriteInterfaceToken(DescriptorIBluetoothPanCallback)
_sig := binder.ResolveMethodSignature(p.Remote, ctx, DescriptorIBluetoothPanCallback, MethodIBluetoothPanCallbackOnAvailable)
_compiledDescs := []string{
"Ljava/lang/String;",
}
if _sig == nil || binder.SignatureMatches(_compiledDescs, _sig) {
_data.WriteString16(iface)
} else {
_paramMap := binder.MatchParamsToSignature(_compiledDescs, _sig)
for _, _pi := range _paramMap {
switch _pi {
case 0:
_data.WriteString16(iface)
}
}
}
_code, _err := p.Remote.ResolveCode(ctx, DescriptorIBluetoothPanCallback, MethodIBluetoothPanCallbackOnAvailable)
if _err != nil {
return fmt.Errorf("resolving %s.%s: %w", DescriptorIBluetoothPanCallback, MethodIBluetoothPanCallbackOnAvailable, _err)
}
_, _err = p.Remote.Transact(ctx, _code, binder.FlagOneway, _data)
return _err
}
func (p *BluetoothPanCallbackProxy) OnUnavailable(
ctx context.Context,
) error {
_data := parcel.New()
defer _data.Recycle()
_data.WriteInterfaceToken(DescriptorIBluetoothPanCallback)
_code, _err := p.Remote.ResolveCode(ctx, DescriptorIBluetoothPanCallback, MethodIBluetoothPanCallbackOnUnavailable)
if _err != nil {
return fmt.Errorf("resolving %s.%s: %w", DescriptorIBluetoothPanCallback, MethodIBluetoothPanCallbackOnUnavailable, _err)
}
_, _err = p.Remote.Transact(ctx, _code, binder.FlagOneway, _data)
return _err
}
// BluetoothPanCallbackStub dispatches incoming binder transactions
// to a typed IBluetoothPanCallback implementation.
type BluetoothPanCallbackStub struct {
Impl IBluetoothPanCallback
Transport binder.VersionAwareTransport
}
var _ binder.TransactionReceiver = (*BluetoothPanCallbackStub)(nil)
func (s *BluetoothPanCallbackStub) Descriptor() string {
return DescriptorIBluetoothPanCallback
}
func (s *BluetoothPanCallbackStub) OnTransaction(
ctx context.Context,
code binder.TransactionCode,
_data *parcel.Parcel,
) (*parcel.Parcel, error) {
if _, _err := _data.ReadInterfaceToken(); _err != nil {
return nil, _err
}
switch code {
case TransactionIBluetoothPanCallbackOnAvailable:
_arg_iface, _err := _data.ReadString16()
if _err != nil {
return nil, _err
}
_err = s.Impl.OnAvailable(ctx, _arg_iface)
return nil, _err
case TransactionIBluetoothPanCallbackOnUnavailable:
_err := s.Impl.OnUnavailable(ctx)
return nil, _err
default:
return nil, fmt.Errorf("unknown transaction code %d", code)
}
}
// IBluetoothPanCallbackServer is the server-side interface that user implementations
// provide to NewBluetoothPanCallbackStub. It contains only the business methods,
// without AsBinder (which is provided by the stub itself).
type IBluetoothPanCallbackServer interface {
OnAvailable(ctx context.Context, iface string) error
OnUnavailable(ctx context.Context) error
}
type bluetoothPanCallbackStubWrapper struct {
impl IBluetoothPanCallbackServer
stubBinder *binder.StubBinder
}
func (w *bluetoothPanCallbackStubWrapper) AsBinder() binder.IBinder {
return w.stubBinder
}
func (w *bluetoothPanCallbackStubWrapper) OnAvailable(
ctx context.Context,
iface string,
) error {
return w.impl.OnAvailable(ctx, iface)
}
func (w *bluetoothPanCallbackStubWrapper) OnUnavailable(
ctx context.Context,
) error {
return w.impl.OnUnavailable(ctx)
}
var _ IBluetoothPanCallback = (*bluetoothPanCallbackStubWrapper)(nil)
// NewBluetoothPanCallbackStub creates a server-side IBluetoothPanCallback wrapping the given
// server implementation. The returned value satisfies IBluetoothPanCallback
// and can be passed to proxy methods; its AsBinder() returns a
// *binder.StubBinder that is auto-registered with the binder
// driver on first use.
func NewBluetoothPanCallbackStub(
impl IBluetoothPanCallbackServer,
) IBluetoothPanCallback {
wrapper := &bluetoothPanCallbackStubWrapper{impl: impl}
stub := &BluetoothPanCallbackStub{Impl: wrapper}
wrapper.stubBinder = binder.NewStubBinder(stub)
return wrapper
}