blob: abf01e649e6ee31f41d1cd04fa529bea318b455f [file] [log] [blame]
/**
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 LIBMINIFI_INCLUDE_CORE_STATE_PROCESSORCONTROLLER_H_
#define LIBMINIFI_INCLUDE_CORE_STATE_PROCESSORCONTROLLER_H_
#include <string>
#include <memory>
#include "core/Processor.h"
#include "SchedulingAgent.h"
#include "UpdateController.h"
namespace org {
namespace apache {
namespace nifi {
namespace minifi {
namespace state {
/**
* Purpose, Justification, & Design: ProcessController is the state control mechanism for processors.
* This is coupled with the scheduler. Since scheduling agents run processors, we must ensure state
* is set in the processor to enable it to run, after which the scheduling agent will then be allowed
* to run the aforementioned processor.
*/
class ProcessorController : public StateController {
public:
ProcessorController(const std::shared_ptr<core::Processor> &processor, const std::shared_ptr<SchedulingAgent> &scheduler);
virtual ~ProcessorController();
virtual std::string getComponentName() const {
return processor_->getName();
}
virtual utils::Identifier getComponentUUID() const {
return processor_->getUUID();
}
std::shared_ptr<core::Processor> getProcessor() {
return processor_;
}
/**
* Start the client
*/
virtual int16_t start();
/**
* Stop the client
*/
virtual int16_t stop();
virtual bool isRunning();
virtual int16_t pause();
protected:
std::shared_ptr<core::Processor> processor_;
std::shared_ptr<SchedulingAgent> scheduler_;
};
} // namespace state
} // namespace minifi
} // namespace nifi
} // namespace apache
} // namespace org
#endif // LIBMINIFI_INCLUDE_CORE_STATE_PROCESSORCONTROLLER_H_