Documentation ¶
Overview ¶
Package replay is used to issue replay requests to replay devices.
Index ¶
- Variables
- func Execute(ctx context.Context, dependent string, payload gapir.Payload, ...) error
- func GetDevice(ctx context.Context) *path.Device
- func GetTimestamps(ctx context.Context, capturePath *path.Capture, device *path.Device, ...) error
- func GpuProfile(ctx context.Context, staticAnalysisResult chan *api.StaticAnalysisProfileData, ...) (*service.ProfilingData, error)
- func PutDevice(ctx context.Context, m *path.Device) context.Context
- func PutManager(ctx context.Context, m Manager) context.Context
- type Config
- type Custom
- func (Custom) API() api.API
- func (Custom) Alive() bool
- func (cmd Custom) Clone() api.Cmd
- func (Custom) CmdFlags() api.CmdFlags
- func (Custom) CmdName() string
- func (Custom) CmdParams() api.Properties
- func (Custom) CmdResult() *api.Property
- func (Custom) Extras() *api.CmdExtras
- func (c Custom) Mutate(ctx context.Context, id api.CmdID, s *api.GlobalState, b *builder.Builder, ...) error
- func (Custom) SetTerminated(bool)
- func (cmd Custom) SetThread(t uint64)
- func (Custom) Terminated() bool
- func (cmd Custom) Thread() uint64
- type Exporter
- type Generator
- type InitialPayloadResult
- type Intent
- type Issue
- type Manager
- type ProfileExperiments
- type Profiler
- type QueryFramebufferAttachment
- type QueryIssues
- type QueryTimestamps
- type Request
- type RequestAndResult
- type Result
- type SignalHandler
- type SplitGenerator
- type Support
Constants ¶
This section is empty.
Variables ¶
var Events struct { // OnReplay is called when a replay batch is sent to a device. OnReplay func(bind.Device, Intent, Config) }
Events holds a number of callback functions that can be used to monitor replay activity.
Functions ¶
func Execute ¶
func Execute( ctx context.Context, dependent string, payload gapir.Payload, handlePost builder.PostDataHandler, handleNotification builder.NotificationHandler, fenceReadyCallback builder.FenceReadyRequestCallback, m Manager, key *gapirClient.ReplayerKey, memoryLayout *device.MemoryLayout, os *device.OS) error
Execute sends the replay payload for execution on the target replay device communicating on connection. decoder will be used for decoding all postback reponses. Once a postback response is decoded, the corresponding handler in the handlers map will be called.
func GetDevice ¶
GetDevice retrieves the target replay device from a context previously annotated by PutDevice.
func GetTimestamps ¶
func GetTimestamps(ctx context.Context, capturePath *path.Capture, device *path.Device, handler service.TimeStampsHandler) error
GetTimestamps replays the trace and return the start and end timestamps for each commandbuffers
func GpuProfile ¶
func GpuProfile(ctx context.Context, staticAnalysisResult chan *api.StaticAnalysisProfileData, capturePath *path.Capture, device *path.Device, experiments *service.ProfileExperiments, loopCount int32) (*service.ProfilingData, error)
GpuProfile replays the trace and writes a Perfetto trace of the replay
Types ¶
type Config ¶
type Config interface{}
Config is a user-defined type used to describe the type of replay being requested. Replay requests made with configs that have equality (==) will likely be batched into the same replay pass. Configs can be used to force requests into different replay passes. For example, by issuing requests with different configs we can prevent a profiling Request from being issued in the same pass as a Request to render all draw calls in wireframe.
type Custom ¶
type Custom struct { T uint64 // The thread ID F func(ctx context.Context, s *api.GlobalState, b *builder.Builder) error }
Custom is a command issuing custom replay operations to the replay builder b upon Replay().
func (Custom) CmdParams ¶
func (Custom) CmdParams() api.Properties
func (Custom) SetTerminated ¶
func (Custom) Terminated ¶
type Exporter ¶
type Exporter interface { Manager // Export wait for waitRequests replay requests to be sent, // it then compiles the instructions for replay and triggers // all postback with builder.ErrReplayNotExecuted . Export(ctx context.Context, waitRequests int) (*gapir.Payload, error) }
Exporter stores the input replays and export them as gapir instruction.
type Generator ¶
type Generator interface { // Replay is called when a replay pass is ready to be sent to the replay // device. Replay may filter or transform the list of commands, satisfying // all the specified requests and config, before outputting the final // command stream to out. Replay( ctx context.Context, intent Intent, cfg Config, dependentPayload string, requests []RequestAndResult, device *device.Instance, capture *capture.GraphicsCapture, out transform.Writer) error }
Generator is the interface for types that support replay generation.
type InitialPayloadResult ¶
type InitialPayloadResult struct {
// contains filtered or unexported fields
}
type Intent ¶
type Intent struct { Device *path.Device // The path to the device being used for replay. Capture *path.Capture // The path to the capture that is being replayed. }
Intent describes the source capture and replay target information used for issuing a replay request.
type Issue ¶
type Issue struct { Command api.CmdID // The command that reported the issue. Severity service.Severity // The severity of the issue. Error error // The issue's error. }
Issue represents a single replay issue reported by QueryIssues.
type Manager ¶
type Manager interface { // Replay requests that req is to be performed on the device described by // intent, using the capture described by intent. Replay( ctx context.Context, intent Intent, cfg Config, req Request, generator Generator, hints *path.UsageHints, forceNonSplitReplay bool) (val interface{}, err error) }
Manager executes replay requests.
func GetManager ¶
GetManager retrieves the manager from a context previously annotated by PutManager.
func NewManagerForTest ¶
NewManagerForTest returns a new Manager for the test.
type ProfileExperiments ¶
ProfileExperiments represents the experiment settings for the profiling
type Profiler ¶
type Profiler interface { // Profile execute a profilable replay. QueryProfile( ctx context.Context, intent Intent, mgr Manager, staticAnalysisResult chan *api.StaticAnalysisProfileData, hints *path.UsageHints, traceOptions *service.TraceOptions, experiments ProfileExperiments, loopCount int32) (*service.ProfilingData, error) }
Profiler is the interface implemented by replays that can be performed in a profiling mode while capturing profiling data.
type QueryFramebufferAttachment ¶
type QueryFramebufferAttachment interface { QueryFramebufferAttachment( ctx context.Context, intent Intent, mgr Manager, after []uint64, width, height uint32, attachment api.FramebufferAttachmentType, framebufferIndex uint32, drawMode path.DrawMode, disableReplayOptimization bool, displayToSurface bool, hints *path.UsageHints) (*image.Data, error) }
QueryFramebufferAttachment is the interface implemented by types that can return the content of a framebuffer attachment at a particular point in a capture.
type QueryIssues ¶
type QueryIssues interface { QueryIssues( ctx context.Context, intent Intent, mgr Manager, displayToSurface bool, hints *path.UsageHints) ([]Issue, error) }
QueryIssues is the interface implemented by types that can verify the replay performs as expected and without errors. If the capture includes FramebufferObservation commands, this also includes checking the replayed framebuffer matches (within reasonable error) the framebuffer observed at capture time.
type QueryTimestamps ¶
type QueryTimestamps interface { QueryTimestamps( ctx context.Context, intent Intent, mgr Manager, handler service.TimeStampsHandler, hints *path.UsageHints) error }
QueryTimestamps is the interface implemented by types that can return the timestamps of the execution of commands
type Request ¶
type Request interface{}
Request is a user-defined type that holds information relevant to a single replay request. An example Request would be one that informs ReplayTransforms to insert a postback of the currently bound render-target content at a specific command.
type RequestAndResult ¶
RequestAndResult is a pair of Request and Result.
type Result ¶
type Result func(val interface{}, err error)
Result is the function called for the result of a request. One of val and err must be nil.
type SignalHandler ¶
type SignalHandler struct { StartSignal task.Signal StartFunc task.Task ReadySignal task.Signal ReadyFunc task.Task StopSignal task.Signal StopFunc task.Task DoneSignal task.Signal DoneFunc task.Task Written int64 Err error }
TODO(apbodnar) move this into whatever eventually calls Profile()
func NewSignalHandler ¶
func NewSignalHandler() *SignalHandler
type SplitGenerator ¶
type SplitGenerator interface { Generator // GetInitialPayload returns a set of instructions // that can be used to set up the replay. GetInitialPayload(ctx context.Context, capture *path.Capture, device *device.Instance, out transform.Writer) error // CleanupResources returns a set of instructions // that can be used to clean up from the Initial payload. CleanupResources(ctx context.Context, device *device.Instance, out transform.Writer) error }
SplitGenerator is the interface for types that support split-replay generation.
type Support ¶
type Support interface { // GetReplayPriority returns a uint32 representing the preference for // replaying this trace on the given device. // A lower number represents a higher priority, and Zero represents // an inability for the trace to be replayed on the given device, and is // accompanied by the reason for the incompatibility. GetReplayPriority(context.Context, *device.Instance, *capture.Header) (uint32, *stringtable.Msg) }
Support is the optional interface implemented by APIs that can describe replay support for particular devices and device types.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
Package asm contains high-level instructions to control the replay virtual machine.
|
Package asm contains high-level instructions to control the replay virtual machine. |
Package builder contains the Builder type to build replay payloads.
|
Package builder contains the Builder type to build replay payloads. |
Package devices contains functions for gathering devices that can replay a capture.
|
Package devices contains functions for gathering devices that can replay a capture. |
Package opcode holds all the opcodes that are to be interpreted by the replay virtual machine.
|
Package opcode holds all the opcodes that are to be interpreted by the replay virtual machine. |
Package protocol contains the constants and types used to communicate with the replay system and its virtual-machine interpreter.
|
Package protocol contains the constants and types used to communicate with the replay system and its virtual-machine interpreter. |
Package value contains the value types used by the replay virtual machine.
|
Package value contains the value types used by the replay virtual machine. |