1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// This file is part of Substrate.

// Copyright (C) Parity Technologies (UK) Ltd.
// SPDX-License-Identifier: Apache-2.0

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

//! Contains the [`Task`] trait, which defines a general-purpose way for defining and executing
//! service work, and supporting types.

use codec::FullCodec;
use scale_info::TypeInfo;
use sp_runtime::DispatchError;
use sp_std::{fmt::Debug, iter::Iterator, vec, vec::IntoIter};
use sp_weights::Weight;

/// Contain's re-exports of all the supporting types for the [`Task`] trait. Used in the macro
/// expansion of `RuntimeTask`.
#[doc(hidden)]
pub mod __private {
	pub use codec::FullCodec;
	pub use scale_info::TypeInfo;
	pub use sp_runtime::DispatchError;
	pub use sp_std::{fmt::Debug, iter::Iterator, vec, vec::IntoIter};
	pub use sp_weights::Weight;
}

/// A general-purpose trait which defines a type of service work (i.e., work to performed by an
/// off-chain worker) including methods for enumerating, validating, indexing, and running
/// tasks of this type.
pub trait Task: Sized + FullCodec + TypeInfo + Clone + Debug + PartialEq + Eq {
	/// An [`Iterator`] over tasks of this type used as the return type for `enumerate`.
	type Enumeration: Iterator;

	/// Inspects the pallet's state and enumerates tasks of this type.
	fn iter() -> Self::Enumeration;

	/// Checks if a particular instance of this `Task` variant is a valid piece of work.
	fn is_valid(&self) -> bool;

	/// Performs the work for this particular `Task` variant.
	fn run(&self) -> Result<(), DispatchError>;

	/// Returns the weight of executing this `Task`.
	fn weight(&self) -> Weight;

	/// A unique value representing this `Task` within the current pallet. Analogous to
	/// `call_index`, but for tasks.'
	///
	/// This value should be unique within the current pallet and can overlap with task indices
	/// in other pallets.
	fn task_index(&self) -> u32;
}

impl Task for () {
	type Enumeration = IntoIter<Self>;

	fn iter() -> Self::Enumeration {
		vec![].into_iter()
	}

	fn is_valid(&self) -> bool {
		true
	}

	fn run(&self) -> Result<(), DispatchError> {
		Ok(())
	}

	fn weight(&self) -> Weight {
		Weight::default()
	}

	fn task_index(&self) -> u32 {
		0
	}
}