|
@@ -20,6 +20,8 @@ import java.util.Collection; |
|
|
import com.alibaba.csp.sentinel.cluster.ClusterConstants; |
|
|
import com.alibaba.csp.sentinel.cluster.ClusterConstants; |
|
|
import com.alibaba.csp.sentinel.cluster.codec.EntityWriter; |
|
|
import com.alibaba.csp.sentinel.cluster.codec.EntityWriter; |
|
|
import com.alibaba.csp.sentinel.cluster.request.data.ParamFlowRequestData; |
|
|
import com.alibaba.csp.sentinel.cluster.request.data.ParamFlowRequestData; |
|
|
|
|
|
import com.alibaba.csp.sentinel.log.RecordLog; |
|
|
|
|
|
import com.alibaba.csp.sentinel.util.AssertUtil; |
|
|
|
|
|
|
|
|
import io.netty.buffer.ByteBuf; |
|
|
import io.netty.buffer.ByteBuf; |
|
|
|
|
|
|
|
@@ -30,6 +32,17 @@ import io.netty.buffer.ByteBuf; |
|
|
*/ |
|
|
*/ |
|
|
public class ParamFlowRequestDataWriter implements EntityWriter<ParamFlowRequestData, ByteBuf> { |
|
|
public class ParamFlowRequestDataWriter implements EntityWriter<ParamFlowRequestData, ByteBuf> { |
|
|
|
|
|
|
|
|
|
|
|
private final int maxParamByteSize; |
|
|
|
|
|
|
|
|
|
|
|
public ParamFlowRequestDataWriter() { |
|
|
|
|
|
this(DEFAULT_PARAM_MAX_SIZE); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public ParamFlowRequestDataWriter(int maxParamByteSize) { |
|
|
|
|
|
AssertUtil.isTrue(maxParamByteSize > 0, "maxParamByteSize should be positive"); |
|
|
|
|
|
this.maxParamByteSize = maxParamByteSize; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
public void writeTo(ParamFlowRequestData entity, ByteBuf target) { |
|
|
public void writeTo(ParamFlowRequestData entity, ByteBuf target) { |
|
|
target.writeLong(entity.getFlowId()); |
|
|
target.writeLong(entity.getFlowId()); |
|
@@ -84,20 +97,35 @@ public class ParamFlowRequestDataWriter implements EntityWriter<ParamFlowRequest |
|
|
target.writeBytes(tmpChars); |
|
|
target.writeBytes(tmpChars); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
private int calculateParamAmount(/*@NonEmpty*/ Collection<Object> params) { |
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Calculate amount of valid parameters in provided parameter list. |
|
|
|
|
|
* |
|
|
|
|
|
* @param params non-empty parameter list |
|
|
|
|
|
* @return amount of valid parameters |
|
|
|
|
|
*/ |
|
|
|
|
|
int calculateParamAmount(/*@NonEmpty*/ Collection<Object> params) { |
|
|
int size = 0; |
|
|
int size = 0; |
|
|
int length = 0; |
|
|
int length = 0; |
|
|
for (Object param : params) { |
|
|
for (Object param : params) { |
|
|
int s = calculateParamTransportSize(param); |
|
|
int s = calculateParamTransportSize(param); |
|
|
if (size + s > PARAM_MAX_SIZE) { |
|
|
|
|
|
|
|
|
if (s <= 0) { |
|
|
|
|
|
RecordLog.warn("[ParamFlowRequestDataWriter] WARN: Non-primitive type detected in params of " |
|
|
|
|
|
+ "cluster parameter flow control, which is not supported: " + param); |
|
|
|
|
|
continue; |
|
|
|
|
|
} |
|
|
|
|
|
if (size + s > maxParamByteSize) { |
|
|
break; |
|
|
break; |
|
|
} |
|
|
} |
|
|
|
|
|
size += s; |
|
|
length++; |
|
|
length++; |
|
|
} |
|
|
} |
|
|
return length; |
|
|
return length; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
private int calculateParamTransportSize(Object value) { |
|
|
|
|
|
|
|
|
int calculateParamTransportSize(Object value) { |
|
|
|
|
|
if (value == null) { |
|
|
|
|
|
return 0; |
|
|
|
|
|
} |
|
|
// Layout for primitives: |type flag(1)|value| |
|
|
// Layout for primitives: |type flag(1)|value| |
|
|
// size = original size + type flag (1) |
|
|
// size = original size + type flag (1) |
|
|
if (value instanceof Integer || int.class.isInstance(value)) { |
|
|
if (value instanceof Integer || int.class.isInstance(value)) { |
|
@@ -125,5 +153,5 @@ public class ParamFlowRequestDataWriter implements EntityWriter<ParamFlowRequest |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
private static final int PARAM_MAX_SIZE = 1000; |
|
|
|
|
|
|
|
|
private static final int DEFAULT_PARAM_MAX_SIZE = 1024; |
|
|
} |
|
|
} |