电子说
本示例展示通过[IDL的方式]和 [@ohos.rpc] 等接口实现了Ability与ServiceExtensionAbility之间的通信。
使用说明
1.启动应用后,首页展示城市的天气信息,当前温度每隔5S会刷新一次。
entry/src/main/ets/
|---Application
|---feature
| |---HomeFeature.ets // 任务信息组件
|---MainAbility
|---Mock
| |---RequestData.ts // 远程请求的数据
| |---WeatherData.ts // 天气页面数据
|---model
| |---FormDate.ts // 日期函数方法
| |---Main.ts // 数据类
|---pages
| |---home
| | |---BasicDataSource.ets // 懒加载封装类
| | |---HomeContent.ets // 内容组件
| | |---HoursWeather.ets // 天气组件(小时)
| | |---IndexHeader.ets // 首页头部组件
| | |---MultiDayWeather.ets // 天气组件(天)
| |---Home.ets // 首页
|---util
| |---Logger.ts // 日志工具
| |---Style.ts // 静态样式变量
/*
* Copyright (c) 2022 Huawei Device 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 rpc from '@ohos.rpc'
import { updateWeatherCallback } from './i_idl_weather_service'
import IIdlWeatherService from './i_idl_weather_service'
import Logger from '../../../util/Logger'
export default class IdlWeatherServiceProxy implements IIdlWeatherService {
constructor(proxy) {
this.proxy = proxy
}
updateWeather(data: number, callback: updateWeatherCallback): void {
let _option = new rpc.MessageOption(0)
let _data = new rpc.MessageParcel()
let _reply = new rpc.MessageParcel()
_data.writeInt(data)
this.proxy.sendRequest(IdlWeatherServiceProxy.COMMAND_UPDATE_WEATHER, _data, _reply, _option).then(function (result) {
if (result.errCode === 0) {
let _errCode = result.reply.readInt()
if (_errCode != 0) {
let _returnValue = undefined
callback(_errCode, _returnValue)
return
}
let _returnValue = result.reply.readInt()
callback(_errCode, _returnValue)
} else {
Logger.error("sendRequest failed, errCode: " + result.errCode)
}
})
}
static readonly COMMAND_UPDATE_WEATHER = 1
private proxy
}
/*
* Copyright (c) 2022 Huawei Device 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 rpc from '@ohos.rpc'
import { updateWeatherCallback } from './i_idl_weather_service'
import IIdlWeatherService from './i_idl_weather_service'
import Logger from '../../../util/Logger'
export default class IdlWeatherServiceStub extends rpc.RemoteObject implements IIdlWeatherService {
constructor(des: string) {
super(des)
}
onRemoteRequest(code: number, data, reply, option): boolean {
Logger.info("onRemoteRequest called, code = " + code)
switch (code) {
case IdlWeatherServiceStub.COMMAND_UPDATE_WEATHER: {
let _data = data.readInt()
this.updateWeather(_data, (errCode, returnValue) = > {
reply.writeInt(errCode)
if (errCode == 0) {
reply.writeInt(returnValue)
}
})
return true
}
default: {
Logger.error("invalid request code" + code)
break
}
}
return false
}
updateWeather(data: number, callback: updateWeatherCallback): void {
}
static readonly COMMAND_UPDATE_WEATHER = 1
}
/*
* Copyright (c) 2022 Huawei Device 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 Logger from '../util/Logger'
import IdlWeatherServiceProxy from '../MainAbility/data/IIdlWeatherServiceTS/idl_weather_service_proxy'
const BUNDLE_NAME = "com.example.abilityconnectserviceextension"
const SERVICE_EXTENSION_ABILITY_NAME = "ServiceExtAbility"
const ERROR_CODE = -1 // 失败
const SUCCESS_CODE = 0 // 成功
export default class HomeFeature {
connection = -1 // 初始值
remoteCallback = null
context = null
options = null
constructor(context) {
this.context = context
this.options = {
outObj: this,
// 连接成功时回调
onConnect: function (elementName, proxy) {
Logger.info(`onConnect success`)
// 接收来自服务返回的实例
let weatherProxy = new IdlWeatherServiceProxy(proxy)
weatherProxy.updateWeather(123, this.outObj.remoteCallback)
},
onDisconnect: function () {
Logger.info(`onDisconnect`)
},
onFailed: function () {
Logger.info(`onFailed`)
}
}
}
connectServiceExtAbility(callback) {
Logger.info(`connectServiceExtAbility`)
this.remoteCallback = callback
let want = {
bundleName: BUNDLE_NAME,
abilityName: SERVICE_EXTENSION_ABILITY_NAME
}
this.connection = this.context.connectAbility(want, this.options)
Logger.info(`connectServiceExtAbility result:${this.connection}`)
}
disconnectServiceExtAbility(callback) {
Logger.info(`disconnectServiceExtAbility`)
this.context.disconnectAbility(this.connection).then((data) = > {
Logger.info(`disconnectAbility success:${JSON.stringify(data)}`)
callback(SUCCESS_CODE)
}).catch((error) = > {
Logger.error(`disconnectAbility failed:${JSON.stringify(error)}`)
callback(ERROR_CODE)
})
}
}
/*`HarmonyOS与OpenHarmony鸿蒙文档籽料:mau123789是v直接拿`
* Copyright (c) 2022 Huawei Device 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 ServiceExtension from '@ohos.app.ability.ServiceExtensionAbility'
import IdlWeatherServiceStub from '../MainAbility/data/IIdlWeatherServiceTS/idl_weather_service_stub'
import { updateWeatherCallback } from "../MainAbility/data/IIdlWeatherServiceTS/i_idl_weather_service"
import { getUpdateTemperature } from '../mock/RequestData'
import Logger from '../util/Logger'
class WeatherServiceStub extends IdlWeatherServiceStub {
constructor(des) {
super(des)
}
updateWeather(data: number, callback: updateWeatherCallback): void {
let temperature = getUpdateTemperature()
callback(0, temperature)
Logger.info(`testIntTransaction: temperature: ${temperature}`)
}
}
export default class ServiceExtAbility extends ServiceExtension {
onCreate(want) {
Logger.info(`onCreate, want: ${want.abilityName}`)
}
onRequest(want, startId) {
Logger.info(`onRequest, want: ${want.abilityName}`)
}
onConnect(want) {
Logger.info(`onConnect , want: ${want.abilityName}`)
return new WeatherServiceStub("weather service stub")
}
onDisconnect(want) {
Logger.info(`onDisconnect, want: ${want.abilityName}`)
}
onDestroy() {
Logger.info(`onDestroy`)
}
}
审核编辑 黄宇
全部0条评论
快来发表一下你的评论吧 !