Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
e49aabac
Commit
e49aabac
authored
Jan 23, 2004
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Message callback, and connect method work for DevBody also
parent
da02f8c6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
75 additions
and
19 deletions
+75
-19
wb/lib/wb/src/wb_c_objid.c
wb/lib/wb/src/wb_c_objid.c
+75
-19
No files found.
wb/lib/wb/src/wb_c_objid.c
View file @
e49aabac
...
...
@@ -10,7 +10,9 @@
#include "wb_ldh.h"
#include "wb_dutl.h"
#include "wb_pwrs_msg.h"
#include "co_dcli.h"
#include "co_cdh.h"
#include "co_msg.h"
/*----------------------------------------------------------------------------*\
...
...
@@ -22,19 +24,34 @@ static int IsOkConnect (
pwr_sMenuButton
*
mbp
)
{
pwr_tStatus
sts
;
if
(
strcmp
(
mbp
->
FilterArguments
[
1
],
""
)
!=
0
)
{
char
arg_cid_str
[
20
][
32
];
int
arg_cid_cnt
;
int
i
;
int
cid_ok
=
0
;
pwr_tCid
cid
;
pwr_tCid
arg_cid
;
if
(
strcmp
(
mbp
->
FilterArguments
[
1
],
""
)
!=
0
)
{
// arg 1 holds the allowed class or classes to connect to
arg_cid_cnt
=
dcli_parse
(
mbp
->
FilterArguments
[
1
],
","
,
""
,
(
char
*
)
arg_cid_str
,
sizeof
(
arg_cid_str
)
/
sizeof
(
arg_cid_str
[
0
]),
sizeof
(
arg_cid_str
[
0
]),
0
);
// arg 1 holds the allowed class to connect to
sts
=
ldh_ClassNameToId
(
ip
->
PointedSession
,
&
arg_cid
,
mbp
->
FilterArguments
[
1
]);
if
(
EVEN
(
sts
))
return
0
;
sts
=
ldh_GetObjectClass
(
ip
->
PointedSession
,
ip
->
Selected
[
0
].
Objid
,
&
cid
);
if
(
EVEN
(
sts
))
return
0
;
if
(
cid
!=
arg_cid
)
for
(
i
=
0
;
i
<
arg_cid_cnt
;
i
++
)
{
sts
=
ldh_ClassNameToId
(
ip
->
PointedSession
,
&
arg_cid
,
arg_cid_str
[
i
]);
if
(
EVEN
(
sts
))
return
0
;
if
(
cid
==
arg_cid
)
{
cid_ok
=
1
;
break
;
}
}
if
(
!
cid_ok
)
return
0
;
}
...
...
@@ -51,8 +68,6 @@ static pwr_tStatus Connect (
pwr_tStatus
sts
;
pwr_sMenuButton
mb
;
pwr_sAttrRef
PattrRef
;
pwr_tCid
cid
;
pwr_tCid
arg_cid
;
sts
=
ldh_ReadObjectBody
(
ip
->
PointedSession
,
...
...
@@ -61,25 +76,66 @@ static pwr_tStatus Connect (
if
(
EVEN
(
sts
))
return
sts
;
if
(
strcmp
(
mb
.
MethodArguments
[
1
],
""
)
!=
0
)
{
char
arg_cid_str
[
20
][
32
];
int
arg_cid_cnt
;
int
i
;
int
cid_ok
=
0
;
pwr_tCid
cid
;
pwr_tCid
arg_cid
;
// arg 1 holds the allowed class or classes to connect to
arg_cid_cnt
=
dcli_parse
(
mb
.
MethodArguments
[
1
],
","
,
""
,
(
char
*
)
arg_cid_str
,
sizeof
(
arg_cid_str
)
/
sizeof
(
arg_cid_str
[
0
]),
sizeof
(
arg_cid_str
[
0
]),
0
);
// arg 1 holds the allowed class to connect to
sts
=
ldh_ClassNameToId
(
ip
->
PointedSession
,
&
arg_cid
,
mb
.
MethodArguments
[
1
]);
if
(
EVEN
(
sts
))
return
0
;
sts
=
ldh_GetObjectClass
(
ip
->
PointedSession
,
ip
->
Selected
[
0
].
Objid
,
&
cid
);
if
(
EVEN
(
sts
))
return
0
;
if
(
cid
!=
arg_cid
)
for
(
i
=
0
;
i
<
arg_cid_cnt
;
i
++
)
{
sts
=
ldh_ClassNameToId
(
ip
->
PointedSession
,
&
arg_cid
,
arg_cid_str
[
i
]);
if
(
EVEN
(
sts
))
return
0
;
if
(
cid
==
arg_cid
)
{
cid_ok
=
1
;
break
;
}
}
if
(
!
cid_ok
)
return
0
;
}
if
(
strcmp
(
mb
.
MethodArguments
[
2
],
""
)
!=
0
)
// Body in MethodArguments 2, probably DevBody
sts
=
ldh_SetObjectPar
(
ip
->
PointedSession
,
ip
->
Pointed
.
Objid
,
mb
.
MethodArguments
[
2
],
mb
.
MethodArguments
[
0
],
(
char
*
)
&
ip
->
Selected
[
0
].
Objid
,
sizeof
(
ip
->
Selected
[
0
].
Objid
));
else
{
// Assume RtBody or SysBody
sts
=
ldh_GetAttrRef
(
ip
->
PointedSession
,
ip
->
Pointed
.
Objid
,
mb
.
MethodArguments
[
0
],
&
PattrRef
);
if
(
EVEN
(
sts
))
return
sts
;
if
(
ODD
(
sts
))
sts
=
ldh_WriteAttribute
(
ip
->
PointedSession
,
&
PattrRef
,
&
ip
->
Selected
[
0
].
Objid
,
sizeof
(
pwr_tObjid
));
}
if
(
ip
->
message_cb
)
{
char
msg
[
200
];
if
(
ODD
(
sts
))
{
char
name
[
120
];
int
len
;
sts
=
ldh_ObjidToName
(
ip
->
PointedSession
,
ip
->
Selected
[
0
].
Objid
,
ldh_eName_Hierarchy
,
name
,
sizeof
(
name
),
&
len
);
if
(
EVEN
(
sts
))
cdh_ObjidToString
(
name
,
ip
->
Selected
[
0
].
Objid
,
1
);
sprintf
(
msg
,
"%s connected to: %s"
,
mb
.
MethodArguments
[
0
],
name
);
(
ip
->
message_cb
)(
ip
->
EditorContext
,
'I'
,
msg
);
}
else
{
msg_GetMsg
(
sts
,
msg
,
sizeof
(
msg
));
(
ip
->
message_cb
)(
ip
->
EditorContext
,
'E'
,
msg
);
}
}
return
PWRS__SUCCESS
;
}
...
...
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