blob: 88987c2393d949bce313938335a8aebe793f9d5c [file] [log] [blame]
/*
* 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.
*/
package org.apache.cassandra.distributed.shared;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import com.google.common.base.Joiner;
import org.apache.cassandra.config.CassandraRelevantProperties;
public final class WithProperties implements AutoCloseable
{
private final List<Property> properties = new ArrayList<>();
public WithProperties()
{
}
public WithProperties(String... kvs)
{
with(kvs);
}
public void with(String... kvs)
{
assert kvs.length % 2 == 0 : "Input must have an even amount of inputs but given " + kvs.length;
for (int i = 0; i <= kvs.length - 2; i = i + 2)
{
with(kvs[i], kvs[i + 1]);
}
}
public void setProperty(String key, String value)
{
with(key, value);
}
public void set(CassandraRelevantProperties prop, String value)
{
with(prop.getKey(), value);
}
public void set(CassandraRelevantProperties prop, String... values)
{
set(prop, Arrays.asList(values));
}
public void set(CassandraRelevantProperties prop, Collection<String> values)
{
set(prop, Joiner.on(",").join(values));
}
public void set(CassandraRelevantProperties prop, boolean value)
{
set(prop, Boolean.toString(value));
}
public void set(CassandraRelevantProperties prop, long value)
{
set(prop, Long.toString(value));
}
public void with(String key, String value)
{
String previous = System.setProperty(key, value);
properties.add(new Property(key, previous));
}
@Override
public void close()
{
Collections.reverse(properties);
properties.forEach(s -> {
if (s.value == null)
System.getProperties().remove(s.key);
else
System.setProperty(s.key, s.value);
});
properties.clear();
}
private static final class Property
{
private final String key;
private final String value;
private Property(String key, String value)
{
this.key = key;
this.value = value;
}
}
}