1a3e0fd82Sopenharmony_ci/*
2a3e0fd82Sopenharmony_ci * Copyright (c) 2020-2021 Huawei Device Co., Ltd.
3a3e0fd82Sopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License");
4a3e0fd82Sopenharmony_ci * you may not use this file except in compliance with the License.
5a3e0fd82Sopenharmony_ci * You may obtain a copy of the License at
6a3e0fd82Sopenharmony_ci *
7a3e0fd82Sopenharmony_ci *     http://www.apache.org/licenses/LICENSE-2.0
8a3e0fd82Sopenharmony_ci *
9a3e0fd82Sopenharmony_ci * Unless required by applicable law or agreed to in writing, software
10a3e0fd82Sopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS,
11a3e0fd82Sopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12a3e0fd82Sopenharmony_ci * See the License for the specific language governing permissions and
13a3e0fd82Sopenharmony_ci * limitations under the License.
14a3e0fd82Sopenharmony_ci */
15a3e0fd82Sopenharmony_ci
16a3e0fd82Sopenharmony_ci/**
17a3e0fd82Sopenharmony_ci * @addtogroup UI_Common
18a3e0fd82Sopenharmony_ci * @{
19a3e0fd82Sopenharmony_ci *
20a3e0fd82Sopenharmony_ci * @brief Defines common UI capabilities, such as image and text processing.
21a3e0fd82Sopenharmony_ci *
22a3e0fd82Sopenharmony_ci * @since 1.0
23a3e0fd82Sopenharmony_ci * @version 1.0
24a3e0fd82Sopenharmony_ci */
25a3e0fd82Sopenharmony_ci
26a3e0fd82Sopenharmony_ci/**
27a3e0fd82Sopenharmony_ci * @file task.h
28a3e0fd82Sopenharmony_ci *
29a3e0fd82Sopenharmony_ci * @brief Declares the <b>Task</b> class of the graphics module, which provides functions for setting the running period
30a3e0fd82Sopenharmony_ci * and time of a task.
31a3e0fd82Sopenharmony_ci *
32a3e0fd82Sopenharmony_ci * @since 1.0
33a3e0fd82Sopenharmony_ci * @version 1.0
34a3e0fd82Sopenharmony_ci */
35a3e0fd82Sopenharmony_ci
36a3e0fd82Sopenharmony_ci#ifndef GRAPHIC_LITE_TASK_H
37a3e0fd82Sopenharmony_ci#define GRAPHIC_LITE_TASK_H
38a3e0fd82Sopenharmony_ci
39a3e0fd82Sopenharmony_ci#include <cstdint>
40a3e0fd82Sopenharmony_ci
41a3e0fd82Sopenharmony_ci#include "gfx_utils/heap_base.h"
42a3e0fd82Sopenharmony_ci
43a3e0fd82Sopenharmony_cinamespace OHOS {
44a3e0fd82Sopenharmony_ci/**
45a3e0fd82Sopenharmony_ci * @brief Represents the <b>Task</b> class of the graphics module.
46a3e0fd82Sopenharmony_ci *        This class provides functions for setting the running period and time of a task.
47a3e0fd82Sopenharmony_ci *
48a3e0fd82Sopenharmony_ci * @since 1.0
49a3e0fd82Sopenharmony_ci * @version 1.0
50a3e0fd82Sopenharmony_ci */
51a3e0fd82Sopenharmony_ciclass Task : public HeapBase {
52a3e0fd82Sopenharmony_cipublic:
53a3e0fd82Sopenharmony_ci    /**
54a3e0fd82Sopenharmony_ci     * @brief A constructor used to create a <b>Task</b> instance.
55a3e0fd82Sopenharmony_ci     */
56a3e0fd82Sopenharmony_ci    Task() : period_(DEFAULT_TASK_PERIOD), lastRun_(0) {}
57a3e0fd82Sopenharmony_ci
58a3e0fd82Sopenharmony_ci    /**
59a3e0fd82Sopenharmony_ci     * @brief A constructor used to create a <b>Task</b> instance with the specified running period.
60a3e0fd82Sopenharmony_ci     * @param period Indicates the running period of this task.
61a3e0fd82Sopenharmony_ci     */
62a3e0fd82Sopenharmony_ci    Task(uint32_t period) : period_(period), lastRun_(0) {}
63a3e0fd82Sopenharmony_ci
64a3e0fd82Sopenharmony_ci    /**
65a3e0fd82Sopenharmony_ci     * @brief A destructor used to delete the <b>Task</b> instance.
66a3e0fd82Sopenharmony_ci     */
67a3e0fd82Sopenharmony_ci    virtual ~Task() {}
68a3e0fd82Sopenharmony_ci
69a3e0fd82Sopenharmony_ci    /**
70a3e0fd82Sopenharmony_ci     * @brief Sets the running period for this task.
71a3e0fd82Sopenharmony_ci     * @param period Indicates the running period to set.
72a3e0fd82Sopenharmony_ci     */
73a3e0fd82Sopenharmony_ci    void SetPeriod(uint32_t period)
74a3e0fd82Sopenharmony_ci    {
75a3e0fd82Sopenharmony_ci        period_ = period;
76a3e0fd82Sopenharmony_ci    }
77a3e0fd82Sopenharmony_ci
78a3e0fd82Sopenharmony_ci    /**
79a3e0fd82Sopenharmony_ci     * @brief Sets the end time for this task.
80a3e0fd82Sopenharmony_ci     * @param lastRun Indicates the end time to set.
81a3e0fd82Sopenharmony_ci     */
82a3e0fd82Sopenharmony_ci    void SetLastRun(uint32_t lastRun)
83a3e0fd82Sopenharmony_ci    {
84a3e0fd82Sopenharmony_ci        lastRun_ = lastRun;
85a3e0fd82Sopenharmony_ci    }
86a3e0fd82Sopenharmony_ci
87a3e0fd82Sopenharmony_ci    /**
88a3e0fd82Sopenharmony_ci     * @brief Obtains the running period of this task.
89a3e0fd82Sopenharmony_ci     * @return Returns the running period.
90a3e0fd82Sopenharmony_ci     */
91a3e0fd82Sopenharmony_ci    uint32_t GetPeriod() const
92a3e0fd82Sopenharmony_ci    {
93a3e0fd82Sopenharmony_ci        return period_;
94a3e0fd82Sopenharmony_ci    }
95a3e0fd82Sopenharmony_ci
96a3e0fd82Sopenharmony_ci    /**
97a3e0fd82Sopenharmony_ci     * @brief Obtains the end time of this task.
98a3e0fd82Sopenharmony_ci     * @return Returns the end time.
99a3e0fd82Sopenharmony_ci     */
100a3e0fd82Sopenharmony_ci    uint32_t GetLastRun() const
101a3e0fd82Sopenharmony_ci    {
102a3e0fd82Sopenharmony_ci        return lastRun_;
103a3e0fd82Sopenharmony_ci    }
104a3e0fd82Sopenharmony_ci
105a3e0fd82Sopenharmony_ci    /**
106a3e0fd82Sopenharmony_ci     * @brief Executes this task.
107a3e0fd82Sopenharmony_ci     */
108a3e0fd82Sopenharmony_ci    void TaskExecute();
109a3e0fd82Sopenharmony_ci
110a3e0fd82Sopenharmony_ci    /**
111a3e0fd82Sopenharmony_ci     * @brief Called when this task is executed.
112a3e0fd82Sopenharmony_ci     */
113a3e0fd82Sopenharmony_ci    virtual void Callback() = 0;
114a3e0fd82Sopenharmony_ci
115a3e0fd82Sopenharmony_ci    /**
116a3e0fd82Sopenharmony_ci     * @brief Initializes this task.
117a3e0fd82Sopenharmony_ci     */
118a3e0fd82Sopenharmony_ci    virtual void Init();
119a3e0fd82Sopenharmony_ci
120a3e0fd82Sopenharmony_ciprotected:
121a3e0fd82Sopenharmony_ci    uint32_t period_;  /* call period in ms unit */
122a3e0fd82Sopenharmony_ci    uint32_t lastRun_; /* last run time */
123a3e0fd82Sopenharmony_ci};
124a3e0fd82Sopenharmony_ci} // namespace OHOS
125a3e0fd82Sopenharmony_ci#endif // GRAPHIC_LITE_TASK_H
126