-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiinputfilterhost.go
More file actions
171 lines (147 loc) · 4.47 KB
/
iinputfilterhost.go
File metadata and controls
171 lines (147 loc) · 4.47 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
package view
import (
"context"
"fmt"
"github.com/AndroidGoLab/binder/binder"
"github.com/AndroidGoLab/binder/parcel"
)
// Code generated by aidlgen. DO NOT EDIT.
const DescriptorIInputFilterHost = "android.view.IInputFilterHost"
const (
TransactionIInputFilterHostSendInputEvent = binder.FirstCallTransaction + 0
)
const (
MethodIInputFilterHostSendInputEvent = "sendInputEvent"
)
type IInputFilterHost interface {
AsBinder() binder.IBinder
SendInputEvent(ctx context.Context, event InputEvent, policyFlags int32) error
}
type InputFilterHostProxy struct {
Remote binder.IBinder
}
func NewInputFilterHostProxy(
remote binder.IBinder,
) *InputFilterHostProxy {
return &InputFilterHostProxy{Remote: remote}
}
func (p *InputFilterHostProxy) AsBinder() binder.IBinder {
return p.Remote
}
var _ IInputFilterHost = (*InputFilterHostProxy)(nil)
func (p *InputFilterHostProxy) SendInputEvent(
ctx context.Context,
event InputEvent,
policyFlags int32,
) error {
_data := parcel.New()
defer _data.Recycle()
_data.WriteInterfaceToken(DescriptorIInputFilterHost)
_sig := binder.ResolveMethodSignature(p.Remote, ctx, DescriptorIInputFilterHost, MethodIInputFilterHostSendInputEvent)
_compiledDescs := []string{
"Landroid/view/InputEvent;",
"I",
}
if _sig == nil || binder.SignatureMatches(_compiledDescs, _sig) {
_data.WriteInt32(1)
if _err := event.MarshalParcel(_data); _err != nil {
return _err
}
_data.WriteInt32(policyFlags)
} else {
_paramMap := binder.MatchParamsToSignature(_compiledDescs, _sig)
for _, _pi := range _paramMap {
switch _pi {
case 0:
_data.WriteInt32(1)
if _err := event.MarshalParcel(_data); _err != nil {
return _err
}
case 1:
_data.WriteInt32(policyFlags)
}
}
}
_code, _err := p.Remote.ResolveCode(ctx, DescriptorIInputFilterHost, MethodIInputFilterHostSendInputEvent)
if _err != nil {
return fmt.Errorf("resolving %s.%s: %w", DescriptorIInputFilterHost, MethodIInputFilterHostSendInputEvent, _err)
}
_, _err = p.Remote.Transact(ctx, _code, binder.FlagOneway, _data)
return _err
}
// InputFilterHostStub dispatches incoming binder transactions
// to a typed IInputFilterHost implementation.
type InputFilterHostStub struct {
Impl IInputFilterHost
Transport binder.VersionAwareTransport
}
var _ binder.TransactionReceiver = (*InputFilterHostStub)(nil)
func (s *InputFilterHostStub) Descriptor() string {
return DescriptorIInputFilterHost
}
func (s *InputFilterHostStub) 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 TransactionIInputFilterHostSendInputEvent:
var _arg_event InputEvent
{
_nullInd, _err := _data.ReadInt32()
if _err != nil {
return nil, _err
}
if _nullInd != 0 {
if _err = _arg_event.UnmarshalParcel(_data); _err != nil {
return nil, _err
}
}
}
_arg_policyFlags, _err := _data.ReadInt32()
if _err != nil {
return nil, _err
}
_err = s.Impl.SendInputEvent(ctx, _arg_event, _arg_policyFlags)
return nil, _err
default:
return nil, fmt.Errorf("unknown transaction code %d", code)
}
}
// IInputFilterHostServer is the server-side interface that user implementations
// provide to NewInputFilterHostStub. It contains only the business methods,
// without AsBinder (which is provided by the stub itself).
type IInputFilterHostServer interface {
SendInputEvent(ctx context.Context, event InputEvent, policyFlags int32) error
}
type inputFilterHostStubWrapper struct {
impl IInputFilterHostServer
stubBinder *binder.StubBinder
}
func (w *inputFilterHostStubWrapper) AsBinder() binder.IBinder {
return w.stubBinder
}
func (w *inputFilterHostStubWrapper) SendInputEvent(
ctx context.Context,
event InputEvent,
policyFlags int32,
) error {
return w.impl.SendInputEvent(ctx, event, policyFlags)
}
var _ IInputFilterHost = (*inputFilterHostStubWrapper)(nil)
// NewInputFilterHostStub creates a server-side IInputFilterHost wrapping the given
// server implementation. The returned value satisfies IInputFilterHost
// 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 NewInputFilterHostStub(
impl IInputFilterHostServer,
) IInputFilterHost {
wrapper := &inputFilterHostStubWrapper{impl: impl}
stub := &InputFilterHostStub{Impl: wrapper}
wrapper.stubBinder = binder.NewStubBinder(stub)
return wrapper
}