Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
168 views

Introduction To Object Oriented Programming and Hardware Abstraction Layers

This document discusses using object-oriented programming (OOP) concepts in measurement systems software. OOP can help make systems more scalable and extensible by minimizing changes needed to add new functionality, restricting data access, enabling dynamic loading of new behaviors, and allowing reuse of existing functionality. The document traces how a simple measurement system evolves over time to incorporate more complex and automated functionality, and how applying OOP principles like classes, inheritance, and dynamic dispatch can help manage growing complexity.

Uploaded by

nisarg
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
168 views

Introduction To Object Oriented Programming and Hardware Abstraction Layers

This document discusses using object-oriented programming (OOP) concepts in measurement systems software. OOP can help make systems more scalable and extensible by minimizing changes needed to add new functionality, restricting data access, enabling dynamic loading of new behaviors, and allowing reuse of existing functionality. The document traces how a simple measurement system evolves over time to incorporate more complex and automated functionality, and how applying OOP principles like classes, inheritance, and dynamic dispatch can help manage growing complexity.

Uploaded by

nisarg
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 56

ni.

com
Using OOP in Measurement Systems

ni.com
Common Problem: Software becomes difficult to
maintain over time

Initial investment in
software architecture,
training and processes

ni.com
Why OOP is an Answer
When you want to build scalable, extensible systems.

Translation: OOP concepts, when used correctly, decrease


the risk and effort required to add functionality to an
existing system. They do this, in part, by:
- Minimizing the scope of changes that have to be
introduced to an existing system to add new functionality
- Restricting access to data to methods that have explicitly
been permitted access
- Making it possible to add and load new behaviors
dynamically that implement existing interfaces
- Enable reuse and extension of pre-existing functionality

ni.com
The journey to OOP starts sooner than you think

Configure Acquire Measure

Conceptually, many LabVIEW applications start with a simple,


synchronous set of operations (many times all on a single diagram)

ni.com
Configure Acquire Measure

Start Task Read Samples Stop Task

Savvy programmers will often use SubVIs to wrap API calls to things
like device drivers or loading configuration from a file

ni.com
Graph
Task Samples

DAQ Task

Clock Raw Data

Configure Acquire Measure

These SubVIs typically expect certain inputs to do their jobs many


times these inputs are the output of previous operations, or a single
input is shared by multiple VIs in this sequence

ni.com
Measurement System

Graph
Task Samples

DAQ Task

Clock Raw Data

Configure Acquire Measure

As the application becomes more sophisticated, its common to want


to iterate on certain tasks within a loop..

ni.com
Measurement System

Graph
I/O Samples

DAQ Task

Clock Raw Data

Configure Acquire Measure

or perhaps the entire system

ni.com
Measurement System

Configure Event Case

Task

Clock
Configure

Eventually, automation requires that we be able to programmatically


control the order of operations and/or restart the system, which
requires a state-machine-like pattern that passes data between states

ni.com
Measurement System

Acquire Event Case

Samples

Raw Data

Acquire

The scope of data these operations has access to can be seen by


examining the shift registers in a loop

ni.com
Measurement System

Measure Event Case

Graph

Measure

ni.com
Measurement System
I/O
Cloc Event Case
k
Samples

Raw Data

Task

As the functionality grows, so too does the scope of data. Eventually it


becomes helpful to contain all of this data in a cluster, giving us a very
clearly defined data-scope for this process

ni.com
Measurement System
I/O
Cloc Event Case
k
Samples

Raw Data I/O Task


Cloc
Task k

Configure

The methods within this state machine retrieve the information they
need from the cluster and update values as necessary

ni.com
Measurement System
I/O
Cloc Event Case
k
Samples

Raw Data

Task
Configure

Unbundling and bundling data can be encapsulated by the VI, giving


the user a clean, simple top-level interface (the type definition)

ni.com
This simple illustration shows how these three operations we started
with now just act upon the data within the cluster

I/O
Cloc
k
Samples Graph
Raw Data

Task

Configure Acquire Measure

These VIs are explicitly coupled to this data

ni.com
A class is basically a cluster

I/O
Cloc
k Measurement
Samples

Raw Data
= Class

Task

Measurement
A class contains data, plus
Data
methods (VIs) that are allowed
to act upon and modify the data.

VIs that do not belong to the class


cannot act upon the data

ni.com
Measurement

Graph

Configure Acquire Measure

The object wire can be passed into any VI that has the class on the
connector pane, but only VIs that belong to the class can directly
bundle and/or unbundle the data

ni.com
Class Data Cluster
I/O Class constant
Cloc
k
Samples

Raw Data

Task

Methods that can act upon


the classs data cluster

Appearance in Project
Configure Acquire Measure

These VIs are now owned by the class. They are


transported as a cohesive library of code

ni.com
Demonstration
Creating a New Class

ni.com
Measurement System
I/O
Cloc Event Case
k
Samples

Raw Data

Task
Configure

Returning to our basic system, this implementation using a clsuter


effectively becomes

ni.com
Measurement System

Case

Measurement Configure

ni.com
Measurement System

Case

Measurement Configure

What if you want a different definition of how these methods should act?
In this example, consider the different ways in which a measurement might be implemented

ni.com
Inheritance Allows Descendant Classes to Modify, Extend and
Add Functionality of a Parent

Measurement

Temp Strain

Finite measurement of a Applies stimuli before


single channel acquiring value

These are children of the measurement class


ni.com
Demonstration
Define inheritance and view the class hierarchy diagram

ni.com
Measurement System

Case

Measurement Configure

What if you want a different definition of how these methods should act?
In this example, consider the different ways in which a measurement might be implemented

ni.com
Acquire is Dynamically Dispatched
Measurement System

Case

Temp
Acquire

Start Task Read Samples Stop Task

ni.com
Acquire is Dynamically Dispatched

Measurement System

Case

Strain
Acquire

Start AO Task Stimulate


Output

Start AI Task Sweep Inputs

ni.com
Understanding Dynamic Dispatch

Strain

Temp Acquire

610
2

Resistance

Strain.lvclass: Temp.lvclass: Resistance.lvclass:


Acquire.vi Acquire.vi Acquire.vi

ni.com
Demonstration
Illustrate dynamic dispatch

ni.com
Graph

Configure Acquire Measure

Q: Isnt this the same thing as using case structures inside these VIs ?

I/O
Cloc
k
Samples

Raw Data
? ? ? Graph
Task

Configure Acquire Measure

Measurement Type

ni.com
A: Its conceptually similar, but there are extremely
important differences(NO)

To understand the difference, first consider the impact of


introducing a new measurement in the non-OOP example.

3. We probably have to add new elements to


this data cluster

I/O
Cloc 2. We have to modify all of these VIs
k
Samples

Raw
Data ? ? ? Graph
Task

Configure Acquire Measure

Measurement Type

1. We have to add a new type to the enum

ni.com
I/O2

DIO
As the scope of the data cluster expands, we are
passing data into large segments of code inside
Trigger
the cases that should not have access to it. Our
I/O data is not protected
Clock

Samples

Raw
Data ? ? ? Graph
Task

Configure Acquire Measure

Measurement Type

Introducing a new measurements requires


changes within the VIs, as well as the calling code
(sometimes referred to as a framework). This
makes code very costly to maintain and brittle

ni.com
Sibling Classes Have Unique Data Scope
Task Data that every measurement
I/O
needs to have
Samples

Measurement

Thermocouple
Bridge Type

excitation

Strain Temp

Data unique to these specific measurements, plus


exposed data of parent measurement

ni.com
One of the biggest differences: this new
I/O2
functionality has to be added at edit time.
DIO
What if you want to load a new measurement into
Trigger
your calling system at run-time?
I/O

Clock

Samples

Raw
Data ? ? ? Graph
Task

Configure Acquire Measure

Measurement Type

Yes, you can dynamically load the VIs called by these VIs, but you have to
have pre-defined the data they have access to. The data in the cluster wire
cannot be changed at run-time, as the connector pane must match exactly.

ni.com
At edit-time, LabVIEW shows us the wire of the
parent class we have said will be passed along
this wire (in this example: Measurement.lvclass)

Graph

Configure Acquire Measure

ni.com
We may pass any child of this class down this wire
at run-time. Dynamically dispatched methods will
execute the copy belonging to the run-time
instance.

?
Graph

Configure Acquire Measure

LabVIEW can load a new child at run-time. The class will bring its methods and
its data cluster into memory when loaded. This makes it possible to add
functionality without modifying calling code. The code to load a child class is
referred to as a Factory.

ni.com
The Basics of an Object Factory

A
B Objects Loaded Into Memory
C Generic Measurement
Parent

Location on Disk Children


A B C
Where Measurements
Classes are Stored

ni.com
Group Exercise
About that Graph output what if my measurements output different data types?

Strain

Graph

Configure Acquire Measure


Temp

Configure Acquire
X
Measure
Boolean

Dynamically dispatched VIs must have the same connector pane. You cannot have a
different data type output on Measure. So how do we solve this problem?

ni.com
Q: How can an instance of the measure method return
information that is appropriate and specific to the measurement
class it belongs to?
Consider the following requirements:

We have to pass different data-types at-run


time out of the measure method
? We always know a specific measurement will
return a certain type of data
We need to be able to display that data to a
Measure user in an appropriate format
We need to pass the data back to a framework
that implements a pre-defined interface for
operations like dispaly, save, etc

Is a variant a valid solution?


We can pass any data-type on a variant wire
How do we know how to display the data on a variant wire to a user?
If we pass the variant to our calling code, how will it know how to save it to
disk or display it to the user?

ni.com
Use a Class Hierarchy
Measurement Result
Defines methods all results
should be able to define, such
as Save, or Display

Strain Result Temp Result Resistance Result

Each has a unique private data cluster to store the result of a measurement and
defines how that data is stored or displayed using dynamically dispatched methods
that override the interface defined by the parent Measurement Result

ni.com
General Best-Practice: Dont Use Variants
Variants are typically used when different types of data
have to travel down a single wire. Anytime you feel the
need to do this, consider replacing the wire that would be a
variant with a class hierarchy.

Why? Classes still enforce strict data-types at edit-time,


thereby ensuring no run-time errors. Variants to not, and
therefore increase the likelihood of run-time errors.

ni.com
All measurements will need to use hardware.

Measurement Class

Configure Acquire Measure

But Id like to..


run the same measurement class on different
machines, which have different hardware
continue development on a machine with no access
to hardware
be able to add a new device of a certain type without
modifying the measurement

ni.com
A measurement is defined assuming certain
classes of devices are available, but without
knowing exactly which instrument.

In this example, this measurement strategy uses a DMM. It


Temp assumes an instance of a DMM implements a pre-defined
interface, without knowledge of how that interface is implemented

Configure Acquire Measure

DMM
Class

Configure Autozero Read


Current
Source

ni.com
DMM
Class

Agilent PXI-4070 Simulated


34401a DMM

ni.com
Other measurements may require different classes of hardware, or perhaps multiple
devices (ie: stimulus/response measurements), but we cant change the connector pane
of methods we want to override (like Acquire.vi).

Measurement
Class
Configure Acquire Measure

The objects passed along this wire must all


be children of the same parent class
?

ni.com
Measurement
All measurements use an array of hardware
Class

Configure Acquire Measure

But different classes of hardware would


definitely not implement the same interface

ni.com
Sample Hardware Class Hierarchy

Hardware

Power Supply DMM Scope Generator

PXI-4110 Simulated Simulated 34401a PXI 4070 Simulated PXIe-5185 Simulated

ni.com
Measurement
Class Methods can cast hardware objects to specific children at edit-
time using the to more specific primitive

Configure Acquire Measure

DMM

SCOPE
The dark blue wire can be passed into the
interfaces for the specific device classes

ni.com
Demonstration
Use these concepts in a real system

ni.com
Summary of Most Important Concepts
Always be thinking about data scope keep it cohesive
and small
Classes create define data scope and a set of functions that are
allowed access to data
Consider using a class hierarchy to replace a massive
data structure
Dynamic dispatch allows child classes to override a parents method
and reuse others
Dynamic dispatch occurs at run-time, whereas polymorphism occurs
at edit-time
Use parent classes to define the interfaces children
should implement
If you find yourself using a lot of variants, consider a class hierarchy
And finally, classes are not as big of a leap as you might think we
hope you agree after this presentation!
ni.com
Want to Learn More?
Trained LabVIEW Users reported developing 50% faster and
spending 43% less time on maintenance

The Object-Oriented Design


training course is available Online!

Visit ni.com/training/self-paced to
learn more

Prefer a live instructor?


Find a classroom course near you
at ni.com/training

ni.com
Join the 10,000 + NI Certified Professionals

Validate your skills and In a worldwide survey, Certified LabVIEW


differentiate yourself from Developers (CLD) reported:
your peers with NI
certification. 54% reported improvement in work quality
45% reported improved peer perception
30% got new project opportunities

0% 10% 20% 30% 40% 50%


as a result of NI Certification

Start preparing now at Email certification@ni.com


ni.com/training/certification_prep To Schedule Your Exam

ni.com
Looking for More?

Attend a CLA or CLD Summit to:

Network and exchange best practices with other


certified professionals and NI engineers
Participate in highly technical presentations
Get exclusive opportunities to meet with NI
developers
Take the recertification exam for free

Learn more at ni.com/cla-summit

You must be certified to attend a Summit.


Email certification@ni.com to register for
ni.com an exam near you.
Missed the CLA Summit this year?
Get certified for next year!
The Certified LabVIEW Architect (CLA) Summit brings
together some of the worlds best NI LabVIEW programmers
to discuss architectures, preview new features, and network
with other CLAs and members of NI R&D.

Learn more at ni.com/cla-summit

Email certification@ni.com to register for


an exam near you.

ni.com
Already CLAD Certified?

Youre immediately eligible to take the Certified


LabVIEW Developer exam. Start preparing now!
Join a local user group (ni.com/usergroups)
Prepare using resources on Developer Zone
ni.com/training/certification_prep
Time yourself during practice exams

Note: CLAD certification must be current to take


the CLD exam
Email certification@ni.com to register for
an exam near you.

ni.com

You might also like