2018-05-10 09:46:34 +03:00
|
|
|
// Copyright 2018 Slightech Co., Ltd. All rights reserved.
|
|
|
|
//
|
|
|
|
// 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.
|
2018-10-27 16:24:04 +03:00
|
|
|
#ifndef MYNTEYE_API_PROCESSOR_H_
|
|
|
|
#define MYNTEYE_API_PROCESSOR_H_
|
2018-04-26 09:44:47 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <condition_variable>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <functional>
|
|
|
|
#include <list>
|
|
|
|
#include <memory>
|
|
|
|
#include <mutex>
|
|
|
|
#include <string>
|
|
|
|
#include <thread>
|
|
|
|
|
|
|
|
#include "mynteye/mynteye.h"
|
2018-10-27 16:24:04 +03:00
|
|
|
#include "mynteye/api/object.h"
|
2018-04-26 09:44:47 +03:00
|
|
|
|
|
|
|
MYNTEYE_BEGIN_NAMESPACE
|
|
|
|
|
|
|
|
class Processor /*: public std::enable_shared_from_this<Processor>*/ {
|
|
|
|
public:
|
|
|
|
using PreProcessCallback = std::function<void(Object *const)>;
|
|
|
|
using PostProcessCallback = std::function<void(Object *const)>;
|
|
|
|
using ProcessCallback = std::function<bool(
|
|
|
|
Object *const in, Object *const out, Processor *const parent)>;
|
|
|
|
|
2018-06-01 05:32:36 +03:00
|
|
|
explicit Processor(std::int32_t proc_period = 0);
|
2018-04-26 09:44:47 +03:00
|
|
|
virtual ~Processor();
|
|
|
|
|
|
|
|
virtual std::string Name();
|
|
|
|
|
|
|
|
void AddChild(const std::shared_ptr<Processor> &child);
|
|
|
|
|
|
|
|
void RemoveChild(const std::shared_ptr<Processor> &child);
|
|
|
|
|
|
|
|
std::list<std::shared_ptr<Processor>> GetChilds();
|
|
|
|
|
|
|
|
void SetPreProcessCallback(PreProcessCallback callback);
|
|
|
|
void SetPostProcessCallback(PostProcessCallback callback);
|
|
|
|
void SetProcessCallback(ProcessCallback callback);
|
|
|
|
|
2018-04-27 10:47:54 +03:00
|
|
|
void Activate(bool parents = false);
|
|
|
|
void Deactivate(bool childs = false);
|
2018-04-26 09:44:47 +03:00
|
|
|
bool IsActivated();
|
|
|
|
|
|
|
|
bool IsIdle();
|
|
|
|
|
|
|
|
/** Returns dropped or not. */
|
2018-04-28 07:40:29 +03:00
|
|
|
bool Process(const Object &in);
|
2018-04-26 09:44:47 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the last output.
|
|
|
|
* @note Returns null if not output now.
|
|
|
|
*/
|
2018-06-13 13:00:31 +03:00
|
|
|
std::shared_ptr<Object> GetOutput();
|
2018-04-26 09:44:47 +03:00
|
|
|
|
|
|
|
std::uint64_t GetDroppedCount();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual Object *OnCreateOutput() = 0;
|
2018-04-28 08:37:25 +03:00
|
|
|
virtual bool OnProcess(
|
2018-04-26 09:44:47 +03:00
|
|
|
Object *const in, Object *const out, Processor *const parent) = 0;
|
|
|
|
|
|
|
|
private:
|
|
|
|
/** Run in standalone thread. */
|
|
|
|
void Run();
|
|
|
|
|
|
|
|
void SetIdle(bool idle);
|
|
|
|
|
2018-06-01 05:32:36 +03:00
|
|
|
std::int32_t proc_period_;
|
|
|
|
|
2018-04-26 09:44:47 +03:00
|
|
|
bool activated_;
|
|
|
|
|
|
|
|
bool input_ready_;
|
|
|
|
std::mutex mtx_input_ready_;
|
|
|
|
std::condition_variable cond_input_ready_;
|
|
|
|
|
|
|
|
bool idle_;
|
|
|
|
std::uint64_t dropped_count_;
|
|
|
|
std::mutex mtx_state_;
|
|
|
|
|
|
|
|
std::unique_ptr<Object> input_;
|
|
|
|
std::unique_ptr<Object> output_;
|
|
|
|
|
|
|
|
std::unique_ptr<Object> output_result_;
|
|
|
|
std::mutex mtx_result_;
|
|
|
|
|
|
|
|
PreProcessCallback pre_callback_;
|
|
|
|
PostProcessCallback post_callback_;
|
|
|
|
ProcessCallback callback_;
|
|
|
|
|
|
|
|
Processor *parent_;
|
|
|
|
std::list<std::shared_ptr<Processor>> childs_;
|
|
|
|
|
|
|
|
std::thread thread_;
|
|
|
|
};
|
|
|
|
|
2018-04-26 10:15:33 +03:00
|
|
|
template <typename T>
|
|
|
|
void iterate_processors(
|
|
|
|
const T &processors, std::function<void(std::shared_ptr<Processor>)> fn) {
|
|
|
|
for (auto &&proc : processors) {
|
|
|
|
fn(proc);
|
|
|
|
iterate_processors(proc->GetChilds(), fn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-26 09:44:47 +03:00
|
|
|
MYNTEYE_END_NAMESPACE
|
|
|
|
|
2018-10-27 16:24:04 +03:00
|
|
|
#endif // MYNTEYE_API_PROCESSOR_H_
|