Check a task status inside HandleExt to handle concurrent issue
[platform/upstream/csr-framework.git] / src / framework / client / handle-ext.h
1 /*
2  *  Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *  Licensed under the Apache License, Version 2.0 (the "License");
5  *  you may not use this file except in compliance with the License.
6  *  You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License
15  */
16 /*
17  * @file        handle-ext.h
18  * @author      Kyungwook Tak (k.tak@samsung.com)
19  * @version     1.0
20  * @brief       handle with async request extension
21  */
22 #pragma once
23
24 #include <mutex>
25 #include <thread>
26 #include <memory>
27
28 #include "client/handle.h"
29 #include "client/callback.h"
30
31 namespace Csr {
32 namespace Client {
33
34 class HandleExt : public Handle {
35 public:
36         explicit HandleExt(SockId id, ContextShPtr &&);
37         virtual ~HandleExt();
38
39         void dispatchAsync(const std::shared_ptr<Task> &task);
40         void setStopFunc(std::function<void()> &&func);
41         bool stop(void);
42         bool isStopped(void) const;
43         bool isRunning(void) const;
44
45         Callback m_cb; // TODO: to refine..
46         std::mutex m_dispatchMutex;
47
48         virtual void add(ResultPtr &&) override;
49         virtual void add(ResultListPtr &&) override;
50
51 private:
52         bool m_stop;
53         bool m_isRunning;
54         std::thread m_worker;
55         std::function<void()> m_stopFunc;
56         mutable std::mutex m_resultsMutex;
57         mutable std::mutex m_flagMutex;
58 };
59
60 } // namespace Client
61 } // namespace Csr