`

upnp协议学习笔记一

阅读更多

/**
* 测试UPNP协议 显法移动设备
*
* @time 下午12:59:57
* @author zhenhuayue
* @Email zhenhuayue@sina.com
*/
public class UPNP_DempActivity extends ListActivity {
// 设备列表适配器
private ArrayAdapter<DeviceDisplay> deviceAdapter;
private RegistryListener listener = new BrowseRegistryListener();
private AndroidUpnpService upnpService;


private int screenWidth, screenHeight;


@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);


DisplayMetrics dm = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(dm);
screenWidth = dm.widthPixels;
screenHeight = dm.heightPixels;
Log.e("tag", "屏幕大小为:" + screenWidth + "*" + screenHeight);
requestWindowFeature(Window.FEATURE_NO_TITLE);
this.getWindow().setFlags(screenWidth, screenHeight);


deviceAdapter = new ArrayAdapter<DeviceDisplay>(UPNP_DempActivity.this, android.R.layout.simple_list_item_1);
setListAdapter(deviceAdapter);
// 绑定数据
getApplicationContext().bindService(new Intent(this, AndroidUpnpServiceImpl.class), serviceConnection, Context.BIND_AUTO_CREATE);


}


@Override
protected void onResume() {
super.onResume();
if (null != upnpService) {
upnpService.getRegistry().addListener(listener);
}
showNotification();
}


@Override
protected void onDestroy() {
super.onDestroy();
if (null != upnpService) {
upnpService.getRegistry().removeListener(listener);// 移除监听
}


// 与service解除绑定
getApplicationContext().unbindService(serviceConnection);
// 删除标题栏信息
UPNP_DempActivity.this.stopService(new Intent(UPNP_DempActivity.this, ShowNotificationService.class));


}


/**
* @see 设备档案监听
* @time 下午02:08:51
* @author zhenhuayue
* @Email zhenhuayue@sina.com
*/
class BrowseRegistryListener extends DefaultRegistryListener {
@Override
public void remoteDeviceDiscoveryStarted(Registry registry, RemoteDevice device) {
Log.e("tag", "开始搜索设备" + device.getDisplayString());
deviceAdded(device);
}


@Override
public void remoteDeviceDiscoveryFailed(Registry registry, final RemoteDevice device, final Exception ex) {
Log.e("tag", "搜索设备失败:" + device.getDisplayString() + "=>" + ex);
runOnUiThread(new Runnable() {
public void run() {
Toast.makeText(UPNP_DempActivity.this,
"Discovery failed of '" + device.getDisplayString() + "': " + (ex != null ? ex.toString() : "Couldn't retrieve device/service descriptors"),
Toast.LENGTH_LONG).show();
}
});
deviceRemoved(device);


}


@Override
public void remoteDeviceAdded(Registry registry, RemoteDevice device) {
Log.e("tag", "移动设备可见" + device.getDisplayString());
deviceAdded(device);
}


@Override
public void remoteDeviceUpdated(Registry registry, RemoteDevice device) {
Log.e("tag", "移动设备更新" + device.getDisplayString());
deviceAdded(device);
}


@Override
public void remoteDeviceRemoved(Registry registry, RemoteDevice device) {
Log.e("tag", "移动设备移除:" + device.getDisplayString());
deviceRemoved(device);


}


@Override
public void localDeviceAdded(Registry registry, LocalDevice device) {
Log.e("tag", "本地设备添加" + device.getDisplayString());
deviceAdded(device);
}


@Override
public void localDeviceRemoved(Registry registry, LocalDevice device) {
Log.e("tag", "本地设备移除" + device.getDisplayString());
deviceRemoved(device);
}


@Override
public void beforeShutdown(Registry registry) {
Log.e("tag", "在关闭之前设备的数量为:" + registry.getDevices().size());
}


@Override
public void afterShutdown() {
Log.e("tag", "开始搜索设备");


}


/**
* 添加设备
*/
@SuppressWarnings("rawtypes")
public void deviceAdded(final Device device) {
runOnUiThread(new Runnable() {


@Override
public void run() {
DeviceDisplay d = new DeviceDisplay(device);
int position = deviceAdapter.getPosition(d);
if (position >= 0) {
deviceAdapter.remove(d);
deviceAdapter.insert(d, position);
} else {
deviceAdapter.add(d);
}


}
});
}


/**
* @see 移除设备
*/
@SuppressWarnings("rawtypes")
public void deviceRemoved(final Device device) {
runOnUiThread(new Runnable() {
public void run() {
deviceAdapter.remove(new DeviceDisplay(device));
}
});
}


}


private ServiceConnection serviceConnection = new ServiceConnection() {
@Override
public void onServiceConnected(ComponentName className, IBinder service) {
Log.e("tag", "serviceConnection()");
upnpService = (AndroidUpnpService) service;


deviceAdapter.clear();
for (Device device : upnpService.getRegistry().getDevices()) {
((BrowseRegistryListener) listener).deviceAdded(device);
}


upnpService.getRegistry().addListener(listener);


upnpService.getControlPoint().search();
}


public void onServiceDisconnected(ComponentName className) {
upnpService = null;
}


};


@Override
public boolean onCreateOptionsMenu(Menu menu) {
menu.add(0, 0, 0, R.string.search_lan).setIcon(android.R.drawable.ic_menu_search);
return true;
}


@Override
public boolean onOptionsItemSelected(MenuItem item) {
Log.e("tag", "search1");
if (item.getItemId() == 0 && upnpService != null) {
Log.e("tag", "search2");
upnpService.getRegistry().removeAllRemoteDevices();
upnpService.getControlPoint().search();
}
return false;
}


/************************* 常用方法 ***************************************************/
/**
* 在状态栏(标题栏)显示当前应用信息
*/
private void showNotification() {
Log.e("tag", "showNotification()");
Intent intent = new Intent(UPNP_DempActivity.this, ShowNotificationService.class);
intent.setAction(ShowNotificationService.ACTION);
startService(intent);

}

}

 

/**
* @see 设备对象
* @time 下午01:49:21
* @author zhenhuayue
* @Email zhenhuayue@sina.com
*/
@SuppressWarnings("rawtypes")
public class DeviceDisplay {
Device device;


public DeviceDisplay(Device device) {
this.device = device;
}


public Device getDevice() {
return device;
}


@Override
public boolean equals(Object o) {
if (this == o)
return true;
if (o == null || getClass() != o.getClass())
return false;
DeviceDisplay that = (DeviceDisplay) o;
return device.equals(that.device);
}


@Override
public int hashCode() {
return device.hashCode();
}


@Override
public String toString() {
return device.isFullyHydrated() ? device.getDisplayString() : device.getDisplayString() + " *";
}
}

 

 

/**
* 用于在状态栏(标题栏)显示本应用信息的服务
*
* @time 上午09:55:06
* @author zhenhuayue
* @Email zhenhuayue@sina.com
*/
public class ShowNotificationService extends Service {
public static String ACTION = "cn.yue.upnp.service.ShowNotificationService.SHOWNOTIFICATION";
private NotificationManager manager;
private List<ProcessInfo> processInfos;


/**
*
*/
@Override
public void onCreate() {
Log.e("tag", "showNotificationService is onCreate!");
// 取得消息管理器
manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
}


@Override
public void onStart(Intent intent, int startId) {
Log.e("tag", "showNotificationService onStart()");
if (null != intent && !"".equals(intent)) {
createNotification(intent);
}
}


@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.e("tag", "showNotificationService onStartCommand()");
createNotification(intent);
return START_STICKY;
}


@Override
public void onDestroy() {
Log.e("tag", "showNotificationService onDestroy()");
manager.cancel(R.string.app_name);
stopForeground(false);
}


@Override
public IBinder onBind(Intent intent) {
return null;
}


/**
* 取得当前应用所占内存数
*/
private void getRunningAppProcess() {
// 取得activityManager
ActivityManager activityManager = (ActivityManager) getSystemService(ACTIVITY_SERVICE);
// 取得所有进程信息
List<RunningAppProcessInfo> runningAppProcessInfos = activityManager.getRunningAppProcesses();
processInfos = new ArrayList<ProcessInfo>();
// 遍历进程信息取得所需内容
for (RunningAppProcessInfo info : runningAppProcessInfos) {
ProcessInfo processInfo = new ProcessInfo();
processInfo.setPid(info.pid);
processInfo.setUid(info.uid);
processInfo.setProcessName(info.processName);
processInfo.setPkName(info.pkgList);


// 取得进程内存
int[] mempid = new int[] { info.pid };
android.os.Debug.MemoryInfo[] memoryInfo = activityManager.getProcessMemoryInfo(mempid);
processInfo.setMemSize(memoryInfo[0].dalvikPrivateDirty);


processInfos.add(processInfo);
}


}


/**
* 新建消息
*/
private void createNotification(Intent intent) {
// TODO 此处需要实时更新
int temp = 0;
String unit = "MB";
getRunningAppProcess();
if (processInfos.size() > 0) {
for (int i = 0; i < processInfos.size(); i++) {
temp += processInfos.get(i).getMemSize();
}


// 如果小于1024就显示kb,否则显示mb
if (temp < 1024) {
unit = "KB";
} else {
temp = temp / 1024;
unit = "MB";
}


}


CharSequence text = getText(R.string.app_name);
Notification notification = new Notification(R.drawable.ic_launcher, text, System.currentTimeMillis());
// 取得当前cpu占用率


// 设置启动对象
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, new Intent(this, UPNP_DempActivity.class), 0);
notification.setLatestEventInfo(this, text, "RAM:" + temp + unit + " \t CPU:" + 0 + "%", pendingIntent);
// startForeground(R.string.app_name, notification);
setForeground(true);
manager.notify(R.string.app_name, notification);
}


}

分享到:
评论

相关推荐

    upnp协议介绍以及相关资料

    UPnP(通用即插即用,Universal Plug and Play)是一种网络通信协议,旨在简化设备间的发现、控制和通信,特别是家庭和小型办公环境中的智能设备。这个协议允许设备,如打印机、摄像头、智能电视或智能家居系统,...

    UPnP协议编程实践

    关于UPnP协议的框架性介绍,您可以参考《UPnP编程实践》系列的第一篇。UPnP协议的设备发现过程使用简单服务发现协议,此协议实现了在网络中发现网络服务,控制点定位网络上相关资源和设备在网络上声明其可用性的方法...

    基于Linux的UPnP协议栈结构分析及其在嵌入式通信系统中的应用研究.pdf

    1. **设备控制协议(Device Control Protocol)**:这是UPnP协议的核心部分,用于设备间的交互。设备描述文档(Device Description Document)由XML编写,详细列出了设备的特性、服务和接口。服务是设备提供的最小...

    Upnp协议标准 中文版

    UPnP(通用即插即用,Universal Plug and Play)是一种网络通信协议,旨在简化设备间的发现、控制和通信,尤其适用于家庭和小型办公环境中的智能设备。这份“Upnp协议标准中文版”提供了全面的协议规范和开发指南,...

    基于Upnp协议的DMR简易播放器

    基于Upnp协议的DMR(Digital Media Renderer)简易播放器是一种利用DLNA(Digital Living Network Alliance)规范的多媒体设备控制与交互系统。这个播放器是通过集成开源库Platinum来实现的,旨在提供一种简单的方式...

    UPnP协议路由器端口映射DLL模块

    UPnP(通用即插即用,Universal Plug and Play)是一种网络协议,旨在简化家庭和小型办公室网络中的设备连接。这个协议允许设备自动发现网络上的其他设备和服务,无需手动配置。在“UPnP协议路由器端口映射DLL模块”...

    UPNP协议与网关文档

    UPNP协议与架构,以及所有UPNP网关功能、模板文档

    UPNP 协议分析与实现

    1. UPNP协议格式: UPNP基于Internet Protocol Suite(TCP/IP协议族),主要由以下几部分组成: - SSDP(Simple Service Discovery Protocol):用于设备和服务的发现。SSDP通过发送和接收HTTP的M-SEARCH请求来...

    UPnP协议的分析及实现.doc

    1. **设备发现**:使用SSDP协议进行设备发现。当一个控制点(例如个人电脑或智能手机)接入网络时,会发送一个M-SEARCH请求来寻找可用的服务。 2. **服务描述**:设备接收到M-SEARCH请求后,通过HTTP响应返回包含...

    upnp协议中文资料(DLNA)

    UPNP协议是一种基于Internet传输协议(如TCP/IP)的网络架构,其核心思想是设备的自我发现和自我配置。它包括了设备发现、服务描述、事件订阅和控制以及数据传输等几个主要部分。设备发现通过SSDP(简单服务发现协议...

    基于uPnP协议在DLNA架构中多媒体播放设备DMP的开发

    uPnP(Universal Plug and Play)协议是一种旨在简化电子设备网络连接的标准,允许设备自动发现并建立通信,无需复杂的配置过程。它的特性包括设备和媒介的独立性、平台独立性、基于互联网技术、用户界面控制、程序...

    UPnP协议的分析及实现

    ### UPnP协议的分析及实现 #### 一、引言 随着计算机产业及网络技术的飞速发展,嵌入式系统与家庭网络通信成为研究热点。越来越多的嵌入式设备出现,促使人们寻找一种有效的方式来实现这些设备在家庭网络中的互联...

    CyberLink uPnP协议栈和开发指南

    《CyberLink uPnP协议栈与开发指南》是一份深度探讨家庭网络中设备互操作性的技术资料,主要关注Intel的Java实现版本。uPnP(Universal Plug and Play)和DLNA(Digital Living Network Alliance)是两个在智能设备...

    UPNP 协议说明——设备架构

    UPnP 设备架构是 UPnP 技术的基础,通过本文档的介绍,我们可以了解到 UPnP 技术如何通过一系列协议实现设备之间的自动发现、配置和服务共享。这对于构建智能家居系统、企业网络环境等方面具有重要的意义。同时,...

    行业文档-设计装置-基于UPNP协议的网络多媒体电视机.zip

    UPNP(Universal Plug and Play,通用即插即用)协议是一种网络通信协议,主要用于设备间的自动发现、控制和通信,简化了家庭网络和小型企业网络中的设备连接。在这个压缩包中,我们关注的是如何利用UPnP协议设计一...

    基于UPnP协议的媒体服务器的实现

    UPnP是一种构建于互联网标准技术(如TCP/IP,HTTP,XML等)之上的、用于实现网络设备智能互连以及 ...在简要介绍了基于UPnP协议的基础结构和工作原理的基础上,给出了应用UPnP技术 及其AV架构实现媒体服务器的实例。

Global site tag (gtag.js) - Google Analytics