DynExp
Highly flexible laboratory automation for dynamically changing experiments.
NIDAQDigitalIn.h
Go to the documentation of this file.
1 // This file is part of DynExp.
2 
9 #pragma once
10 
11 #include "stdafx.h"
12 #include "DynExpCore.h"
15 
16 namespace DynExpInstr
17 {
18  class NIDAQDigitalIn;
19 
20  namespace NIDAQDigitalInTasks
21  {
23  {
26  };
27 
29  {
32  };
33 
35  {
38  };
39 
40  class ReadTask : public DynExp::TaskBase
41  {
42  public:
44 
45  private:
47  };
48 
49  class StartTask : public DynExp::TaskBase
50  {
51  public:
53 
54  private:
56  };
57 
58  class StopTask : public DynExp::TaskBase
59  {
60  public:
62 
63  private:
65  };
66 
68  {
69  public:
71 
72  private:
74  };
75  }
76 
78  {
79  public:
80  NIDAQDigitalInData() = default;
81  virtual ~NIDAQDigitalInData() = default;
82 
85 
86  private:
87  void ResetImpl(dispatch_tag<DigitalInData>) override final;
89  };
90 
92  {
93  public:
95  : DigitalInParams(ID, Core) {}
96  virtual ~NIDAQDigitalInParams() = default;
97 
98  virtual const char* GetParamClassTag() const noexcept override { return "NIDAQDigitalInParams"; }
99 
101  "HardwareAdapter", "NIDAQmx controller", "Underlying hardware adapter of this instrument", DynExpUI::Icons::HardwareAdapter };
102  Param<ParamsConfigDialog::TextType> ChannelName = { *this, "ChannelName", "Channel name",
103  "Path of the digital in channel to be used", true, "Dev1/port0/line0" };
104 
105  private:
106  void ConfigureParamsImpl(dispatch_tag<DigitalInParams>) override final;
108  };
109 
111  {
112  public:
115 
117  virtual ~NIDAQDigitalInConfigurator() = default;
118 
119  private:
120  virtual DynExp::ParamsBasePtrType MakeParams(DynExp::ItemIDType ID, const DynExp::DynExpCore& Core) const override { return DynExp::MakeParams<NIDAQDigitalInConfigurator>(ID, Core); }
121  };
122 
123  class NIDAQDigitalIn : public DigitalIn
124  {
125  public:
129 
130  constexpr static auto Name() noexcept { return "NIDAQ Digital In"; }
131 
133  virtual ~NIDAQDigitalIn() {}
134 
135  virtual std::string GetName() const override { return Name(); }
136 
139 
140  virtual void ReadData(DynExp::TaskBase::CallbackType CallbackFunc) const override { MakeAndEnqueueTask<NIDAQDigitalInTasks::ReadTask>(CallbackFunc); }
141  virtual void Start(DynExp::TaskBase::CallbackType CallbackFunc = nullptr) const override { MakeAndEnqueueTask<NIDAQDigitalInTasks::StartTask>(CallbackFunc); }
142  virtual void Stop(DynExp::TaskBase::CallbackType CallbackFunc = nullptr) const override { MakeAndEnqueueTask<NIDAQDigitalInTasks::StopTask>(CallbackFunc); }
143  virtual void Restart(DynExp::TaskBase::CallbackType CallbackFunc = nullptr) const override { MakeAndEnqueueTask<NIDAQDigitalInTasks::RestartTask>(CallbackFunc); }
144  virtual Util::OptionalBool HasFinished() const override;
145 
146  private:
147  virtual void OnErrorChild() const override;
148 
149  void ResetImpl(dispatch_tag<DigitalIn>) override final;
151 
152  virtual std::unique_ptr<DynExp::InitTaskBase> MakeInitTask() const override { return DynExp::MakeTask<NIDAQDigitalInTasks::InitTask>(); }
153  virtual std::unique_ptr<DynExp::ExitTaskBase> MakeExitTask() const override { return DynExp::MakeTask<NIDAQDigitalInTasks::ExitTask>(); }
154  virtual std::unique_ptr<DynExp::UpdateTaskBase> MakeUpdateTask() const override { return DynExp::MakeTask<NIDAQDigitalInTasks::UpdateTask>(); }
155  };
156 }
Defines a meta instrument for a single digital input port to read a data stream consisting of digital...
Defines DynExp's core module as an interface between the UI and DynExp objects.
Implementation of a hardware adapter to control National Instruments NIDAQmx hardware.
NIDAQTask::ChannelHandleType ChannelHandleType
Configurator class for DigitalIn.
Definition: DigitalIn.h:122
Data class for DigitalIn.
Definition: DigitalIn.h:67
Parameter class for DigitalIn.
Definition: DigitalIn.h:95
Defines a task for deinitializing an instrument within an instrument inheritance hierarchy....
Definition: DigitalIn.h:40
Defines a task for initializing an instrument within an instrument inheritance hierarchy....
Definition: DigitalIn.h:27
Defines a task for updating an instrument within an instrument inheritance hierarchy....
Definition: DigitalIn.h:53
Meta instrument for a single digital input port based on the data stream and generic input port meta ...
Definition: DigitalIn.h:136
virtual DynExp::ParamsBasePtrType MakeParams(DynExp::ItemIDType ID, const DynExp::DynExpCore &Core) const override
Override to make derived classes call DynExp::MakeParams with the correct configurator type derived f...
void ResetImpl(dispatch_tag< DigitalInData >) override final
virtual ~NIDAQDigitalInData()=default
DynExpHardware::NIDAQHardwareAdapter::ChannelHandleType ChannelHandle
DynExp::LinkedObjectWrapperContainer< DynExpHardware::NIDAQHardwareAdapter > HardwareAdapter
virtual void ResetImpl(dispatch_tag< NIDAQDigitalInData >)
NIDAQDigitalInParams(DynExp::ItemIDType ID, const DynExp::DynExpCore &Core)
virtual ~NIDAQDigitalInParams()=default
Param< ParamsConfigDialog::TextType > ChannelName
virtual void ConfigureParamsImpl(dispatch_tag< NIDAQDigitalInParams >)
Param< DynExp::ObjectLink< DynExpHardware::NIDAQHardwareAdapter > > HardwareAdapter
virtual const char * GetParamClassTag() const noexcept override
This function is intended to be overridden once in each derived class returning the name of the respe...
void ConfigureParamsImpl(dispatch_tag< DigitalInParams >) override final
Called by DynExp::ParamsBase::ConfigureParams() as a starting point for the tag dispatch mechanism to...
virtual void ExitFuncImpl(dispatch_tag< ExitTask >, DynExp::InstrumentInstance &Instance)
void ExitFuncImpl(dispatch_tag< DigitalInTasks::ExitTask >, DynExp::InstrumentInstance &Instance) override final
Deinitializes the respective instrument within the instrument inheritance hierarchy....
virtual void InitFuncImpl(dispatch_tag< InitTask >, DynExp::InstrumentInstance &Instance)
void InitFuncImpl(dispatch_tag< DigitalInTasks::InitTask >, DynExp::InstrumentInstance &Instance) override final
Initializes the respective instrument within the instrument inheritance hierarchy....
ReadTask(CallbackType CallbackFunc) noexcept
virtual DynExp::TaskResultType RunChild(DynExp::InstrumentInstance &Instance) override
Runs the task. Override RunChild() to define a derived task's action(s). Any exception leaving RunChi...
RestartTask(CallbackType CallbackFunc) noexcept
virtual DynExp::TaskResultType RunChild(DynExp::InstrumentInstance &Instance) override
Runs the task. Override RunChild() to define a derived task's action(s). Any exception leaving RunChi...
virtual DynExp::TaskResultType RunChild(DynExp::InstrumentInstance &Instance) override
Runs the task. Override RunChild() to define a derived task's action(s). Any exception leaving RunChi...
StartTask(CallbackType CallbackFunc) noexcept
StopTask(CallbackType CallbackFunc) noexcept
virtual DynExp::TaskResultType RunChild(DynExp::InstrumentInstance &Instance) override
Runs the task. Override RunChild() to define a derived task's action(s). Any exception leaving RunChi...
void UpdateFuncImpl(dispatch_tag< DigitalInTasks::UpdateTask >, DynExp::InstrumentInstance &Instance) override final
Updates the respective instrument within the instrument inheritance hierarchy. Call UpdateFuncImpl() ...
virtual void UpdateFuncImpl(dispatch_tag< UpdateTask >, DynExp::InstrumentInstance &Instance)
virtual StreamSizeParamsExtension::ValueType GetStreamSizeParams() const override
Retrieves the size of the instrument's data stream from the instrument parameters....
constexpr static auto Name() noexcept
virtual Util::OptionalBool HasFinished() const override
Determines whether the underlying hardware adapter finished data acquisition or writing data.
virtual NumericSampleStreamParamsExtension::ValueType GetNumericSampleStreamParams() const override
Retrieves sample stream settings of the instrument's data stream from the instrument's or from the un...
virtual void Start(DynExp::TaskBase::CallbackType CallbackFunc=nullptr) const override
Enqueues a task to make the underlying hardware adapter start data acquisition or writing data.
NIDAQDigitalIn(const std::thread::id OwnerThreadID, DynExp::ParamsBasePtrType &&Params)
virtual std::string GetName() const override
Returns the name of this Object type.
virtual void ResetImpl(dispatch_tag< NIDAQDigitalIn >)
virtual std::unique_ptr< DynExp::ExitTaskBase > MakeExitTask() const override
Factory function for an exit task (ExitTaskBase). Override to define the desired deinitialization tas...
virtual void Restart(DynExp::TaskBase::CallbackType CallbackFunc=nullptr) const override
Enqueues a task to make the underlying hardware adapter restart data acquisition or writing data....
void ResetImpl(dispatch_tag< DigitalIn >) override final
Refer to DynExp::Object::Reset(). Using tag dispatch mechanism to ensure that ResetImpl() of every de...
virtual std::unique_ptr< DynExp::UpdateTaskBase > MakeUpdateTask() const override
Factory function for an update task (UpdateTaskBase). Override to define the desired update task in d...
virtual void Stop(DynExp::TaskBase::CallbackType CallbackFunc=nullptr) const override
Enqueues a task to make the underlying hardware adapter stop data acquisition or writing data.
virtual void ReadData(DynExp::TaskBase::CallbackType CallbackFunc) const override
Enqueues a task to read data from the hardware to the data stream. The default implementation does no...
virtual std::unique_ptr< DynExp::InitTaskBase > MakeInitTask() const override
Factory function for an init task (InitTaskBase). Override to define the desired initialization task ...
virtual void OnErrorChild() const override
Derived classes can perform critical shutdown actions after an error has occurred....
Type containing the values of all the parameters belonging to NumericSampleStreamParamsExtension.
Type containing the values of all the parameters belonging to StreamSizeParamsExtension.
DynExp's core class acts as the interface between the user interface and DynExp's internal data like ...
Definition: DynExpCore.h:127
Refer to DynExp::ParamsBase::dispatch_tag.
Definition: Instrument.h:1151
Refer to DynExp::ParamsBase::dispatch_tag.
Definition: Instrument.h:1120
Base class for instruments. Instruments comprise virtual devices (meta instruments) and physial devic...
Definition: Instrument.h:451
Configurator class for InstrumentBase.
Definition: Instrument.h:435
Data structure to contain data which is synchronized in between different threads....
Definition: Instrument.h:135
Refer to ParamsBase::dispatch_tag.
Definition: Instrument.h:146
Defines data for a thread belonging to a InstrumentBase instance. Refer to RunnableInstance.
Definition: Instrument.h:772
Parameter class for InstrumentBase.
Definition: Instrument.h:401
const std::thread::id OwnerThreadID
Thread id of the thread which has constructed (and owns) this Object instance.
Definition: Object.h:2302
const ParamsBasePtrType Params
Pointer to the parameter class instance belonging to this Object instance.
Definition: Object.h:2303
Refer to ParamsBase::dispatch_tag.
Definition: Object.h:2018
const ItemIDType ID
ID of the Object this parameter class instance belongs to.
Definition: Object.h:1779
const auto & GetCore() const noexcept
Returns a reference to DynExp's core.
Definition: Object.h:1677
const DynExpCore & Core
Reference to DynExp's core.
Definition: Object.h:1780
Tag for function dispatching mechanism within this class used when derived classes are not intended t...
Definition: Object.h:349
Base class for all tasks being processed by instruments. The class must not contain public virtual fu...
Definition: Instrument.h:892
std::function< void(const TaskBase &, ExceptionContainer &)> CallbackType
Type of a callback function which is invoked when a task has finished, failed or has been aborted....
Definition: Instrument.h:939
TaskBase(CallbackType CallbackFunc=nullptr) noexcept
Constructs an instrument task.
Definition: Instrument.h:979
const CallbackType CallbackFunc
This callback function is called after the task has finished (either successfully or not) with a refe...
Definition: Instrument.h:1072
Defines the return type of task functions.
Definition: Instrument.h:824
Refer to DynExp::ParamsBase::dispatch_tag.
Definition: Instrument.h:1182
Data type which stores an optional bool value (unknown, false, true). The type evaluates to bool whil...
Definition: Util.h:549
DynExp's instrument namespace contains the implementation of DynExp instruments which extend DynExp's...
Definition: Instrument.h:1254
constexpr auto HardwareAdapter
std::unique_ptr< ParamsBase > ParamsBasePtrType
Alias for a pointer to the parameter system base class ParamsBase.
Definition: Object.h:1807
size_t ItemIDType
ID type of objects/items managed by DynExp.
Accumulates include statements to provide a precompiled header.