mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
136 lines
3.1 KiB
Java
136 lines
3.1 KiB
Java
package io.ebeaninternal.api;
|
|
|
|
import io.ebean.event.BulkTableEvent;
|
|
|
|
import java.io.DataOutputStream;
|
|
import java.io.IOException;
|
|
import java.io.Serializable;
|
|
import java.util.Collection;
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
public final class TransactionEventTable implements Serializable, BinaryWritable {
|
|
|
|
private static final long serialVersionUID = 2236555729767483264L;
|
|
|
|
private final Map<String, TableIUD> map = new HashMap<>();
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "TransactionEventTable " + map.values();
|
|
}
|
|
|
|
@Override
|
|
public void writeBinary(BinaryWriteContext out) throws IOException {
|
|
for (TableIUD tableIud : map.values()) {
|
|
tableIud.writeBinary(out);
|
|
}
|
|
}
|
|
|
|
public void add(TransactionEventTable table) {
|
|
|
|
for (TableIUD iud : table.values()) {
|
|
add(iud);
|
|
}
|
|
}
|
|
|
|
public void add(String table, boolean insert, boolean update, boolean delete) {
|
|
|
|
table = table.toUpperCase();
|
|
add(new TableIUD(table, insert, update, delete));
|
|
}
|
|
|
|
public void add(TableIUD newTableIUD) {
|
|
|
|
TableIUD existingTableIUD = map.put(newTableIUD.getTableName(), newTableIUD);
|
|
if (existingTableIUD != null) {
|
|
newTableIUD.add(existingTableIUD);
|
|
}
|
|
}
|
|
|
|
public boolean isEmpty() {
|
|
return map.isEmpty();
|
|
}
|
|
|
|
public Collection<TableIUD> values() {
|
|
return map.values();
|
|
}
|
|
|
|
public static class TableIUD implements Serializable, BulkTableEvent, BinaryWritable {
|
|
|
|
private static final long serialVersionUID = -1958317571064162089L;
|
|
|
|
private final String table;
|
|
private boolean insert;
|
|
private boolean update;
|
|
private boolean delete;
|
|
|
|
public TableIUD(String table, boolean insert, boolean update, boolean delete) {
|
|
this.table = table;
|
|
this.insert = insert;
|
|
this.update = update;
|
|
this.delete = delete;
|
|
}
|
|
|
|
public static TableIUD readBinaryMessage(BinaryReadContext dataInput) throws IOException {
|
|
|
|
String table = dataInput.readUTF();
|
|
boolean insert = dataInput.readBoolean();
|
|
boolean update = dataInput.readBoolean();
|
|
boolean delete = dataInput.readBoolean();
|
|
|
|
return new TableIUD(table, insert, update, delete);
|
|
}
|
|
|
|
@Override
|
|
public void writeBinary(BinaryWriteContext out) throws IOException {
|
|
DataOutputStream os = out.start(TYPE_TABLEIUD);
|
|
os.writeUTF(table);
|
|
os.writeBoolean(insert);
|
|
os.writeBoolean(update);
|
|
os.writeBoolean(delete);
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "TableIUD " + table + " i:" + insert + " u:" + update + " d:" + delete;
|
|
}
|
|
|
|
private void add(TableIUD other) {
|
|
if (other.insert) {
|
|
insert = true;
|
|
}
|
|
if (other.update) {
|
|
update = true;
|
|
}
|
|
if (other.delete) {
|
|
delete = true;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public String getTableName() {
|
|
return table;
|
|
}
|
|
|
|
@Override
|
|
public boolean isInsert() {
|
|
return insert;
|
|
}
|
|
|
|
@Override
|
|
public boolean isUpdate() {
|
|
return update;
|
|
}
|
|
|
|
@Override
|
|
public boolean isDelete() {
|
|
return delete;
|
|
}
|
|
|
|
public boolean isUpdateOrDelete() {
|
|
return update || delete;
|
|
}
|
|
}
|
|
}
|