blob: ccb3bb7b118f98f9cba2bb6a9405830cfe85911a [file] [log] [blame]
/*
* Copyright (C) 2017 The Android Open Source Project
*
* 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 com.android.tradefed.targetprep;
import com.android.tradefed.config.Option;
import com.android.tradefed.config.OptionCopier;
/**
* Base implementation class for {@link ITargetPreparer} that allows to control whether the object
* is disabled or not.
*/
public abstract class BaseTargetPreparer implements ITargetPreparer {
private static final String DISABLE_OPTION_NAME = "disable";
@Option(name = DISABLE_OPTION_NAME, description = "disables the target preparer")
private boolean mDisable = false;
private static final String DISABLE_TEARDOWN_OPTION_NAME = "disable-tear-down";
@Option(
name = DISABLE_TEARDOWN_OPTION_NAME,
description = "disables the clean up step of a target cleaner"
)
private boolean mDisableTearDown = false;
/** {@inheritDoc} */
@Override
public final boolean isDisabled() {
return mDisable;
}
/** {@inheritDoc} */
@Override
public final boolean isTearDownDisabled() {
return mDisableTearDown;
}
/** {@inheritDoc} */
@Override
public final void setDisable(boolean isDisabled) {
mDisable = isDisabled;
// Update the option this way to mark it as modified.
OptionCopier.copyOptionsNoThrow(this, this, DISABLE_OPTION_NAME);
}
/** {@inheritDoc} */
@Override
public final void setDisableTearDown(boolean isDisabled) {
mDisableTearDown = isDisabled;
// Update the option this way to mark it as modified.
OptionCopier.copyOptionsNoThrow(this, this, DISABLE_TEARDOWN_OPTION_NAME);
}
}