gpt4 book ai didi

com.zsmartsystems.zigbee.app.otaserver.ZigBeeOtaFile类的使用及代码示例

转载 作者:知者 更新时间:2024-03-18 11:07:31 25 4
gpt4 key购买 nike

本文整理了Java中com.zsmartsystems.zigbee.app.otaserver.ZigBeeOtaFile类的一些代码示例,展示了ZigBeeOtaFile类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZigBeeOtaFile类的具体详情如下:
包路径:com.zsmartsystems.zigbee.app.otaserver.ZigBeeOtaFile
类名称:ZigBeeOtaFile

ZigBeeOtaFile介绍

[英]Defines a ZigBee Over The Air upgrade file.

This class will read the file header, and each tag from the file and provide methods to read this data within the ZclOtaUpgradeServer.

The OTA file format is composed of a header followed by a number of sub-elements. The header describes general information about the file such as version, the manufacturer that created it, and the device it is intended for. Sub-elements in the file may contain upgrade data for the embedded device, certificates, configuration data, log messages, or other manufacturer specific pieces. Below is an example file.

The OTA Upgrade image file name should contain the following information at the beginning of the name with each field separated by a dash (“-“): manufacturer code, image type and file version. The value of each field stated should be in hexadecimal number and in capital letter. Each manufacturer may append more information to the name as seen fit to make the name more specific. The OTA Upgrade file extension should be “.zigbee”.
[中]定义ZigBee空中升级文件。
此类将从文件中读取文件头和每个标记,并提供在ZclOtaUpgradeServer中读取这些数据的方法。
OTA文件格式由一个标题和多个子元素组成。标题描述了有关文件的一般信息,例如版本、创建该文件的制造商以及该文件的目标设备。文件中的子元素可能包含嵌入式设备的升级数据、证书、配置数据、日志消息或其他特定于制造商的部分。下面是一个示例文件。
OTA升级映像文件名应在名称开头包含以下信息,每个字段用短划线(“-”)分隔:制造商代码、图像类型和文件版本。每个字段的值应为十六进制数和大写字母。每个制造商可能会在名称后添加更多信息,以使名称更加具体。OTA升级文件扩展名应为“.zigbee”。

代码示例

代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee

/**
   * {@inheritDoc}
   */
  @Override
  public boolean process(final ZigBeeApi zigbeeApi, final String[] args, PrintStream out) throws Exception {
    if (args.length != 2) {
      return false;
    }
    Path file = FileSystems.getDefault().getPath("./", args[1]);
    byte[] fileData = Files.readAllBytes(file);
    ZigBeeOtaFile otaFile = new ZigBeeOtaFile(fileData);
    print("OTA File: " + otaFile, out);
    return true;
  }
}

代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee

/**
 * Sends an image block to the client
 *
 * @param fileOffset the offset into the {@link ZigBeeOtaFile} to send the block
 * @param maximumDataSize the maximum data size the client can accept
 * @return the number of bytes sent
 */
private int sendImageBlock(int fileOffset, int maximumDataSize) {
  ByteArray imageData = otaFile.getImageData(fileOffset, Math.min(dataSize, maximumDataSize));
  logger.debug("{} OTA Data: Sending {} bytes at offset {}", cluster.getZigBeeAddress(), imageData.size(),
      fileOffset);
  cluster.imageBlockResponse(ZclStatus.SUCCESS, otaFile.getManufacturerCode(), otaFile.getImageType(),
      otaFile.getFileVersion(), fileOffset, imageData);
  return imageData.size();
}

代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee

/**
 * The purpose of sending Image Notify command is so the server has a way to notify client devices of
 * when the OTA upgrade images are available for them. It eliminates the need for ZR client devices
 * having to check with the server periodically of when the new images are available. However, all client
 * devices still need to send in Query Next Image Request command in order to officially start the OTA
 * upgrade process.
 */
public void notifyClient() {
  // Only send the notify if the file is set
  if (otaFile == null) {
    return;
  }
  cluster.imageNotifyCommand(0, queryJitter, otaFile.getManufacturerCode(), otaFile.getImageType(),
      otaFile.getFileVersion());
}

代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee

@Test
  public void testOpenFile() throws IOException {
    Path file = FileSystems.getDefault().getPath("./src/test/resource/", "test_ota_file.test");
    byte[] fileData = Files.readAllBytes(file);
    ZigBeeOtaFile otaFile = new ZigBeeOtaFile(fileData);

    System.out.println(otaFile);

    assertEquals(Integer.valueOf(0x1234), otaFile.getManufacturerCode());
    assertEquals(Integer.valueOf(0x0006), otaFile.getImageType());
    assertEquals(Integer.valueOf(0x12345678), otaFile.getFileVersion());
    assertEquals(ZigBeeStackType.ZIGBEE_PRO, otaFile.getStackVersion());
    assertEquals("A.String", otaFile.getHeaderString());
    assertEquals(Integer.valueOf(78), otaFile.getImageSize());
    assertEquals(new ByteArray(new byte[] { 0x1E, (byte) 0xF1, (byte) 0xEE, 0x0B }), otaFile.getImageData(0, 4));
    assertEquals(new ByteArray(new byte[] { 0x00, 0x01, 0x02, 0x03, 0x04 }), otaFile.getImageData(62, 5));
  }
}

代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee

if (otaFile == null || !(command.getManufacturerCode().equals(otaFile.getManufacturerCode())
    && command.getImageType().equals(otaFile.getImageType()))) {
  logger.debug("{} OTA Error: Request is inconsistent with OTA file.", cluster.getZigBeeAddress());
  cluster.sendDefaultResponse(command.getTransactionId(), command.getCommandId(),
if (command.getHardwareVersion() != null && otaFile.getMinimumHardware() != null
    && otaFile.getMaximumHardware() != null) {
  if (command.getHardwareVersion() < otaFile.getMinimumHardware()
      || command.getHardwareVersion() > otaFile.getMaximumHardware()) {
    cluster.sendDefaultResponse(command.getTransactionId(), command.getCommandId(),
        ZclStatus.NO_IMAGE_AVAILABLE);
if (!allowExistingFile && command.getFileVersion().equals(otaFile.getFileVersion())) {
  cluster.sendDefaultResponse(command.getTransactionId(), command.getCommandId(),
      ZclStatus.NO_IMAGE_AVAILABLE);
startTransferTimer();
cluster.queryNextImageResponse(ZclStatus.SUCCESS, otaFile.getManufacturerCode(), otaFile.getImageType(),
    otaFile.getFileVersion(), otaFile.getImageSize());

代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee

if (otaFile == null || !command.getManufacturerCode().equals(otaFile.getManufacturerCode())
    || !command.getFileVersion().equals(otaFile.getFileVersion())
    || !command.getImageType().equals(otaFile.getImageType())) {
  logger.debug("{} OTA Error: Request is inconsistent with OTA file.", cluster.getZigBeeAddress());
  cluster.sendDefaultResponse(command.getTransactionId(), command.getCommandId(),
if (command.getFileOffset() > otaFile.getImageSize()) {
  logger.debug("{} OTA Error: Requested offset is larger than file ({}>{})", cluster.getZigBeeAddress(),
      command.getFileOffset(), otaFile.getImageSize());
  cluster.sendDefaultResponse(command.getTransactionId(), command.getCommandId(),
      ZclStatus.MALFORMED_COMMAND);

代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee

Mockito.when(otaFile.getManufacturerCode()).thenReturn(123);
Mockito.when(otaFile.getImageType()).thenReturn(987);

代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee

if (otaFile == null || !command.getManufacturerCode().equals(otaFile.getManufacturerCode())
    || !command.getFileVersion().equals(otaFile.getFileVersion())
    || !command.getImageType().equals(otaFile.getImageType())) {
  logger.debug("{} OTA Error: Request is inconsistent with OTA file.", cluster.getZigBeeAddress());
  cluster.sendDefaultResponse(command.getTransactionId(), command.getCommandId(),
if (command.getFileOffset() > otaFile.getImageSize()) {
  logger.debug("{} OTA Error: Requested offset is larger than file ({}>{})", cluster.getZigBeeAddress(),
      command.getFileOffset(), otaFile.getImageSize());
  cluster.sendDefaultResponse(command.getTransactionId(), command.getCommandId(),
      ZclStatus.MALFORMED_COMMAND);
int percent = command.getFileOffset() * 100 / otaFile.getImageSize();
if (percent > 100) {
  percent = 100;

代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee

CommandResult response = cluster.upgradeEndResponse(otaFile.getManufacturerCode(),
    otaFile.getImageType(), otaFile.getFileVersion(), 0, 0).get();
if (!(response.isSuccess() || response.isTimeout())) {
  updateStatus(ZigBeeOtaServerStatus.OTA_UPGRADE_FAILED);
  if (fileVersion.equals(otaFile.getFileVersion())) {
    updateStatus(ZigBeeOtaServerStatus.OTA_UPGRADE_COMPLETE);
    return;

代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee

if (otaFile == null || !command.getManufacturerCode().equals(otaFile.getManufacturerCode())
    || !command.getFileVersion().equals(otaFile.getFileVersion())
    || !command.getImageType().equals(otaFile.getImageType())) {
  logger.debug("{} OTA Error: Request is inconsistent with OTA file.", cluster.getZigBeeAddress());
  cluster.sendDefaultResponse(command.getTransactionId(), command.getCommandId(),

代码示例来源:origin: zsmartsystems/com.zsmartsystems.zigbee

Path file = FileSystems.getDefault().getPath("./", args[2]);
byte[] fileData = Files.readAllBytes(file);
ZigBeeOtaFile otaFile = new ZigBeeOtaFile(fileData);
print("OTA File: " + otaFile, out);

代码示例来源:origin: openhab/org.openhab.binding.zigbee

ZigBeeOtaFile otaFile = new ZigBeeOtaFile(firmware.getBytes());
otaServer.setFirmware(otaFile);

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com