当前位置: 首页>>代码示例>>Java>>正文


Java ReadReportType类代码示例

本文整理汇总了Java中org.fosstrak.reader.rprm.core.msg.reply.ReadReportType的典型用法代码示例。如果您正苦于以下问题:Java ReadReportType类的具体用法?Java ReadReportType怎么用?Java ReadReportType使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


ReadReportType类属于org.fosstrak.reader.rprm.core.msg.reply包,在下文中一共展示了ReadReportType类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: poll

import org.fosstrak.reader.rprm.core.msg.reply.ReadReportType; //导入依赖的package包/类
/**
 * polls the rp-proxy for all tags available.
 * @throws RPProxyException when the polling failed
 */
public void poll() throws RPProxyException {
	
	//LOG.debug("Polling the rp-proxy");
	
	// get all the sources from the device
	Source[] sources = readerDevice.getAllSources();
	if (sources != null) {
		for (Source source : sources) {
			// remove all data-selectors on the source 
			// this is important !!!!!!!!!!!!! 
			// otherwise you will not get any tags
			source.removeAllTagSelectors();
			
			// read all ids on the source
			// just for safety pass an empty dataSelector
			ReadReport readReport = source.rawReadIDs(null);

			
			if (readReport != null) {
				// get the readReport holding the sourceReports
				ReadReportType report = readReport.getReport();
				// get the sourceReports
				List<SourceReport> sourceReports = report.getSourceReport();
				
				List<Tag> tagsToNotify = new LinkedList<Tag>();
				// for each sourceReport process the tags
				for (SourceReport sourceReport : sourceReports) {
					List<TagType> tags = sourceReport.getTag();
					if (tags != null) {
						// for each tag create a new reader api tag
						for (TagType tag : tags) {
							List<TagEventType> tagEvents = tag.getTagEvent();
							if (tagEvents != null) {
								for (TagEventType tagEvent : tagEvents) {
									String eventType = tagEvent.getEventType();
									//LOG.debug("Tag '" + tag.getTagIDAsPureURI() + "' fired Event of type '" + eventType + "'");
									if (EventType.EV_OBSERVED.equals(eventType)) {
										// somehow rp delivers binary instead 
										// pure uri
										String binary = tag.getTagIDAsPureURI();
										Tag nt = new Tag(
												adaptor.getName(), 
												tag.getTagID(), 
												TagHelper.convert_to_PURE_IDENTITY(
														"64",
														"1",
														"7",
														binary), 
												System.currentTimeMillis());

										nt.setTagAsBinary(binary);
										tagsToNotify.add(nt);
									}
								}
							}
						}
					}
				}
				
				if (tagsToNotify.size() > 0) {
					adaptor.addTags(tagsToNotify);
				}
				
			} else {
				LOG.debug("readReport null");
			}
		}
	} else {
		LOG.debug("sources null");
	}
}
 
开发者ID:Auto-ID-Lab-Japan,项目名称:fosstrak-fc,代码行数:76,代码来源:InputGenerator.java


注:本文中的org.fosstrak.reader.rprm.core.msg.reply.ReadReportType类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。