blob: f75fbd1b22ef6365352b3a048d2ad1c233c19f23 [file] [log] [blame]
/*
* Copyright (C) 2015 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.compatibility.common.tradefed.testtype;
import com.android.tradefed.build.IBuildInfo;
import com.android.tradefed.testtype.IAbi;
import java.io.File;
import java.util.LinkedList;
import java.util.List;
import java.util.Set;
/**
* Interface for accessing tests from the Compatibility repository.
*/
public interface IModuleRepo {
/**
* @return true if this repository has been initialized.
*/
boolean isInitialized();
/**
* Initializes the repository.
*/
void initialize(int shards, Integer shardIndex, File testsDir, Set<IAbi> abis,
List<String> deviceTokens, List<String> testArgs, List<String> moduleArgs,
Set<String> mIncludeFilters, Set<String> mExcludeFilters, IBuildInfo buildInfo);
/**
* @return a {@link LinkedList} of all modules to run on the device referenced by the given
* serial.
*/
LinkedList<IModuleDef> getModules(String serial, int shardIndex);
/**
* @return the number of shards this repo is initialized for.
*/
int getNumberOfShards();
/**
* @return the modules which do not have token and have not been assigned to a device.
*/
List<IModuleDef> getNonTokenModules();
/**
* @return the modules which have token and have not been assigned to a device.
*/
List<IModuleDef> getTokenModules();
/**
* @return An array of all module ids in the repo.
*/
String[] getModuleIds();
/**
* Clean up all internal references.
*/
void tearDown();
}