910e62b5创建于 1月15日历史提交
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CC_PAINT_PAINT_WORKLET_JOB_H_
#define CC_PAINT_PAINT_WORKLET_JOB_H_

#include <vector>

#include "base/containers/flat_map.h"
#include "base/memory/scoped_refptr.h"
#include "cc/paint/paint_export.h"
#include "cc/paint/paint_record.h"
#include "cc/paint/paint_worklet_input.h"

namespace cc {

// A PaintWorkletJob instance encapsulates the data that needs to be passed
// around in order to dispatch PaintWorklets to the worklet thread, paint them,
// and return the results to cc-impl.
class CC_PAINT_EXPORT PaintWorkletJob {
 public:
  // A map from animated property name to its compositor-provided value, used to
  // override the Blink-provided value for properties which are being animated.
  // For a custom property, its name is sufficient to uniquely identify it.
  // TODO(xidachen): support more property types such as color.
  using AnimatedPropertyValues =
      base::flat_map<PaintWorkletInput::PropertyKey,
                     PaintWorkletInput::PropertyValue>;
  PaintWorkletJob(int layer_id,
                  scoped_refptr<const PaintWorkletInput> input,
                  AnimatedPropertyValues animated_property_values);
  PaintWorkletJob(const PaintWorkletJob& other);
  PaintWorkletJob(PaintWorkletJob&& other);
  ~PaintWorkletJob();

  int layer_id() const { return layer_id_; }
  const scoped_refptr<const PaintWorkletInput>& input() const { return input_; }
  const AnimatedPropertyValues& GetAnimatedPropertyValues() const {
    return animated_property_values_;
  }
  PaintRecord output() const { return output_; }

  void SetOutput(PaintRecord output);

 private:
  // The id for the layer that the PaintWorkletInput is associated with.
  int layer_id_;

  // The input for a PaintWorkletJob is encapsulated in a PaintWorkletInput
  // instance; see class-level comments on |PaintWorkletInput| for details.
  // The style map in the |input_| is un-mutable once constructed. Overridden
  // values can be set on |animated_property_values_| below.
  scoped_refptr<const PaintWorkletInput> input_;

  // A set of 'overrides' for animated properties where the compositor animation
  // system has produced a different value that should be used instead of the
  // old value contributed by Blink.
  AnimatedPropertyValues animated_property_values_;

  // The output for a PaintWorkletJob is a series of paint ops for the painted
  // content, that can be passed to raster.
  PaintRecord output_;
};

// The PaintWorklet dispatcher logic passes the PaintWorkletJobVector to the
// worklet thread during painting. To keep the structure alive on both the
// compositor and worklet side (as technically the compositor could be town down
// whilst the worklet is still painting), we use base::RefCountedJob for it.
using PaintWorkletJobVector =
    base::RefCountedData<std::vector<PaintWorkletJob>>;
using PaintWorkletId = int;
using PaintWorkletJobMap =
    base::flat_map<PaintWorkletId, scoped_refptr<PaintWorkletJobVector>>;

}  // namespace cc

#endif  // CC_PAINT_PAINT_WORKLET_JOB_H_