Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
code
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ReadMailReallyFast
code
Commits
9a99da53
Commit
9a99da53
authored
1 year ago
by
Benny Baumann
Browse files
Options
Downloads
Patches
Plain Diff
add: unix socket client implementation
parent
1931daa8
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/net/client_factory.cpp
+11
-4
11 additions, 4 deletions
src/net/client_factory.cpp
src/net/client_factory.hpp
+1
-0
1 addition, 0 deletions
src/net/client_factory.hpp
with
12 additions
and
4 deletions
src/net/client_factory.cpp
+
11
−
4
View file @
9a99da53
...
...
@@ -71,13 +71,21 @@ namespace rmrf::net {
return
client_factory_construct_stream_client
(
socket_identifier
,
cb
);
}
[[
nodiscard
]]
std
::
unique_ptr
<
connection_client
>
client_factory_construct_unix_client
(
const
socketaddr
&
socket_identifier
,
connection_client
::
incomming_data_cb
cb
)
{
if
(
socket_identifier
.
family
()
!=
AF_UNIX
)
{
throw
netio_exception
(
"Expected UNIX domain socket address as target"
);
}
return
client_factory_construct_stream_client
(
socket_identifier
,
cb
);
}
[[
nodiscard
]]
std
::
unique_ptr
<
connection_client
>
client_factory_construct_stream_client
(
const
socketaddr
&
socket_identifier
,
connection_client
::
incomming_data_cb
cb
)
{
auto_fd
socket_candidate
{
socket
(
socket_identifier
.
family
(),
SOCK_STREAM
,
0
)};
if
(
socket_candidate
.
valid
())
{
if
(
connect
(
socket_candidate
.
get
(),
socket_identifier
.
ptr
(),
socket_identifier
.
size
())
==
0
)
{
make_socket_nonblocking
(
socket_candidate
);
const
auto
own_address
=
get_own_address_after_connect
(
socket_candidate
);
const
auto
own_address
=
socket_identifier
.
family
()
!=
AF_UNIX
?
get_own_address_after_connect
(
socket_candidate
)
:
socketaddr
{}
;
// TODO create client object using socket_candidate, own_address and socket_identifier as remote address
auto
c
=
std
::
make_unique
<
tcp_client
>
(
nullptr
,
std
::
move
(
socket_candidate
),
own_address
,
socket_identifier
);
...
...
@@ -94,11 +102,10 @@ namespace rmrf::net {
switch
(
type
)
{
case
socket_t
::
TCP
:
return
client_factory_construct_tcp_client
(
address
);
case
socket_t
::
UNIX
:
return
client_factory_construct_unix_client
(
address
);
case
socket_t
::
UDP
:
return
client_factory_construct_udp_client
(
address
);
case
socket_t
::
UNIX
:
// TODO implement
return
nullptr
;
default:
return
nullptr
;
}
...
...
This diff is collapsed.
Click to expand it.
src/net/client_factory.hpp
+
1
−
0
View file @
9a99da53
...
...
@@ -11,6 +11,7 @@ namespace rmrf::net {
[[
nodiscard
]]
std
::
unique_ptr
<
udp_client
>
client_factory_construct_udp_client
(
const
socketaddr
&
socket_identifier
,
connection_client
::
incomming_data_cb
cb
=
nullptr
);
[[
nodiscard
]]
std
::
unique_ptr
<
connection_client
>
client_factory_construct_tcp_client
(
const
socketaddr
&
socket_identifier
,
connection_client
::
incomming_data_cb
cb
=
nullptr
);
[[
nodiscard
]]
std
::
unique_ptr
<
connection_client
>
client_factory_construct_unix_client
(
const
socketaddr
&
socket_identifier
,
connection_client
::
incomming_data_cb
cb
=
nullptr
);
[[
nodiscard
]]
std
::
unique_ptr
<
connection_client
>
client_factory_construct_stream_client
(
const
socketaddr
&
socket_identifier
,
connection_client
::
incomming_data_cb
cb
=
nullptr
);
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment