All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
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.
com.alipay.oceanbase.rpc.protocol.payload.impl.execute.ObTableBatchOperation Maven / Gradle / Ivy
/*-
* #%L
* OBKV Table Client Framework
* %%
* Copyright (C) 2021 OceanBase
* %%
* OBKV Table Client Framework is licensed under Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
* http://license.coscl.org.cn/MulanPSL2
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
* #L%
*/
package com.alipay.oceanbase.rpc.protocol.payload.impl.execute;
import com.alipay.oceanbase.rpc.protocol.payload.AbstractPayload;
import com.alipay.oceanbase.rpc.protocol.payload.impl.ObObj;
import com.alipay.oceanbase.rpc.util.Serialization;
import io.netty.buffer.ByteBuf;
import java.util.*;
import static com.alipay.oceanbase.rpc.util.Serialization.encodeObUniVersionHeader;
import static com.alipay.oceanbase.rpc.util.Serialization.getObUniVersionHeaderLength;
/*
* OB_SERIALIZE_MEMBER(ObTableOperation, operation_type_, const_cast(*entity_));
*
*/
public class ObTableBatchOperation extends AbstractPayload {
private List tableOperations = new ArrayList();
private boolean isReadOnly = true;
private boolean isSameType = true;
private boolean isSamePropertiesNames = true;
/*
* Encode.
*/
@Override
public byte[] encode() {
byte[] bytes = new byte[(int) getPayloadSize()];
int idx = 0;
// 0. encode header
int headerLen = (int) getObUniVersionHeaderLength(getVersion(), getPayloadContentSize());
System.arraycopy(encodeObUniVersionHeader(getVersion(), getPayloadContentSize()), 0, bytes,
idx, headerLen);
idx += headerLen;
// 1. encode Operation
int len = Serialization.getNeedBytes(tableOperations.size());
System.arraycopy(Serialization.encodeVi64(tableOperations.size()), 0, bytes, idx, len);
idx += len;
for (ObTableOperation tableOperation : tableOperations) {
len = (int) tableOperation.getPayloadSize();
System.arraycopy(tableOperation.encode(), 0, bytes, idx, len);
idx += len;
}
// 2. encode others
System
.arraycopy(Serialization.encodeI8(isReadOnly ? (byte) 1 : (byte) 0), 0, bytes, idx, 1);
idx++;
System
.arraycopy(Serialization.encodeI8(isSameType ? (byte) 1 : (byte) 0), 0, bytes, idx, 1);
idx++;
System.arraycopy(Serialization.encodeI8(isSamePropertiesNames ? (byte) 1 : (byte) 0), 0,
bytes, idx, 1);
return bytes;
}
/*
* Decode.
*/
@Override
public Object decode(ByteBuf buf) {
// 0. decode header
super.decode(buf);
// 1. decode Operation
int len = (int) Serialization.decodeVi64(buf);
tableOperations = new ArrayList(len);
for (int i = 0; i < len; i++) {
ObTableOperation obTableOperation = new ObTableOperation();
obTableOperation.decode(buf);
tableOperations.add(obTableOperation);
}
// 2. decode others
this.isReadOnly = Serialization.decodeI8(buf) == 1;
this.isSameType = Serialization.decodeI8(buf) == 1;
this.isSamePropertiesNames = Serialization.decodeI8(buf) == 1;
return this;
}
/*
* Get payload content size.
*/
@Override
public long getPayloadContentSize() {
long payloadContentSize = 0;
payloadContentSize += Serialization.getNeedBytes(tableOperations.size());
for (ObTableOperation operation : tableOperations) {
payloadContentSize += operation.getPayloadSize();
}
return payloadContentSize + 3;
}
/*
* Get table operations.
*/
public List getTableOperations() {
return tableOperations;
}
/*
* hash_map keys to TreeSet IgnoringCase
*/
public TreeSet mapKeysToSetIgnoringCase(Set keys) {
TreeSet keySetIgnoreCase = new TreeSet<>(String.CASE_INSENSITIVE_ORDER);
keySetIgnoreCase.addAll(keys);
return keySetIgnoreCase;
}
/*
* Add table operation.
*/
public void addTableOperation(ObTableOperation tableOperation) {
this.tableOperations.add(tableOperation);
int length = this.tableOperations.size();
if (isReadOnly && !tableOperation.isReadonly()) {
isReadOnly = false;
}
if (isSameType
&& length > 1
&& tableOperations.get(length - 1).getOperationType() != tableOperations
.get(length - 2).getOperationType()) {
isSameType = false;
}
// 判断是否是 same_properties_name
if (isSamePropertiesNames && length > 1) {
ObTableOperation prev = tableOperations.get(length - 2);
ObTableOperation curr = tableOperations.get(length - 1);
if (prev.getEntity() == null || curr.getEntity() == null) {
isSamePropertiesNames = false;
} else if (prev.getEntity().getPropertiesCount() != curr.getEntity()
.getPropertiesCount()) {
isSamePropertiesNames = false;
} else {
isSamePropertiesNames = mapKeysToSetIgnoringCase(
prev.getEntity().getProperties().keySet()).equals(
mapKeysToSetIgnoringCase(curr.getEntity().getProperties().keySet()));
}
}
}
/*
* Set table operations.
*/
public void setTableOperations(List tableOperations) {
this.tableOperations = tableOperations;
this.isReadOnly = true;
this.isSameType = true;
this.isSamePropertiesNames = true;
ObTableOperationType prevType = null;
TreeSet firstKeySetIgnoreCase = null;
for (ObTableOperation o : tableOperations) {
if (this.isReadOnly || this.isSameType || this.isSamePropertiesNames) {
if (!o.isReadonly()) {
this.isReadOnly = false;
}
if (prevType != null && prevType != o.getOperationType()) {
this.isSameType = false;
} else {
prevType = o.getOperationType();
}
if (this.isSamePropertiesNames) {
if (firstKeySetIgnoreCase == null) {
firstKeySetIgnoreCase = mapKeysToSetIgnoringCase(o.getEntity()
.getProperties().keySet());
} else if (firstKeySetIgnoreCase.size() != o.getEntity().getPropertiesCount()) {
this.isSamePropertiesNames = false;
} else {
this.isSamePropertiesNames = firstKeySetIgnoreCase
.equals(mapKeysToSetIgnoringCase(o.getEntity().getProperties().keySet()));
}
}
} else {
return;
}
}
}
/*
* Is read only.
*/
public boolean isReadOnly() {
return isReadOnly;
}
/*
* Set read only.
*/
public void setReadOnly(boolean readOnly) {
isReadOnly = readOnly;
}
/*
* Is same type.
*/
public boolean isSameType() {
return isSameType;
}
/*
* Set same type.
*/
public void setSameType(boolean sameType) {
isSameType = sameType;
}
/*
* Is same properties names.
*/
public boolean isSamePropertiesNames() {
return isSamePropertiesNames;
}
/*
* Set same properties names.
*/
public void setSamePropertiesNames(boolean samePropertiesNames) {
isSamePropertiesNames = samePropertiesNames;
}
}