Messages.ets
5.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
/*
* Copyright (c) 2024 Hunan OpenValley Digital Industry Development Co., Ltd.
* 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
*
* http://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.
*/
import { BasicMessageChannel, BinaryMessenger, ByteBuffer, Log, MessageCodec, Any } from '@ohos/flutter_ohos';
import { Reply } from '@ohos/flutter_ohos/src/main/ets/plugin/common/BasicMessageChannel';
import StandardMessageCodec from '@ohos/flutter_ohos/src/main/ets/plugin/common/StandardMessageCodec';
import ArrayList from '@ohos.util.ArrayList';
import { WakelockApi } from './Wakelock';
const TAG = "wakelock.Messages";
export class ToggleMessage {
enable: Boolean = false;
toMap(): Map<String, Any> {
let toMapResult: Map<String, Any> = new Map<String, Any>();
toMapResult.set("enable", this.enable);
return toMapResult;
}
static fromMap(map: Map<String, Any>): ToggleMessage {
let fromMapResult = new ToggleMessage();
let enable: Boolean = map.get("enable") ?? false;
fromMapResult.enable = enable;
return fromMapResult;
}
}
export class IsEnabledMessage {
enabled: Boolean = false;
toMap(): Map<String, Any> {
let toMapResult: Map<String, Any> = new Map<String, Any>();
toMapResult.set("enabled", this.enabled);
return toMapResult;
}
static fromMap(map: Map<String, Any>): IsEnabledMessage {
let fromMapResult = new IsEnabledMessage();
let enabled: Boolean = map.get("enabled") ?? false;
fromMapResult.enabled = enabled;
return fromMapResult;
}
}
class WakelockApiCodec extends StandardMessageCodec {
static INSTANCE: WakelockApiCodec = new WakelockApiCodec();
private constructor() {
super();
}
readValueOfType(type: number, buffer: ByteBuffer): Any {
// Log.i(TAG, "readValueOfType type=" + type + ", buffer=" + buffer);
switch (type) {
case 128:
return IsEnabledMessage.fromMap(this.readValue(buffer) as Map<String, Any>);
case 129:
return ToggleMessage.fromMap(this.readValue(buffer) as Map<String, Any>);
default:
return super.readValueOfType(type, buffer);
}
}
writeValue(stream: ByteBuffer, value: Any): Any {
if (value instanceof IsEnabledMessage) {
stream.writeUint8(128);
this.writeValue(stream, value.toMap());
} else if (value instanceof ToggleMessage) {
stream.writeUint8(129);
this.writeValue(stream, value.toMap());
} else {
super.writeValue(stream, value);
}
}
}
export class Messages {
static getCodec(): MessageCodec<Any> {
return WakelockApiCodec.INSTANCE;
}
static setup(binaryMessenger: BinaryMessenger, api: WakelockApi): void {
{
const channel: BasicMessageChannel<Any> = new BasicMessageChannel<Any>(
binaryMessenger, "dev.flutter.pigeon.WakelockApi.toggle", Messages.getCodec());
if (api != null) {
channel.setMessageHandler({
onMessage(message: Any, reply: Reply<Any>): void {
// Log.d(TAG, 'onMessage reply:' + reply)
let wrapped: Map<String, Any> = new Map<String, Any>();
try {
let args: ArrayList<Any> = message as ArrayList<Any>;
let msgArg: ToggleMessage = args[0] as ToggleMessage;
Log.i(TAG, "received msgArg=" + JSON.stringify(msgArg));
if (msgArg == null) {
throw new Error("msgArg unexpectedly null.");
}
api.toggle(msgArg).then(()=> {
Log.i(TAG, "toggle success");
wrapped.set("result", null);
reply.reply(wrapped);
}).catch((err: Any) => {
Log.i(TAG, "toggle failed: " + JSON.stringify(err));
wrapped.set("error", Messages.wrapError(err));
reply.reply(wrapped);
});
} catch (err) {
Log.i(TAG, "toggle catch err: " + JSON.stringify(err));
wrapped.set("error", Messages.wrapError(err));
reply.reply(wrapped);
}
}
});
} else {
channel.setMessageHandler(null);
}
}
{
const channel: BasicMessageChannel<Any> = new BasicMessageChannel<Any>(
binaryMessenger, "dev.flutter.pigeon.WakelockApi.isEnabled", Messages.getCodec());
if (api != null) {
channel.setMessageHandler({
onMessage(message: Any, reply: Reply<Any>): void {
// Log.d(TAG, 'onMessage reply:' + reply)
let wrapped: Map<String, Any> = new Map<String, Any>();
try {
let output: IsEnabledMessage = api.isEnabled();
wrapped.set("result", output);
} catch (err) {
wrapped.set("error", Messages.wrapError(err))
}
reply.reply(wrapped)
}
});
} else {
channel.setMessageHandler(null);
}
}
}
static wrapError(error: Error): Map<String, Any> {
let errorMap: Map<String, Any> = new Map();
errorMap.set("message", error.message);
errorMap.set("code", error.name);
errorMap.set("details", null);
return errorMap;
}
}