act.conf.ConfAdmin Maven / Gradle / Ivy
package act.conf;
/*-
* #%L
* ACT Framework
* %%
* Copyright (C) 2014 - 2017 ActFramework
* %%
* 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.
* #L%
*/
import act.Act;
import act.cli.*;
import act.controller.ExpressController;
import act.controller.annotation.Port;
import act.controller.annotation.UrlContext;
import act.route.Router;
import act.sys.Env;
import act.util.PropertySpec;
import com.alibaba.fastjson.JSONObject;
import org.osgl.mvc.annotation.GetAction;
import org.osgl.util.C;
import org.osgl.util.S;
import java.util.List;
import javax.inject.Inject;
import javax.inject.Singleton;
@UrlContext("conf")
@Singleton
@ExpressController
public class ConfAdmin {
@Inject
private AppConfig appConfig;
@Env.RequireMode(Act.Mode.DEV)
@Command(name = "act.conf.hot_reload", help = "enable/disable hot reload in dev mode")
public void disableEnableHotReload(
@Required("true for enable, false for disable") boolean enable,
CliContext context
) {
Act.conf().enableDisableHotReload(enable);
context.println(Act.conf().hotReloadDisabled() ? "Hot reload disabled" : "Hot reload enabled");
}
@Command(name = "act.conf.list, act.conf, act.configuration, act.configurations", help = "list configuration")
@PropertySpec("key,val")
public List list(
@Optional("list system configuration") boolean system,
@Optional(lead = "-q", help = "specify search text") String q
) {
ConfigKey[] keys = system ? ActConfigKey.values() : AppConfigKey.values();
List list = C.newSizedList(keys.length);
Config> config = system ? Act.conf() : appConfig;
boolean hasQuery = S.notBlank(q);
if (hasQuery) {
q = q.trim().toLowerCase();
}
for (ConfigKey key: keys) {
String keyString = key.toString().toLowerCase();
if (hasQuery && (!keyString.contains(q) && !keyString.matches(q))) {
continue;
}
if (AppConfigKey.TRACE_HANDLER_ENABLED == key) {
list.add(new ConfigItem(key.toString(), appConfig.traceHandler()));
} else if (AppConfigKey.TRACE_REQUEST_ENABLED == key) {
list.add(new ConfigItem(key.toString(), appConfig.traceRequests()));
} else {
list.add(new ConfigItem(key.toString(), config));
}
}
return list;
}
@Command(name = "act.conf.trace-handler", help = "disable enable TraceHandler")
public void toggleTraceHandler(@Required boolean enabled) {
appConfig.toggleTraceHandler(enabled);
}
@Command(name = "act.conf.trace-request", help = "disable enable request trace")
public void toggleTraceRequest(@Required boolean enabled) {
appConfig.toggleTraceRequest(enabled);
}
}