blob: 0323c59ed6f1900ab8c4326c05b9457062ff3fb4 [file] [log] [blame]
// Copyright (C) 2016 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 replay
import (
"android.googlesource.com/platform/tools/gpu/framework/device"
"android.googlesource.com/platform/tools/gpu/framework/log"
"android.googlesource.com/platform/tools/gpu/gapid/robot/job"
"android.googlesource.com/platform/tools/gpu/gapid/search"
)
// ActionHandler is a function that handles a stream of Actions.
type ActionHandler func(log.Context, *Action) error
// TaskHandler is a function that handles a stream of Tasks.
type TaskHandler func(log.Context, *Task) error
// Manager is the interface to a trace manager.
type Manager interface {
// Search invokes handler with each output that matches the query.
Search(ctx log.Context, query *search.Query, handler ActionHandler) error
// Register a handler that will accept incoming tasks.
Register(ctx log.Context, host *device.Information, target *device.Information, handler TaskHandler) error
// Do asks the manager to send a task to a device.
Do(ctx log.Context, device string, input *Input) (string, error)
// Update adjusts the state of an action.
Update(ctx log.Context, action string, status job.Status, output *Output) error
}