Skip to content

Commit 9a5521a

Browse files
libguile-ssh/common.c (compare_objects): New procedure
* libguile-ssh/common.c (compare_objects): New procedure. * libguile-ssh/common.h: Update. * libguile-ssh/channel-func.c (equalp_channel): Use the new procedure.
1 parent 87d8d14 commit 9a5521a

File tree

3 files changed

+22
-9
lines changed

3 files changed

+22
-9
lines changed

libguile-ssh/channel-func.c

+1-9
Original file line numberDiff line numberDiff line change
@@ -75,15 +75,7 @@ Return #t if X is a SSH channel, #f otherwise.\
7575
SCM
7676
equalp_channel (SCM x1, SCM x2)
7777
{
78-
gssh_channel_t *channel1 = gssh_channel_from_scm (x1);
79-
gssh_channel_t *channel2 = gssh_channel_from_scm (x2);
80-
81-
if ((! channel1) || (! channel2))
82-
return SCM_BOOL_F;
83-
else if (channel1 != channel2)
84-
return SCM_BOOL_F;
85-
else
86-
return SCM_BOOL_T;
78+
return compare_objects(x1, x2, gssh_channel_from_scm);
8779
}
8880
#endif
8981

libguile-ssh/common.c

+17
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,21 @@ set_smob_callbacks(scm_t_bits tag,
7979
scm_set_smob_equalp(tag, equalp_cb);
8080
}
8181

82+
83+
/** Procedure that converts an SCM object to an Guile-UDev structure
84+
* pointer.
85+
*/
86+
SCM compare_objects(SCM x1, SCM x2, converter_t converter)
87+
{
88+
void* d1 = converter(x1);
89+
void* d2 = converter(x2);
90+
if ((! d1) || (! d2)) {
91+
return SCM_BOOL_F;
92+
} else if (d1 != d2) {
93+
return SCM_BOOL_F;
94+
} else {
95+
return SCM_BOOL_T;
96+
}
97+
}
98+
8299
/* common.c ends here. */

libguile-ssh/common.h

+4
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,10 @@ void set_smob_callbacks(scm_t_bits tag,
9191
gc_equalp_callback_t equalp_cb,
9292
gc_print_callback_t print_cb);
9393

94+
95+
typedef void* (*converter_t)(SCM x);
96+
SCM compare_objects(SCM x1, SCM x2, converter_t converter);
97+
9498
#endif /* ifndef __COMMON_H__ */
9599

96100
/* common.h ends here. */

0 commit comments

Comments
 (0)