[126] | 1 | /*********************************************************************
|
---|
| 2 | // created: 2016/05/13
|
---|
| 3 | // filename: StringGenerator.cpp
|
---|
| 4 | //
|
---|
| 5 | // author: Gerald Dherbomez
|
---|
| 6 | // Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
| 7 | //
|
---|
| 8 | // version: $Id: $
|
---|
| 9 | //
|
---|
| 10 | // purpose: A component that generates a string
|
---|
| 11 | //
|
---|
| 12 | *********************************************************************/
|
---|
| 13 |
|
---|
| 14 | #include "StringGenerator.h"
|
---|
| 15 |
|
---|
| 16 | using namespace pacpus;
|
---|
| 17 |
|
---|
| 18 |
|
---|
| 19 | DECLARE_STATIC_LOGGER("pacpusensors.StringGenerator");
|
---|
| 20 |
|
---|
| 21 |
|
---|
| 22 | //////////////////////////////////////////////////////////////////////////
|
---|
| 23 | // Construct the factory
|
---|
| 24 | //////////////////////////////////////////////////////////////////////////
|
---|
| 25 | static ComponentFactory <StringGenerator> sFactory("StringGenerator");
|
---|
| 26 |
|
---|
| 27 |
|
---|
| 28 | //////////////////////////////////////////////////////////////////////////
|
---|
| 29 | // Constructeur
|
---|
| 30 | //////////////////////////////////////////////////////////////////////////
|
---|
| 31 | StringGenerator::StringGenerator(QString name)
|
---|
| 32 | : ComponentBase(name)
|
---|
| 33 | {
|
---|
| 34 | }
|
---|
| 35 |
|
---|
| 36 |
|
---|
| 37 | //////////////////////////////////////////////////////////////////////////
|
---|
| 38 | // Destructor
|
---|
| 39 | //////////////////////////////////////////////////////////////////////////
|
---|
| 40 | StringGenerator::~StringGenerator()
|
---|
| 41 | {
|
---|
| 42 | }
|
---|
| 43 |
|
---|
| 44 |
|
---|
| 45 | ////////////////////////////////////////////////////////////////////////////////
|
---|
| 46 | // AddOutputs
|
---|
| 47 | ////////////////////////////////////////////////////////////////////////////////
|
---|
| 48 | void StringGenerator::addOutputs()
|
---|
| 49 | {
|
---|
| 50 | addOutput<QString, StringGenerator>("string");
|
---|
| 51 | }
|
---|
| 52 |
|
---|
| 53 |
|
---|
| 54 | ////////////////////////////////////////////////////////////////////////////////
|
---|
| 55 | // AddInputs
|
---|
| 56 | ////////////////////////////////////////////////////////////////////////////////
|
---|
| 57 | void StringGenerator::addInputs()
|
---|
| 58 | {
|
---|
| 59 | }
|
---|
| 60 |
|
---|
| 61 |
|
---|
| 62 | //////////////////////////////////////////////////////////////////////////
|
---|
| 63 | // Called by the ComponentManager to pass the XML parameters to the
|
---|
| 64 | // component
|
---|
| 65 | //////////////////////////////////////////////////////////////////////////
|
---|
| 66 | ComponentBase::COMPONENT_CONFIGURATION StringGenerator::configureComponent(XmlComponentConfig config)
|
---|
| 67 | {
|
---|
| 68 |
|
---|
| 69 | return ComponentBase::CONFIGURED_OK;
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 |
|
---|
| 73 | //////////////////////////////////////////////////////////////////////////
|
---|
| 74 | // Called by the ComponentManager to start the component
|
---|
| 75 | //////////////////////////////////////////////////////////////////////////
|
---|
| 76 | void StringGenerator::startActivity()
|
---|
| 77 | {
|
---|
| 78 | stringOutput_ = getTypedOutput<QString, StringGenerator>("string");
|
---|
| 79 |
|
---|
| 80 | QTimer *timer_ = new QTimer(this);
|
---|
| 81 |
|
---|
| 82 | connect(timer_, SIGNAL(timeout()), this, SLOT(sendData()));
|
---|
| 83 |
|
---|
| 84 | timer_->start(1000);
|
---|
| 85 |
|
---|
| 86 | }
|
---|
| 87 |
|
---|
| 88 |
|
---|
| 89 | //////////////////////////////////////////////////////////////////////////
|
---|
| 90 | // Called by the ComponentManager to stop the component
|
---|
| 91 | //////////////////////////////////////////////////////////////////////////
|
---|
| 92 | void StringGenerator::stopActivity()
|
---|
| 93 | {
|
---|
| 94 |
|
---|
| 95 |
|
---|
| 96 | }
|
---|
| 97 |
|
---|
| 98 | //////////////////////////////////////////////////////////////////////////
|
---|
| 99 | // Send data at the output
|
---|
| 100 | //////////////////////////////////////////////////////////////////////////
|
---|
| 101 | void StringGenerator::sendData()
|
---|
| 102 | {
|
---|
| 103 |
|
---|
| 104 | LOG_INFO("TIMEOUT EXPIRED");
|
---|
| 105 |
|
---|
| 106 | if (stringOutput_ && stringOutput_->hasConnection())
|
---|
| 107 | stringOutput_->send(QString("Test"));
|
---|
| 108 |
|
---|
| 109 | }
|
---|
| 110 |
|
---|