Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* MIT License
*
* Copyright (c) 2021-2099 Oscura (xingshuang)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.github.xingshuangs.iot.protocol.s7.algorithm;
import java.util.LinkedList;
import java.util.List;
import java.util.stream.Collectors;
/**
* Sequential grouping algorithm.
* 顺序分组算法
*
* @author xingshuang
*/
public class S7SequentialGroupAlg {
private S7SequentialGroupAlg() {
// NOOP
}
/**
* Write recombination function.
* 重组,按照目标最大值进行顺序分组,超过最大值则进行分割
* 示例:
* 目标值:226 ,额外数据大小:5
* 1,50,65,200, 322, 99,500, 44
* |1,50,65,90|110,106|216|99,117|221|162,44|
* 第一 第二 第三 第四 第五 第六
*
* @param src data source 数据源
* @param targetSize target size 目标值
* @param extraSize extra size of every item 每个数据额外占用的数据大小
* @return group result
*/
public static List writeRecombination(List src, int targetSize, int extraSize) {
List groupList = new LinkedList<>();
S7ComGroup group = new S7ComGroup();
groupList.add(group);
int sum = 0;
for (int i = 0; i < src.size(); i++) {
int number = src.get(i);
int offset = 0;
while (number > 0) {
S7ComItem item = new S7ComItem(i, src.get(i), offset, 0, extraSize, 0);
if (sum + number + item.getExtraSize() > targetSize) {
item.setRipeSize(targetSize - sum - item.getExtraSize());
} else {
item.setRipeSize(number);
}
number -= item.getRipeSize();
offset += item.getRipeSize();
sum += item.getTotalLength();
group.add(item);
if (sum + extraSize >= targetSize) {
group = new S7ComGroup();
groupList.add(group);
sum = 0;
}
}
}
return groupList.stream().filter(x -> !x.getItems().isEmpty()).collect(Collectors.toList());
}
/**
* Read recombination function.
* 重组,按照目标最大值进行顺序分组,超过最大值则进行分割
* 示例:
* 目标值:226 ,额外数据大小:5,阀值数据大小:12
* 1, 9, 102, 33, 2, 4, 8, 326, 2, 2, 2, 2, 2, 400, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 99
* 1, 9, 102, 33, 2, 4, 8, 13| 221| 92, 2, 2, 2, 2, 2, 64|221|115, 2, 2, 2, 2, 2, 2, 2, 2| 2, 2, 2, 99
*
* @param src data source 数据源
* @param targetSize target size 目标值
* @param extraSize extra size of every item 每个数据额外占用的数据大小
* @param threshold data threshold 阀值
* @return group result
*/
public static List readRecombination(List src, int targetSize, int extraSize, int threshold) {
List groupList = new LinkedList<>();
S7ComGroup group = new S7ComGroup();
groupList.add(group);
int sum = 0;
for (int i = 0; i < src.size(); i++) {
int number = src.get(i);
int offset = 0;
while (number > 0) {
S7ComItem item = new S7ComItem(i, src.get(i), offset, 0, extraSize, threshold);
if (sum + number + item.getExtraSize() > targetSize) {
item.setRipeSize(targetSize - sum - item.getExtraSize());
} else {
item.setRipeSize(number);
}
sum += item.getTotalLength();
number -= item.getRipeSize();
offset += item.getRipeSize();
group.add(item);
if (sum + threshold >= targetSize) {
group = new S7ComGroup();
groupList.add(group);
sum = 0;
}
}
}
return groupList.stream().filter(x -> !x.getItems().isEmpty()).collect(Collectors.toList());
}
}