MirrorLink(三 UPNP)- Application Server Service

2024-02-11 13:32

本文主要是介绍MirrorLink(三 UPNP)- Application Server Service,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、UPnP Application Server Service

1、Service Type

urn:schemas-upnp-org:service:TmApplicationServer:1

2、State Variables

(1)AppStatusUpdate:是一个以逗号作为分隔符的appIDs(status发生变化的)的队列,appIDs参考TmApplicationServer 第一次event上来的的applist,每个appID都是A_ARG_TYPE_AppID类型。

例如:<AppStatusUpdate>0x5,0x1,0x4,0x3,0x7,0x2,0x6</AppStatusUpdate>

(2)AppListUpdate:是一个以逗号作为分隔符的appIDs(entries发生变化的)的队列,每个appID都是A_ARG_TYPE_AppID类型。

例如:<AppListUpdate>0x5,0x1,0x4,0x3,0x7,0x2,0x6</AppListUpdate>

(3)A_ARG_TYPE_AppStatus:这个变量是用xml格式表示的。表示的是某个特定的应用或者所有应用的status,这些应用都是可以被远程控制的。

(4)A_ARG_TYPE_AppID:32bit的unsigned int类型(16进制,以0x开头)

     0x45ab and 0x45AB (case insensitivity of the hexadecimal numbers) 
 0x45ab and 0X45ab (case insensitivity of the 0x) 
 0x00001234 and 0x001234 (leading zeros do not matter)

(5)A_ARG_TYPE_ProfileID:大约等于0的unsigned int

(6)A_ARG_TYPE_AppList:这个变量是用xml格式表示的。表示所有应用的列表

每个application用到的protocol如下:

(7)A_ARG_TYPE_URI:格式如下:

各个application的url组成:

(8) A_ARG_TYPE_String :sting类型
(9) A_ARG_TYPE_Bool :bool类型,false或者true
(10) A_ARG_TYPE_INT :unsigned int
(11) A_ARG_TYPE_AppCertificateInfo:这个变量是用xml格式表示的,结构如下:

UUID格式如下:

UUID = 4 * <hexOctet> “-” 2 * <hexOctet> “-” 2 * <hexOctet> “-” 2 * <hexOctet> “-” 6 * <hexOctet> 
hexOctet = <hexDigit> <hexDigit> 
hexDigit = “0”|“1”|“2”|“3”|“4”|“5”|“6”|“7”|“8”|“9”| “a”|“b”|“c”|“d”|“e”|“f”|“A”|“B”|“C”|“D”|“E”|“F”

例如:“uuid:2fac1234-31f8-11b4-a222-08002b34c003”

3、event,application service需要订阅的event如下图所示:

二、Action

1、GetApplicationList:这个action可以获取到一个application列表,这里面的application都可以远程开启和关闭

参数:

         AppListingFilter:这是一个过滤器,具体使用方法看文档,一般写"*"或者""表示获取所有的application及其属性

         ProfileID:这个是TmClientProfile service获取到的,如果TmClientProfile service没有设置,则为0

返回值:AppListing:返回一个applications的列表,这些 applications可以被远程控制和访问(可以用LaunchApplication, TerminateApplication and GetApplicationStatus actions控制)

2、LaunchApplication:用来远程启动一个程序。即使没有再UI上的程序也可以启动,如果某个程序使用相同profileID,调用LaunchApplication则会让此程序变为前台执行并或者UI控制权。

参数:AppID:GetApplicationList中获取到的中的某个AppID

ProfileID:这个是TmClientProfile service获取到的,如果TmClientProfile service没有设置,则为0

返回值:AppURI:一个对应protocol ID的url,protocol ID对应的是GetApplicationList action返回值里面的<remotingInfo>中的

例如:

<remotingInfo>
            <protocolID>RTP</protocolID>
            <format>98</format>
            <direction>in</direction>
            <audioIPL>4800</audioIPL>
            <audioMPL>9600</audioMPL>
</remotingInfo>

3、TerminateApplication:这个action可以使client远程关闭AppList的应用。即使这个app不是用LaunchApplication action启动的,也可以关闭。这个action有一个参数是profileID,指的是关闭实现了这个profile的实例,如果不是用LaunchApplication,启动的则profileID设置为0

参数:AppID:GetApplicationList中获取到的中的某个AppID

ProfileID:这个是TmClientProfile service获取到的,如果TmClientProfile service没有设置,则为0

返回值:TerminationResult:关闭成功为true,关闭失败为false

例如:

<TerminationResult>true</TerminationResult>

4、GetApplicationStatus:根据AppID获取对应application的status,如果AppID设置为"*",则返回所有application的status

参数:AppID,如果为"*"则返回所有application的status

返回值:AppStatus

5、GetApplicationCertificateInfo:获取一个application的证书数据

注意:AppID没说可以用"*"

6、GetCertifiedApplicationsList:Get a list of certified applications, matching a set of criteria

参数:AppCertFilter:具体看手册,一般用"*",表示不过滤

ProfileID:跟上面其他action的一样

返回值:CertifiedAppList:一个以逗号为分隔符的appIDs的列表

<AppID>0x5</AppID>

7、GetAppCertificationStatus:Return the certification status of a given application, under the provided properties

参数:AppID:某个application

AppCertFilter:一般用"*"

ProfileID:

返回值:AppCertified:返回认证的状态,认证为true,未认证为false

三、关于个数据类型的Example查看文档后续解释

这篇关于MirrorLink(三 UPNP)- Application Server Service的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/699911

相关文章

red5-server源码

red5-server源码:https://github.com/Red5/red5-server

(南京观海微电子)——GH7006 Application Note

Features ⚫ Single chip solution for a WXGA α-Si type LCD display ⚫ Integrate 1200 channel source driver and timing controller ⚫ Display Resolution: ◼ 800 RGB x 480 ◼ 640 RGB x 480 ⚫ Display int

UserWarning: mkl-service package failed to import

安装完成anaconda,并设置了两个环境变量  之后再控制台运行python环境,输入import numpy as np,提示错误 D:\InstallFolder\Anaconda3\lib\site-packages\numpy\__init__.py:143: UserWarning: mkl-service package failed to import, therefore

安装SQL2005后SQL Server Management Studio 没有出来的解决方案

一种情况,在安装 sqlServer2005 时 居然出现两个警告: 1 Com+ 目录要求 2 Edition change check 郁闷!网上说出现两个警告,是肯定装不成功的!我抱着侥幸的态度试了下,成功了。 安装成功后,正准备 “ 仅工具、联机丛书和示例(T)” 但是安装不了,他提示我“工作站组件”安装过了对现有组件无法更新或升级。 解决办法: 1 打开“控

ERROR 2003 (HY000): Can't connect to MySQL server on (10061)

在linux系统上装了一个mysql-5.5,启动后本机都是可以访问的,操作都正常,同时建了一个%的用户(支持远程访问), root@debian:/# mysql -u loongson -pEnter password: Welcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id

jdbc连接数据库使用sid和service_name的区别 ?

问题描述: ORA-12505, TNS:listener does not currently know of SID given in connect descriptor The Connection descriptor used by the client was: 10.12.162.84:1521:xxxx  oracle数据的tnsnames.ora中配置的是:SERVICE

Oracle和Sql_Server 部分sql语句的区别

比如:A表中, 字段:gxmlflag  number;  比如数据:20210115 字段:gxmldate date ;    比如数据:2021-01-15 09:50:50 一、在Oracle数据库中: 1、insert 和 update 语句: t.gxmlflag = to_char(sysdate,'yyyymmdd'),t.gxmldate=sysdate 比如:update f

【VueJS】live-server 快速搭建服务 及 注意事项

本地开发常常需要搭建临时的服务,第一时间我们会想到用 http-server。 但现在流行修改文件浏览器自动刷新,这里可以使用 live-server 很简单就能启动一个看起来很专业的本地服务。 你只需要全局安装live-server: npm install -g live-server 并在项目根目录执行这条命令: PS E:\AblazeProject\Vue> live-serv

【虚拟机/服务器】Ubuntu Server上配置FTP服务器

当使用FTP工具连接但 Ubuntu Server 未安装 vsftpd 时会出现这样的报错 安装vsftpd sudo apt-get install vsftpd 卸载vsftpd sudo apt-get remove --purge vsftpd 当 Ubuntu Server 未启动 vsftpd 时会出现这样的报错 启动vsftpd sudo service

【虚拟机/服务器】在Ubuntu Server上从零开始配置Nginx、Mysql、PHP7.0

1、升级当前系统数据源 sudo apt-get update && sudo apt-get upgrade 遇到询问是否继续,输入 y 或直接回车继续就好了 2、安装 Nginx sudo apt-get install nginx 安装完成之后就会默认自动开启 Nginx 服务器,可以通过 ps -ef | grep nginx 查看。 3、配置 Nginx 环境 1)替换默认