arjunashok commented on code in PR #225: URL: https://github.com/apache/cassandra-sidecar/pull/225#discussion_r2143210481
########## server/src/main/java/org/apache/cassandra/sidecar/handlers/NativeUpdateHandler.java: ########## @@ -0,0 +1,99 @@ +/* + * 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.sidecar.handlers; + +import java.util.Collections; +import java.util.Set; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import com.google.inject.Inject; +import io.netty.handler.codec.http.HttpResponseStatus; +import io.vertx.core.http.HttpServerRequest; +import io.vertx.core.net.SocketAddress; +import io.vertx.ext.auth.authorization.Authorization; +import io.vertx.ext.web.RoutingContext; +import org.apache.cassandra.sidecar.acl.authorization.BasicPermissions; +import org.apache.cassandra.sidecar.common.request.data.NodeCommandRequestPayload; +import org.apache.cassandra.sidecar.common.server.StorageOperations; +import org.apache.cassandra.sidecar.concurrent.ExecutorPools; +import org.apache.cassandra.sidecar.utils.InstanceMetadataFetcher; +import org.jetbrains.annotations.NotNull; + + +/** + * Handler for starting or stopping native transport on a Cassandra node. + * <p> + * Expects a JSON body: + * { "state": "start" } or { "state": "stop" } + * </p> + */ +public class NativeUpdateHandler extends NodeCommandHandler implements AccessProtected +{ + private final ExecutorPools executorPools; + private static final Logger LOGGER = LoggerFactory.getLogger(NativeUpdateHandler.class); + + + @Inject + public NativeUpdateHandler(InstanceMetadataFetcher metadataFetcher, + ExecutorPools executorPools) + { + super(metadataFetcher, executorPools, null); + this.executorPools = executorPools; + } + + @Override + public Set<Authorization> requiredAuthorizations() + { + return Collections.singleton(BasicPermissions.WRITE_NATIVE.toAuthorization()); + } + + @Override + protected void handleInternal(RoutingContext context, + HttpServerRequest httpRequest, + @NotNull String host, + SocketAddress remoteAddress, + NodeCommandRequestPayload request) + { + StorageOperations storageOps = metadataFetcher.delegate(host).storageOperations(); + + executorPools.service() + .runBlocking(() -> { + switch (request.getState()) + { + case START: + storageOps.startNativeTransport(); + break; + case STOP: + storageOps.stopNativeTransport(); + break; + default: + throw new IllegalStateException("Unknown state: " + request.getState()); + } + }) + .onSuccess(ignored -> { + context.response().setStatusCode(HttpResponseStatus.ACCEPTED.code()).end(); Review Comment: +1, this needs to be a `200 OK` as it is not a long-running operation. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

