blob: 48818bc0e14ee44fe616279dfed2c800d48c7eed [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.ignite.internal.catalog.commands;
import static org.apache.ignite.internal.catalog.commands.CatalogUtils.zoneOrThrow;
import java.util.Collections;
import java.util.List;
import org.apache.ignite.internal.catalog.Catalog;
import org.apache.ignite.internal.catalog.CatalogCommand;
import org.apache.ignite.internal.catalog.CatalogValidationException;
import org.apache.ignite.internal.catalog.descriptors.CatalogZoneDescriptor;
import org.apache.ignite.internal.catalog.storage.SetDefaultZoneEntry;
import org.apache.ignite.internal.catalog.storage.UpdateEntry;
/**
* A command that set specified zone as default.
*/
public class AlterZoneSetDefaultCommand extends AbstractZoneCommand {
/** Returns builder to create a command that set specified zone as default. */
public static Builder builder() {
return new AlterZoneSetDefaultCommand.Builder();
}
private final boolean ifExists;
/**
* Constructor.
*
* @param zoneName Name of the zone.
* @param ifExists Flag indicating whether the {@code IF EXISTS} was specified.
* @throws CatalogValidationException if any of restrictions above is violated.
*/
private AlterZoneSetDefaultCommand(String zoneName, boolean ifExists) throws CatalogValidationException {
super(zoneName);
this.ifExists = ifExists;
}
@Override
public List<UpdateEntry> get(Catalog catalog) {
CatalogZoneDescriptor zone = zoneOrThrow(catalog, zoneName);
CatalogZoneDescriptor defaultZone = catalog.defaultZone();
if (defaultZone != null && zone.id() == defaultZone.id()) {
// Specified zone already marked as default.
return Collections.emptyList();
}
return List.of(new SetDefaultZoneEntry(zone.id()));
}
public boolean ifExists() {
return ifExists;
}
/**
* Builder of a command that set specified zone as default.
*/
public static class Builder implements AbstractZoneCommandBuilder<Builder> {
private String zoneName;
private boolean ifExists;
@Override
public Builder zoneName(String zoneName) {
this.zoneName = zoneName;
return this;
}
/** Sets flag indicating whether the {@code IF EXISTS} was specified. */
public Builder ifExists(boolean ifExists) {
this.ifExists = ifExists;
return this;
}
@Override
public CatalogCommand build() {
return new AlterZoneSetDefaultCommand(zoneName, ifExists);
}
}
}