/******************************************************************************* * Copyright (c) Feb 19, 2012 Zend Technologies Ltd. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html *******************************************************************************/ package org.zend.sdkcli.internal.commands; import org.zend.sdkcli.internal.options.Option; import org.zend.sdklib.application.ZendCodeTracing; import org.zend.webapi.core.WebApiException; import org.zend.webapi.core.connection.data.CodeTracingStatus; /** * Command to disable code tracing on specified target. * * @author Wojciech Galanciak, 2012 * */ public class DisableCodetracingCommand extends AbstractCodetracingCommand { private static final String RESTART = "r"; @Option(opt = RESTART, required = false, description = "Restart php during operation", argName = "restart php") public boolean isRestartPhp() { if (hasOption(RESTART)) { return Boolean.valueOf(getValue(RESTART)); } return true; } @Override public boolean doExecute() { ZendCodeTracing codeTracing = getCodeTracing(); CodeTracingStatus result = null; try { result = codeTracing.disable(isRestartPhp()); } catch (WebApiException e) { getLogger().error( "Failed to disable developer mode on target '" + getTarget() + "'"); return false; } if (result != null) { getLogger().info("Developer mode disabled successfully."); return true; } getLogger().error( "Failed to disable developer mode on target '" + getTarget() + "'"); return false; } }