15 changed files with 199 additions and 59 deletions
@ -0,0 +1,30 @@ |
|||
/** |
|||
* Copyright © 2016-2021 The Thingsboard Authors |
|||
* |
|||
* 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. |
|||
*/ |
|||
package org.thingsboard.server.common.data.firmware; |
|||
|
|||
import lombok.Getter; |
|||
|
|||
public enum FirmwareKey { |
|||
|
|||
TITLE("title"), VERSION("version"), TS("ts"), STATE("state"), SIZE("size"), CHECKSUM("checksum"), CHECKSUM_ALGORITHM("checksum_algorithm"); |
|||
|
|||
@Getter |
|||
private final String value; |
|||
|
|||
FirmwareKey(String value) { |
|||
this.value = value; |
|||
} |
|||
} |
|||
@ -0,0 +1,52 @@ |
|||
/** |
|||
* Copyright © 2016-2021 The Thingsboard Authors |
|||
* |
|||
* 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. |
|||
*/ |
|||
package org.thingsboard.server.common.data.firmware; |
|||
|
|||
import java.util.ArrayList; |
|||
import java.util.List; |
|||
|
|||
public class FirmwareKeyUtil { |
|||
|
|||
public static final List<String> ALL_ATTRIBUTE_KEYS; |
|||
static { |
|||
ALL_ATTRIBUTE_KEYS = new ArrayList<>(); |
|||
for (FirmwareType type : FirmwareType.values()) { |
|||
for (FirmwareKey key : FirmwareKey.values()) { |
|||
ALL_ATTRIBUTE_KEYS.add(getAttributeKey(type, key)); |
|||
} |
|||
} |
|||
} |
|||
|
|||
public static String getAttributeKey(FirmwareType type, FirmwareKey key) { |
|||
return type.getKeyPrefix() + "_" + key.getValue(); |
|||
} |
|||
|
|||
public static String getTargetTelemetryKey(FirmwareType type, FirmwareKey key) { |
|||
return getTelemetryKey("target_", type, key); |
|||
} |
|||
|
|||
public static String getCurrentTelemetryKey(FirmwareType type, FirmwareKey key) { |
|||
return getTelemetryKey("current_", type, key); |
|||
} |
|||
|
|||
private static String getTelemetryKey(String prefix, FirmwareType type, FirmwareKey key) { |
|||
return prefix + type.getKeyPrefix() + "_" + key.getValue(); |
|||
} |
|||
|
|||
public static String getTelemetryKey(FirmwareType type, FirmwareKey key) { |
|||
return type.getKeyPrefix() + "_" + key.getValue(); |
|||
} |
|||
} |
|||
@ -0,0 +1,30 @@ |
|||
/** |
|||
* Copyright © 2016-2021 The Thingsboard Authors |
|||
* |
|||
* 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. |
|||
*/ |
|||
package org.thingsboard.server.common.data.firmware; |
|||
|
|||
import lombok.Getter; |
|||
|
|||
public enum FirmwareType { |
|||
|
|||
FIRMWARE("fw"), SOFTWARE("sw"); |
|||
|
|||
@Getter |
|||
private final String keyPrefix; |
|||
|
|||
FirmwareType(String keyPrefix) { |
|||
this.keyPrefix = keyPrefix; |
|||
} |
|||
} |
|||
Loading…
Reference in new issue