blob: 4241dee91508c3bc99213e27785c815a1672fe13 [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.storage;
import java.io.IOException;
import org.apache.ignite.internal.catalog.descriptors.CatalogIndexStatus;
import org.apache.ignite.internal.catalog.events.CatalogEvent;
import org.apache.ignite.internal.catalog.events.CatalogEventParameters;
import org.apache.ignite.internal.catalog.events.StoppingIndexEventParameters;
import org.apache.ignite.internal.catalog.storage.serialization.CatalogObjectSerializer;
import org.apache.ignite.internal.catalog.storage.serialization.MarshallableEntryType;
import org.apache.ignite.internal.tostring.S;
import org.apache.ignite.internal.util.io.IgniteDataInput;
import org.apache.ignite.internal.util.io.IgniteDataOutput;
/**
* Describes drop of an index (it's not the final removal of an index from the Catalog, but it's just a switch to
* the {@link CatalogIndexStatus#STOPPING} state.
*/
public class DropIndexEntry extends AbstractChangeIndexStatusEntry implements Fireable {
public static final CatalogObjectSerializer<DropIndexEntry> SERIALIZER = new DropIndexEntrySerializer();
/**
* Constructs the object.
*
* @param indexId An id of an index to drop.
*/
public DropIndexEntry(int indexId) {
super(indexId, CatalogIndexStatus.STOPPING);
}
/** Returns an id of an index to drop. */
public int indexId() {
return indexId;
}
@Override
public int typeId() {
return MarshallableEntryType.DROP_INDEX.id();
}
@Override
public CatalogEvent eventType() {
return CatalogEvent.INDEX_STOPPING;
}
@Override
public CatalogEventParameters createEventParameters(long causalityToken, int catalogVersion) {
return new StoppingIndexEventParameters(causalityToken, catalogVersion, indexId);
}
@Override
public String toString() {
return S.toString(this);
}
/**
* Serializer for {@link DropIndexEntry}.
*/
private static class DropIndexEntrySerializer implements CatalogObjectSerializer<DropIndexEntry> {
@Override
public DropIndexEntry readFrom(IgniteDataInput input) throws IOException {
int indexId = input.readInt();
return new DropIndexEntry(indexId);
}
@Override
public void writeTo(DropIndexEntry entry, IgniteDataOutput out) throws IOException {
out.writeInt(entry.indexId());
}
}
}