All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.servicecomb.core.handler.ShutdownHookHandler Maven / Gradle / Ivy

/*
 * Copyright 2017 Huawei Technologies Co., Ltd
 *
 * Licensed 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 io.servicecomb.core.handler;

import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicLong;

import io.servicecomb.core.AsyncResponse;
import io.servicecomb.core.Invocation;
import io.servicecomb.core.Response;
import io.servicecomb.core.handler.impl.AbstractHandler;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public final class ShutdownHookHandler extends AbstractHandler implements Runnable {
    private static final Logger LOG = LoggerFactory.getLogger(ShutdownHookHandler.class);

    public static final ShutdownHookHandler INSTANCE = new ShutdownHookHandler();

    private final AtomicLong requestCounter = new AtomicLong(0);

    private final AtomicLong responseCounter = new AtomicLong(0);

    private final int timeout = 600;

    private final int period = 10;

    private volatile boolean shuttingDown = false;

    private ShutdownHookHandler() {
        Runtime.getRuntime().addShutdownHook(new Thread(this));
    }

    public long getActiveCount() {
        return requestCounter.get() - responseCounter.get();
    }

    @Override
    public void handle(Invocation invocation, AsyncResponse asyncResp) throws Exception {
        if (shuttingDown) {
            asyncResp.handle(Response.createFail(invocation.getInvocationType(),
                    "shutting down in progress"));
            return;
        }

        // TODO:统计功能应该独立出来,在链中统计,会有各种bug
        //      下面的两次catch,可能会导致一次请求,对应2次应答
        requestCounter.incrementAndGet();
        try {
            invocation.next(resp -> {
                try {
                    asyncResp.handle(resp);
                    responseCounter.incrementAndGet();
                } catch (Throwable e) {
                    responseCounter.incrementAndGet();
                    throw e;
                }
            });
        } catch (Throwable e) {
            responseCounter.incrementAndGet();
            throw e;
        }
    }

    @Override
    public void run() {
        shuttingDown = true;
        LOG.warn("handler chain is shutting down");
        int time = 0;
        while (getActiveCount() != 0 && time <= timeout) {
            try {
                TimeUnit.SECONDS.sleep(period);
            } catch (InterruptedException e) {
                LOG.warn(e.getMessage());
            }
            time = time + period;
            LOG.warn("waiting invocation to finish in seconds " + time);
        }
        LOG.warn("handler chain is shut down");
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy