com.hazelcast.map.impl.MapPortableHook Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2015, Hazelcast, Inc. All Rights Reserved.
*
* 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 com.hazelcast.map.impl;
import com.hazelcast.map.impl.client.MapAddEntryListenerRequest;
import com.hazelcast.map.impl.client.MapAddEntryListenerSqlRequest;
import com.hazelcast.map.impl.client.MapAddIndexRequest;
import com.hazelcast.map.impl.client.MapAddInterceptorRequest;
import com.hazelcast.map.impl.client.MapAddNearCacheEntryListenerRequest;
import com.hazelcast.map.impl.client.MapAddPartitionLostListenerRequest;
import com.hazelcast.map.impl.client.MapClearRequest;
import com.hazelcast.map.impl.client.MapContainsKeyRequest;
import com.hazelcast.map.impl.client.MapContainsValueRequest;
import com.hazelcast.map.impl.client.MapDeleteRequest;
import com.hazelcast.map.impl.client.MapEntrySetRequest;
import com.hazelcast.map.impl.client.MapEvictAllRequest;
import com.hazelcast.map.impl.client.MapEvictRequest;
import com.hazelcast.map.impl.client.MapExecuteOnAllKeysRequest;
import com.hazelcast.map.impl.client.MapExecuteOnKeyRequest;
import com.hazelcast.map.impl.client.MapExecuteOnKeysRequest;
import com.hazelcast.map.impl.client.MapExecuteWithPredicateRequest;
import com.hazelcast.map.impl.client.MapFlushRequest;
import com.hazelcast.map.impl.client.MapGetAllRequest;
import com.hazelcast.map.impl.client.MapGetEntryViewRequest;
import com.hazelcast.map.impl.client.MapGetRequest;
import com.hazelcast.map.impl.client.MapIsEmptyRequest;
import com.hazelcast.map.impl.client.MapIsLockedRequest;
import com.hazelcast.map.impl.client.MapKeySetRequest;
import com.hazelcast.map.impl.client.MapLoadAllKeysRequest;
import com.hazelcast.map.impl.client.MapLoadGivenKeysRequest;
import com.hazelcast.map.impl.client.MapLockRequest;
import com.hazelcast.map.impl.client.MapPutAllRequest;
import com.hazelcast.map.impl.client.MapPutIfAbsentRequest;
import com.hazelcast.map.impl.client.MapPutRequest;
import com.hazelcast.map.impl.client.MapPutTransientRequest;
import com.hazelcast.map.impl.client.MapQueryRequest;
import com.hazelcast.map.impl.client.MapRemoveEntryListenerRequest;
import com.hazelcast.map.impl.client.MapRemoveIfSameRequest;
import com.hazelcast.map.impl.client.MapRemoveInterceptorRequest;
import com.hazelcast.map.impl.client.MapRemovePartitionLostListenerRequest;
import com.hazelcast.map.impl.client.MapRemoveRequest;
import com.hazelcast.map.impl.client.MapReplaceIfSameRequest;
import com.hazelcast.map.impl.client.MapReplaceRequest;
import com.hazelcast.map.impl.client.MapSQLQueryRequest;
import com.hazelcast.map.impl.client.MapSetRequest;
import com.hazelcast.map.impl.client.MapSizeRequest;
import com.hazelcast.map.impl.client.MapTryPutRequest;
import com.hazelcast.map.impl.client.MapTryRemoveRequest;
import com.hazelcast.map.impl.client.MapUnlockRequest;
import com.hazelcast.map.impl.client.MapValuesRequest;
import com.hazelcast.map.impl.client.TxnMapRequest;
import com.hazelcast.map.impl.client.TxnMapRequestWithSQLQuery;
import com.hazelcast.nio.serialization.ClassDefinition;
import com.hazelcast.nio.serialization.FactoryIdHelper;
import com.hazelcast.nio.serialization.Portable;
import com.hazelcast.nio.serialization.PortableFactory;
import com.hazelcast.nio.serialization.PortableHook;
import com.hazelcast.util.ConstructorFunction;
import java.util.Collection;
public class MapPortableHook implements PortableHook {
public static final int F_ID = FactoryIdHelper.getFactoryId(FactoryIdHelper.MAP_PORTABLE_FACTORY, -10);
public static final int GET = 1;
public static final int PUT = 2;
public static final int PUT_IF_ABSENT = 3;
public static final int TRY_PUT = 4;
public static final int PUT_TRANSIENT = 5;
public static final int SET = 6;
public static final int CONTAINS_KEY = 7;
public static final int CONTAINS_VALUE = 8;
public static final int REMOVE = 9;
public static final int REMOVE_IF_SAME = 10;
public static final int DELETE = 11;
public static final int FLUSH = 12;
public static final int GET_ALL = 13;
public static final int TRY_REMOVE = 14;
public static final int REPLACE = 15;
public static final int REPLACE_IF_SAME = 16;
public static final int LOCK = 17;
public static final int IS_LOCKED = 18;
public static final int UNLOCK = 20;
public static final int EVICT = 21;
public static final int ADD_INTERCEPTOR = 23;
public static final int REMOVE_INTERCEPTOR = 24;
public static final int ADD_ENTRY_LISTENER = 25;
public static final int ADD_ENTRY_LISTENER_SQL = 26;
public static final int GET_ENTRY_VIEW = 27;
public static final int ADD_INDEX = 28;
public static final int KEY_SET = 29;
public static final int VALUES = 30;
public static final int ENTRY_SET = 31;
public static final int SIZE = 33;
public static final int QUERY = 34;
public static final int SQL_QUERY = 35;
public static final int CLEAR = 36;
public static final int GET_LOCAL_MAP_STATS = 37;
public static final int EXECUTE_ON_KEY = 38;
public static final int EXECUTE_ON_ALL_KEYS = 39;
public static final int PUT_ALL = 40;
public static final int TXN_REQUEST = 41;
public static final int TXN_REQUEST_WITH_SQL_QUERY = 42;
public static final int EXECUTE_WITH_PREDICATE = 43;
public static final int REMOVE_ENTRY_LISTENER = 44;
public static final int EXECUTE_ON_KEYS = 45;
public static final int EVICT_ALL = 46;
public static final int LOAD_ALL_GIVEN_KEYS = 47;
public static final int LOAD_ALL_KEYS = 48;
public static final int IS_EMPTY = 49;
public static final int ADD_NEAR_CACHE_ENTRY_LISTENER = 50;
public static final int ADD_MAP_PARTITION_LOST_LISTENER = 51;
public static final int REMOVE_MAP_PARTITION_LOST_LISTENER = 52;
public int getFactoryId() {
return F_ID;
}
public PortableFactory createFactory() {
return new PortableFactory() {
final ConstructorFunction[] constructors
= new ConstructorFunction[REMOVE_MAP_PARTITION_LOST_LISTENER + 1];
{
constructors[GET] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapGetRequest();
}
};
constructors[PUT] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapPutRequest();
}
};
constructors[PUT_IF_ABSENT] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapPutIfAbsentRequest();
}
};
constructors[TRY_PUT] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapTryPutRequest();
}
};
constructors[PUT_TRANSIENT] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapPutTransientRequest();
}
};
constructors[SET] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapSetRequest();
}
};
constructors[CONTAINS_KEY] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapContainsKeyRequest();
}
};
constructors[CONTAINS_VALUE] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapContainsValueRequest();
}
};
constructors[REMOVE] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapRemoveRequest();
}
};
constructors[REMOVE_IF_SAME] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapRemoveIfSameRequest();
}
};
constructors[DELETE] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapDeleteRequest();
}
};
constructors[FLUSH] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapFlushRequest();
}
};
constructors[GET_ALL] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapGetAllRequest();
}
};
constructors[TRY_REMOVE] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapTryRemoveRequest();
}
};
constructors[REPLACE] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapReplaceRequest();
}
};
constructors[REPLACE_IF_SAME] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapReplaceIfSameRequest();
}
};
constructors[LOCK] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapLockRequest();
}
};
constructors[IS_LOCKED] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapIsLockedRequest();
}
};
constructors[UNLOCK] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapUnlockRequest();
}
};
constructors[EVICT] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapEvictRequest();
}
};
constructors[ADD_INTERCEPTOR] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapAddInterceptorRequest();
}
};
constructors[REMOVE_INTERCEPTOR] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapRemoveInterceptorRequest();
}
};
constructors[ADD_ENTRY_LISTENER] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapAddEntryListenerRequest();
}
};
constructors[ADD_ENTRY_LISTENER_SQL] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapAddEntryListenerSqlRequest();
}
};
constructors[GET_ENTRY_VIEW] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapGetEntryViewRequest();
}
};
constructors[ADD_INDEX] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapAddIndexRequest();
}
};
constructors[KEY_SET] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapKeySetRequest();
}
};
constructors[VALUES] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapValuesRequest();
}
};
constructors[ENTRY_SET] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapEntrySetRequest();
}
};
constructors[SIZE] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapSizeRequest();
}
};
constructors[CLEAR] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapClearRequest();
}
};
constructors[QUERY] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapQueryRequest();
}
};
constructors[SQL_QUERY] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapSQLQueryRequest();
}
};
constructors[EXECUTE_ON_KEY] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapExecuteOnKeyRequest();
}
};
constructors[EXECUTE_ON_ALL_KEYS] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapExecuteOnAllKeysRequest();
}
};
constructors[PUT_ALL] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapPutAllRequest();
}
};
constructors[TXN_REQUEST] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new TxnMapRequest();
}
};
constructors[TXN_REQUEST_WITH_SQL_QUERY] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new TxnMapRequestWithSQLQuery();
}
};
constructors[EXECUTE_WITH_PREDICATE] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapExecuteWithPredicateRequest();
}
};
constructors[EXECUTE_ON_KEYS] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapExecuteOnKeysRequest();
}
};
constructors[REMOVE_ENTRY_LISTENER] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapRemoveEntryListenerRequest();
}
};
constructors[EVICT_ALL] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapEvictAllRequest();
}
};
constructors[LOAD_ALL_GIVEN_KEYS] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapLoadGivenKeysRequest();
}
};
constructors[LOAD_ALL_KEYS] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapLoadAllKeysRequest();
}
};
constructors[IS_EMPTY] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapIsEmptyRequest();
}
};
constructors[ADD_NEAR_CACHE_ENTRY_LISTENER] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapAddNearCacheEntryListenerRequest();
}
};
constructors[ADD_MAP_PARTITION_LOST_LISTENER] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapAddPartitionLostListenerRequest();
}
};
constructors[REMOVE_MAP_PARTITION_LOST_LISTENER] = new ConstructorFunction() {
public Portable createNew(Integer arg) {
return new MapRemovePartitionLostListenerRequest();
}
};
}
public Portable create(int classId) {
return (classId > 0 && classId <= constructors.length) ? constructors[classId].createNew(classId) : null;
}
};
}
public Collection getBuiltinDefinitions() {
return null;
}
}