/*
* 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.schema;
import java.util.Iterator;
import java.util.Set;
import java.util.function.Predicate;
import java.util.stream.Stream;
import javax.annotation.Nullable;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.MapDifference;
import com.google.common.collect.Maps;
public final class Keyspaces implements Iterable<KeyspaceMetadata>
{
private final ImmutableMap<String, KeyspaceMetadata> keyspaces;
private final ImmutableMap<TableId, TableMetadata> tables;
private Keyspaces(Builder builder)
{
keyspaces = builder.keyspaces.build();
tables = builder.tables.build();
}
public static Builder builder()
{
return new Builder();
}
public static Keyspaces none()
{
return builder().build();
}
public static Keyspaces of(KeyspaceMetadata... keyspaces)
{
return builder().add(keyspaces).build();
}
public Iterator<KeyspaceMetadata> iterator()
{
return keyspaces.values().iterator();
}
public Stream<KeyspaceMetadata> stream()
{
return keyspaces.values().stream();
}
public Set<String> names()
{
return keyspaces.keySet();
}
@Nullable
public KeyspaceMetadata getNullable(String name)
{
return keyspaces.get(name);
}
@Nullable
public TableMetadata getTableOrViewNullable(TableId id)
{
return tables.get(id);
}
public Keyspaces filter(Predicate<KeyspaceMetadata> predicate)
{
Builder builder = builder();
stream().filter(predicate).forEach(builder::add);
return builder.build();
}
/**
* Creates a Keyspaces instance with the keyspace with the provided name removed
*/
public Keyspaces without(String name)
{
KeyspaceMetadata keyspace = getNullable(name);
if (keyspace == null)
throw new IllegalStateException(String.format("Keyspace %s doesn't exists", name));
return builder().add(filter(k -> k != keyspace)).build();
}
public Keyspaces withAddedOrUpdated(KeyspaceMetadata keyspace)
{
return builder().add(filter(k -> !k.name.equals(keyspace.name)))
.add(keyspace)
.build();
}
MapDifference<String, KeyspaceMetadata> diff(Keyspaces other)
{
return Maps.difference(keyspaces, other.keyspaces);
}
@Override
public boolean equals(Object o)
{
return this == o || (o instanceof Keyspaces && keyspaces.equals(((Keyspaces) o).keyspaces));
}
@Override
public int hashCode()
{
return keyspaces.hashCode();
}
@Override
public String toString()
{
return keyspaces.values().toString();
}
public static final class Builder
{
private final ImmutableMap.Builder<String, KeyspaceMetadata> keyspaces = new ImmutableMap.Builder<>();
private final ImmutableMap.Builder<TableId, TableMetadata> tables = new ImmutableMap.Builder<>();
private Builder()
{
}
public Keyspaces build()
{
return new Keyspaces(this);
}
public Builder add(KeyspaceMetadata keyspace)
{
keyspaces.put(keyspace.name, keyspace);
keyspace.tables.forEach(t -> tables.put(t.id, t));
keyspace.views.forEach(v -> tables.put(v.metadata.id, v.metadata));
return this;
}
public Builder add(KeyspaceMetadata... keyspaces)
{
for (KeyspaceMetadata keyspace : keyspaces)
add(keyspace);
return this;
}
public Builder add(Iterable<KeyspaceMetadata> keyspaces)
{
keyspaces.forEach(this::add);
return this;
}
}
}