blob: 95e2f455ecd70b5168ca446d8b68a0823eb42789 [file] [log] [blame]
package org.apache.helix;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import org.apache.helix.mock.MockBaseDataAccessor;
import org.apache.helix.model.LiveInstance;
import org.apache.helix.model.MaintenanceSignal;
import org.apache.helix.model.Message;
import org.apache.helix.model.PauseSignal;
import org.apache.helix.model.StateModelDefinition;
import org.apache.helix.zookeeper.datamodel.ZNRecord;
import org.apache.helix.zookeeper.datamodel.ZNRecordUpdater;
import org.apache.helix.zookeeper.zkclient.DataUpdater;
import org.apache.helix.zookeeper.zkclient.exception.ZkNoNodeException;
import org.apache.zookeeper.data.Stat;
public class MockAccessor implements HelixDataAccessor {
private final String _clusterName;
//Map<String, ZNRecord> data = new HashMap<String, ZNRecord>();
private final PropertyKey.Builder _propertyKeyBuilder;
private BaseDataAccessor _baseDataAccessor = new MockBaseDataAccessor();
public MockAccessor() {
this("testCluster-" + Math.random() * 10000 % 999);
}
public MockAccessor(String clusterName) {
_clusterName = clusterName;
_propertyKeyBuilder = new PropertyKey.Builder(_clusterName);
}
@Override
public boolean createStateModelDef(StateModelDefinition stateModelDef) {
return false;
}
@Override
public boolean createControllerMessage(Message message) {
return false;
}
@Override
public boolean createControllerLeader(LiveInstance leader) {
return false;
}
@Override
public boolean createPause(PauseSignal pauseSignal) {
return false;
}
@Override
public boolean createMaintenance(MaintenanceSignal maintenanceSignal) {
return false;
}
@Override
public boolean setProperty(PropertyKey key, HelixProperty value) {
String path = key.getPath();
_baseDataAccessor.set(path, value.getRecord(), AccessOption.PERSISTENT);
return true;
}
@Override
public <T extends HelixProperty> boolean updateProperty(PropertyKey key, T value) {
return updateProperty(key, new ZNRecordUpdater(value.getRecord()), value);
}
@Override
public <T extends HelixProperty> boolean updateProperty(PropertyKey key,
DataUpdater<ZNRecord> updater, T value) {
String path = key.getPath();
PropertyType type = key.getType();
if (type.updateOnlyOnExists) {
if (_baseDataAccessor.exists(path, 0)) {
if (type.mergeOnUpdate) {
ZNRecord znRecord = new ZNRecord((ZNRecord) _baseDataAccessor.get(path, null, 0));
ZNRecord newZNRecord = updater.update(znRecord);
if (newZNRecord != null) {
_baseDataAccessor.set(path, newZNRecord, 0);
}
} else {
_baseDataAccessor.set(path, value.getRecord(), 0);
}
}
} else {
if (type.mergeOnUpdate) {
if (_baseDataAccessor.exists(path, 0)) {
ZNRecord znRecord = new ZNRecord((ZNRecord) _baseDataAccessor.get(path, null, 0));
ZNRecord newZNRecord = updater.update(znRecord);
if (newZNRecord != null) {
_baseDataAccessor.set(path, newZNRecord, 0);
}
} else {
_baseDataAccessor.set(path, value.getRecord(), 0);
}
} else {
_baseDataAccessor.set(path, value.getRecord(), 0);
}
}
return true;
}
@SuppressWarnings("unchecked")
@Override
public <T extends HelixProperty> T getProperty(PropertyKey key) {
String path = key.getPath();
Stat stat = new Stat();
return (T) HelixProperty.convertToTypedInstance(key.getTypeClass(),
(ZNRecord) _baseDataAccessor.get(path, stat, 0));
}
@Override
public boolean removeProperty(PropertyKey key) {
String path = key.getPath(); // PropertyPathConfig.getPath(type,
// _clusterName, keys);
_baseDataAccessor.remove(path, 0);
return true;
}
@Override
public HelixProperty.Stat getPropertyStat(PropertyKey key) {
PropertyType type = key.getType();
String path = key.getPath();
try {
Stat stat = _baseDataAccessor.getStat(path, 0);
if (stat != null) {
return new HelixProperty.Stat(stat.getVersion(), stat.getCtime(), stat.getMtime(),
stat.getEphemeralOwner());
}
} catch (ZkNoNodeException e) {
}
return null;
}
@Override
public List<HelixProperty.Stat> getPropertyStats(List<PropertyKey> keys) {
if (keys == null || keys.size() == 0) {
return Collections.emptyList();
}
List<HelixProperty.Stat> propertyStats = new ArrayList<>(keys.size());
List<String> paths = new ArrayList<>(keys.size());
for (PropertyKey key : keys) {
paths.add(key.getPath());
}
Stat[] zkStats = _baseDataAccessor.getStats(paths, 0);
for (int i = 0; i < keys.size(); i++) {
Stat zkStat = zkStats[i];
HelixProperty.Stat propertyStat = null;
if (zkStat != null) {
propertyStat =
new HelixProperty.Stat(zkStat.getVersion(), zkStat.getCtime(), zkStat.getMtime(),
zkStat.getEphemeralOwner());
}
propertyStats.add(propertyStat);
}
return propertyStats;
}
@Override
public List<String> getChildNames(PropertyKey propertyKey) {
String path = propertyKey.getPath();
return _baseDataAccessor.getChildNames(path, 0);
}
@SuppressWarnings("unchecked")
@Deprecated
@Override
public <T extends HelixProperty> List<T> getChildValues(PropertyKey propertyKey) {
return getChildValues(propertyKey, false);
}
@Override
public <T extends HelixProperty> List<T> getChildValues(PropertyKey key, boolean throwException) {
String path = key.getPath(); // PropertyPathConfig.getPath(type,
List<ZNRecord> children = _baseDataAccessor.getChildren(path, null, 0, 0, 0);
return (List<T>) HelixProperty.convertToTypedList(key.getTypeClass(), children);
}
@Deprecated
@Override
public <T extends HelixProperty> Map<String, T> getChildValuesMap(PropertyKey key) {
return getChildValuesMap(key, false);
}
@Override
public <T extends HelixProperty> Map<String, T> getChildValuesMap(PropertyKey key,
boolean throwException) {
List<T> list = getChildValues(key, throwException);
return HelixProperty.convertListToMap(list);
}
@Override
public <T extends HelixProperty> boolean[] createChildren(List<PropertyKey> keys,
List<T> children) {
return setChildren(keys, children);
}
@Override
public <T extends HelixProperty> boolean[] setChildren(List<PropertyKey> keys, List<T> children) {
boolean[] results = new boolean[keys.size()];
for (int i = 0; i < keys.size(); i++) {
results[i] = setProperty(keys.get(i), children.get(i));
}
return results;
}
@Override
public PropertyKey.Builder keyBuilder() {
return _propertyKeyBuilder;
}
@Override
public BaseDataAccessor getBaseDataAccessor() {
return _baseDataAccessor;
}
@Override
public <T extends HelixProperty> boolean[] updateChildren(List<String> paths,
List<DataUpdater<ZNRecord>> updaters, int options) {
return _baseDataAccessor.updateChildren(paths, updaters, options);
}
@Deprecated
@Override
public <T extends HelixProperty> List<T> getProperty(List<PropertyKey> keys) {
return getProperty(keys, false);
}
@Override
public <T extends HelixProperty> List<T> getProperty(List<PropertyKey> keys,
boolean throwException) {
List<T> list = new ArrayList<T>();
for (PropertyKey key : keys) {
@SuppressWarnings("unchecked")
T t = (T) getProperty(key);
list.add(t);
}
return list;
}
}