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

net.hasor.rsf.tconsole.StatusRsfInstruct Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2008-2009 the original author or authors.
 *
 * 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 net.hasor.rsf.tconsole;
import net.hasor.core.Inject;
import net.hasor.core.Singleton;
import net.hasor.rsf.RsfContext;
import net.hasor.tconsole.TelCommand;
import net.hasor.tconsole.TelExecutor;

import java.io.StringWriter;

/**
 * RSF 服务框架状态查看和更新指令
 * @version : 2016年4月3日
 * @author 赵永春 ([email protected])
 */
@Singleton
public class StatusRsfInstruct implements TelExecutor {
    @Inject
    private RsfContext rsfContext;

    @Override
    public String helpInfo() {
        return "switching application service online/offline.\r\n"//
                + " - status      (show help info.)\r\n"//
                + " - status info (show application online status.)\r\n"//
                + " - status on   (online application , publishing/subscription to registry.)\r\n"//
                + " - status off  (offline application , remove publishing/subscription form registry.)";
    }

    @Override
    public String doCommand(TelCommand telCommand) throws Throwable {
        StringWriter sw = new StringWriter();
        String[] args = telCommand.getCommandArgs();
        if (args != null && args.length > 0) {
            String doArg = args[0];
            if ("on".equalsIgnoreCase(doArg)) {
                rsfContext.online();
                sw.write("[SUCCEED] switch to online -> Current Status isOnline : " + rsfContext.isOnline());
            } else if ("off".equalsIgnoreCase(doArg)) {
                rsfContext.offline();
                sw.write("[SUCCEED] switch to offline -> Current Status isOnline : " + rsfContext.isOnline());
            } else if ("info".equalsIgnoreCase(doArg)) {
                String status = rsfContext.isOnline() ? "online" : "offline";
                sw.write("[SUCCEED] application is " + status);
            } else {
                sw.write("[ERROR] bad args '" + doArg + "' switch command need 'online' or 'offline'.");
            }
            //
        } else {
            sw.write(">>>>>>>>>>>>>>>>>>>>>>>>  status  <<<<<<<<<<<<<<<<<<<<<<<<\r\n");
            sw.write(helpInfo());
            //
        }
        return sw.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy