/* Copyright 2024 The OpenXLA Authors.

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.
==============================================================================*/

#ifndef XLA_BACKENDS_CPU_RUNTIME_CONDITIONAL_THUNK_H_
#define XLA_BACKENDS_CPU_RUNTIME_CONDITIONAL_THUNK_H_

#include <memory>
#include <string>
#include <utility>
#include <vector>

#include "absl/status/statusor.h"
#include "xla/backends/cpu/runtime/thunk.h"
#include "xla/backends/cpu/runtime/thunk_executor.h"
#include "xla/service/buffer_assignment.h"
#include "xla/tsl/concurrency/async_value_ref.h"

namespace xla::cpu {

class ConditionalThunk final : public Thunk {
 public:
  static absl::StatusOr<std::unique_ptr<ConditionalThunk>> Create(
      Info info, BufferAllocation::Slice branch_index_buffer,
      std::vector<ThunkSequence> branch_sequences);

  tsl::AsyncValueRef<ExecuteEvent> Execute(const ExecuteParams& params) final;

  BufferUses buffer_uses() const final;
  ResourceUses resource_uses() const final;

  const std::vector<ThunkExecutor>& branch_executors() const {
    return branch_executors_;
  }

  const BufferAllocation::Slice& branch_index_buffer() const {
    return branch_index_buffer_;
  }

  std::vector<std::pair<std::string, const ThunkSequence*>> nested_thunks()
      const final;

 private:
  ConditionalThunk(Info info, BufferAllocation::Slice branch_index_buffer,
                   std::vector<ThunkExecutor> branch_executors);

  BufferAllocation::Slice branch_index_buffer_;
  std::vector<ThunkExecutor> branch_executors_;
};

}  // namespace xla::cpu

#endif  // XLA_BACKENDS_CPU_RUNTIME_CONDITIONAL_THUNK_H_
