Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
uniset2
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UniSet project repositories
uniset2
Commits
8fa15ce5
Commit
8fa15ce5
authored
Aug 02, 2009
by
Vitaly Lipatov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add CardList class instead direct vector of ComediInterface,
introduce getCard function instead direct cards[] using with index checking
parent
73310d2f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
43 additions
and
51 deletions
+43
-51
IOControl.cc
extensions/IOControl/IOControl.cc
+21
-49
IOControl.h
extensions/IOControl/IOControl.h
+22
-2
No files found.
extensions/IOControl/IOControl.cc
View file @
8fa15ce5
...
...
@@ -69,7 +69,7 @@ IOControl::IOControl( UniSetTypes::ObjectId id, UniSetTypes::ObjectId icID,
unideb
[
Debug
::
LEVEL3
]
<<
myname
<<
"(init): N"
<<
i
<<
" (TestMode)!!! '"
<<
iodev
<<
"'"
<<
endl
;
cards
[
i
]
=
0
;
cards
[
i
]
=
NULL
;
cout
<<
"******************** CARD"
<<
i
<<
": IO IMITATOR MODE ****************"
<<
endl
;
}
else
...
...
@@ -79,7 +79,7 @@ IOControl::IOControl( UniSetTypes::ObjectId id, UniSetTypes::ObjectId icID,
cout
<<
"card"
<<
i
<<
": "
<<
cards
[
i
]
->
devname
()
<<
endl
;
}
if
(
cards
[
i
]
)
if
(
cards
[
i
]
!=
NULL
)
{
for
(
int
s
=
0
;
s
<
4
;
s
++
)
{
...
...
@@ -212,9 +212,6 @@ IOControl::~IOControl()
// ݣ delete
// cdiagram new
//
for
(
unsigned
int
i
=
0
;
i
<
cards
.
size
();
i
++
)
delete
cards
[
i
];
delete
shm
;
}
...
...
@@ -341,20 +338,15 @@ void IOControl::execute()
// --------------------------------------------------------------------------------
void
IOControl
::
iopoll
()
{
ComediInterface
*
card
=
0
;
int
val
=
0
;
for
(
IOMap
::
iterator
it
=
iomap
.
begin
();
it
!=
iomap
.
end
();
++
it
)
{
if
(
it
->
ignore
||
it
->
ncard
==
defCardNum
)
continue
;
card
=
0
;
if
(
it
->
ncard
>=
0
&&
it
->
ncard
<
cards
.
size
()
)
card
=
cards
[
it
->
ncard
];
ComediInterface
*
card
=
cards
.
getCard
(
it
->
ncard
);
if
(
!
card
||
it
->
subdev
==
DefaultSubdev
||
it
->
channel
==
DefaultChannel
)
if
(
card
==
NULL
||
it
->
subdev
==
DefaultSubdev
||
it
->
channel
==
DefaultChannel
)
continue
;
// cout << conf->oind->getMapName(it->si.id)
...
...
@@ -372,7 +364,7 @@ void IOControl::iopoll()
{
if
(
it
->
stype
==
UniversalIO
::
AnalogInput
)
{
val
=
card
->
getAnalogChannel
(
it
->
subdev
,
it
->
channel
,
it
->
range
,
it
->
aref
);
int
val
=
card
->
getAnalogChannel
(
it
->
subdev
,
it
->
channel
,
it
->
range
,
it
->
aref
);
/*
if( unideb.debugging(Debug::LEVEL3) )
{
...
...
@@ -561,7 +553,7 @@ bool IOControl::initIOItem( UniXML_iterator& it )
else
inf
.
ncard
=
atoi
(
c
.
c_str
()
);
if
(
c
.
empty
()
||
inf
.
ncard
<
0
||
inf
.
ncard
>=
cards
.
size
()
)
if
(
c
.
empty
()
||
inf
.
ncard
<
0
||
inf
.
ncard
>=
(
int
)
cards
.
size
()
)
{
dlog
[
Debug
::
LEVEL3
]
<<
myname
<<
"(initIOItem): ("
...
...
@@ -664,19 +656,15 @@ void IOControl::sigterm( int signo )
if
(
noCards
)
return
;
ComediInterface
*
card
=
0
;
//
for
(
IOMap
::
iterator
it
=
iomap
.
begin
();
it
!=
iomap
.
end
();
++
it
)
{
if
(
it
->
ignore
)
continue
;
card
=
0
;
if
(
it
->
ncard
>=
0
&&
it
->
ncard
<
cards
.
size
()
)
card
=
cards
[
it
->
ncard
];
ComediInterface
*
card
=
cards
.
getCard
(
it
->
ncard
);
if
(
!
card
)
if
(
card
==
NULL
)
continue
;
try
...
...
@@ -710,23 +698,19 @@ void IOControl::initOutputs()
if
(
noCards
)
return
;
ComediInterface
*
card
=
0
;
//
for
(
IOMap
::
iterator
it
=
iomap
.
begin
();
it
!=
iomap
.
end
();
++
it
)
{
if
(
it
->
ignore
)
continue
;
card
=
0
;
if
(
it
->
ncard
>=
0
&&
it
->
ncard
<
cards
.
size
()
)
card
=
cards
[
it
->
ncard
];
ComediInterface
*
card
=
cards
.
getCard
(
it
->
ncard
);
try
{
if
(
!
card
||
it
->
subdev
==
DefaultSubdev
||
it
->
channel
==
DefaultChannel
)
if
(
card
==
NULL
||
it
->
subdev
==
DefaultSubdev
||
it
->
channel
==
DefaultChannel
)
continue
;
try
{
if
(
it
->
lamp
)
card
->
setDigitalChannel
(
it
->
subdev
,
it
->
channel
,(
bool
)
it
->
defval
);
else
if
(
it
->
stype
==
UniversalIO
::
DigitalOutput
)
...
...
@@ -746,18 +730,14 @@ void IOControl::initIOCard()
if
(
noCards
)
return
;
ComediInterface
*
card
=
0
;
for
(
IOMap
::
iterator
it
=
iomap
.
begin
();
it
!=
iomap
.
end
();
++
it
)
{
if
(
it
->
subdev
==
DefaultSubdev
)
continue
;
card
=
0
;
if
(
it
->
ncard
>=
0
&&
it
->
ncard
<
cards
.
size
()
)
card
=
cards
[
it
->
ncard
];
ComediInterface
*
card
=
cards
.
getCard
(
it
->
ncard
);
if
(
!
card
||
it
->
subdev
==
DefaultSubdev
||
it
->
channel
==
DefaultChannel
)
if
(
card
==
NULL
||
it
->
subdev
==
DefaultSubdev
||
it
->
channel
==
DefaultChannel
)
continue
;
try
...
...
@@ -792,7 +772,6 @@ void IOControl::blink()
if
(
lstBlink
.
empty
()
)
return
;
ComediInterface
*
card
(
0
);
for
(
BlinkList
::
iterator
it
=
lstBlink
.
begin
();
it
!=
lstBlink
.
end
();
++
it
)
{
...
...
@@ -801,11 +780,9 @@ void IOControl::blink()
if
(
io
->
subdev
==
DefaultSubdev
||
io
->
channel
==
DefaultChannel
)
continue
;
card
=
0
;
if
(
io
->
ncard
>=
0
&&
io
->
ncard
<
cards
.
size
()
)
card
=
cards
[
io
->
ncard
];
if
(
!
card
)
ComediInterface
*
card
=
cards
.
getCard
(
io
->
ncard
);
if
(
card
==
NULL
)
continue
;
try
...
...
@@ -916,7 +893,7 @@ IOControl* IOControl::init_iocontrol( int argc, char* argv[],
}
int
numcards
=
atoi
(
conf
->
getArgParam
(
"--io-numcards"
,
"1"
).
c_str
());
if
(
numcards
<=
0
)
if
(
numcards
<=
0
)
numcards
=
1
;
...
...
@@ -1117,17 +1094,14 @@ void IOControl::askSensors( UniversalIO::UIOCommand cmd )
unideb
[
Debug
::
CRIT
]
<<
myname
<<
"(askSensors): "
<<
ex
<<
endl
;
}
ComediInterface
*
card
=
0
;
for
(
IOMap
::
iterator
it
=
iomap
.
begin
();
it
!=
iomap
.
end
();
++
it
)
{
if
(
it
->
ignore
)
continue
;
card
=
0
;
if
(
it
->
ncard
>=
0
&&
it
->
ncard
<
cards
.
size
()
)
card
=
cards
[
it
->
ncard
];
ComediInterface
*
card
=
cards
.
getCard
(
it
->
ncard
);
if
(
!
card
||
it
->
subdev
==
DefaultSubdev
||
it
->
channel
==
DefaultChannel
)
if
(
card
==
NULL
||
it
->
subdev
==
DefaultSubdev
||
it
->
channel
==
DefaultChannel
)
continue
;
if
(
it
->
stype
==
UniversalIO
::
AnalogOutput
||
...
...
@@ -1207,11 +1181,9 @@ void IOControl::sensorInfo( UniSetTypes::SensorMessage* sm )
if
(
it
->
ignore
||
it
->
subdev
==
DefaultSubdev
||
it
->
channel
==
DefaultChannel
)
break
;
ComediInterface
*
card
=
0
;
if
(
it
->
ncard
>=
0
&&
it
->
ncard
<
cards
.
size
()
)
card
=
cards
[
it
->
ncard
];
ComediInterface
*
card
=
cards
.
getCard
(
it
->
ncard
);
if
(
card
)
if
(
card
!=
NULL
)
card
->
setDigitalChannel
(
it
->
subdev
,
it
->
channel
,
1
);
}
}
...
...
extensions/IOControl/IOControl.h
View file @
8fa15ce5
...
...
@@ -24,6 +24,26 @@
// -----------------------------------------------------------------------------
#warning ....
class
CardList
:
public
std
::
vector
<
ComediInterface
*>
{
public
:
CardList
(
int
size
)
:
std
::
vector
<
ComediInterface
*>
(
size
)
{
}
~
CardList
()
{
for
(
unsigned
int
i
=
0
;
i
<
size
();
i
++
)
delete
(
*
this
)[
i
];
}
inline
ComediInterface
*
getCard
(
int
ncard
)
{
if
(
ncard
>=
0
&&
ncard
<
(
int
)
size
()
)
return
(
*
this
)[
ncard
];
return
NULL
;
}
};
/*!
/.
:
...
...
@@ -70,7 +90,7 @@ class IOControl:
int
subdev
;
/*!< (UNIO) (. comedi_test /) */
int
channel
;
/*!< (UNIO) [0...23] */
int
ncard
;
/*!< [1|2]. 0 - */
int
ncard
;
/*!< [1|2]. 0 -
. FIXME from Lav: -1 - ?
*/
/*!
0 - analog ref = analog ground
...
...
@@ -131,7 +151,7 @@ class IOControl:
xmlNode
*
cnode
;
/*!< xml- */
int
polltime
;
/*!< ( /), [] */
std
::
vector
<
ComediInterface
*>
cards
;
CardList
cards
;
/*!< - ComediInterface */
bool
noCards
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment