Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
socket2
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs
ds
socket2
Commits
1bf6f295
Commit
1bf6f295
authored
1 year ago
by
Alessio Igor Bogani
Browse files
Options
Downloads
Patches
Plain Diff
Consolidate two read() functins
parent
06c4ffe6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Socket2.cpp
+33
-40
33 additions, 40 deletions
src/Socket2.cpp
src/Socket2.h
+1
-2
1 addition, 2 deletions
src/Socket2.h
with
34 additions
and
42 deletions
src/Socket2.cpp
+
33
−
40
View file @
1bf6f295
...
...
@@ -573,7 +573,7 @@ Tango::DevVarCharArray *Socket2::read(Tango::DevLong argin)
""
,
"Out of limit"
,
__PRETTY_FUNCTION__
);
}
read
(
argin
);
_
read
(
argin
);
argout
=
new
Tango
::
DevVarCharArray
();
vector
<
unsigned
char
>
transfer
(
data
.
begin
(),
data
.
begin
()
+
argin
);
...
...
@@ -618,7 +618,7 @@ Tango::DevVarCharArray *Socket2::read_until(const Tango::DevVarCharArray *argin)
break
;
}
}
read
(
dsize
+
1
);
_
read
(
dsize
+
1
);
}
while
(
true
);
argout
=
new
Tango
::
DevVarCharArray
();
...
...
@@ -753,12 +753,38 @@ ssize_t Socket2::_write(int fd, const void *buf, size_t count)
return
ret
;
}
ssize_t
Socket2
::
_read
(
int
fd
,
void
*
buf
,
size_t
count
)
void
Socket2
::
_read
(
size_t
bytes_to_read
)
{
int
ret
=
proto
==
UDP
?
::
recvfrom
(
fd
,
buf
,
count
,
0
,
(
sockaddr
*
)
&
sa
,
&
sa_len
)
:
::
read
(
fd
,
buf
,
count
);
return
ret
;
unsigned
char
buffer
[
10000
];
size_t
bytes_total
=
data
.
size
();
while
(
bytes_total
<
bytes_to_read
)
{
if
(
!
wait_for
(
READ
))
goto
timeout
;
size_t
count
=
min
((
size_t
)
max
(
input_queue_length
(),
0
),
sizeof
(
buffer
));
ssize_t
bytes_readed
=
proto
==
UDP
?
::
recvfrom
(
fd
,
buffer
,
count
,
0
,
(
sockaddr
*
)
&
sa
,
&
sa_len
)
:
::
read
(
fd
,
buffer
,
count
);
if
(
bytes_readed
>
0
)
{
data
.
insert
(
data
.
end
(),
&
buffer
[
0
],
&
buffer
[
bytes_readed
]);
bytes_total
+=
bytes_readed
;
}
else
if
(
bytes_readed
==
0
)
{
if
(
multiplexing
==
SELECT
)
goto
error
;
/* Continue if multiplexing == SLEEP */
}
else
{
/* bytes_readed < 0 */
check_state
(
true
);
goto
error
;
}
}
return
;
error
:
sleep
(
tout
);
timeout
:
Tango
::
Except
::
throw_exception
(
""
,
"Timeout expired"
,
__PRETTY_FUNCTION__
);
}
void
Socket2
::
check_state
(
bool
forcing
)
...
...
@@ -871,39 +897,6 @@ bool Socket2::wait_for(event_type et)
return
false
;
}
void
Socket2
::
read
(
size_t
bytes_to_read
)
{
unsigned
char
buffer
[
10000
];
size_t
bytes_total
=
data
.
size
();
while
(
bytes_total
<
bytes_to_read
)
{
if
(
!
wait_for
(
READ
))
goto
timeout
;
ssize_t
bytes_readed
=
_read
(
fd
,
buffer
,
min
((
size_t
)
max
(
input_queue_length
(),
0
),
sizeof
(
buffer
)));
if
(
bytes_readed
>
0
)
{
data
.
insert
(
data
.
end
(),
&
buffer
[
0
],
&
buffer
[
bytes_readed
]);
bytes_total
+=
bytes_readed
;
}
else
if
(
bytes_readed
==
0
)
{
if
(
multiplexing
==
SELECT
)
goto
error
;
/* Continue if multiplexing == SLEEP */
}
else
{
/* bytes_readed < 0 */
check_state
(
true
);
goto
error
;
}
}
return
;
error
:
sleep
(
tout
);
timeout
:
Tango
::
Except
::
throw_exception
(
""
,
"Timeout expired"
,
__PRETTY_FUNCTION__
);
}
void
Socket2
::
resolve
()
{
DEBUG_STREAM
<<
"Resolving "
<<
hostname
<<
"... "
<<
endl
;
...
...
This diff is collapsed.
Click to expand it.
src/Socket2.h
+
1
−
2
View file @
1bf6f295
...
...
@@ -265,10 +265,9 @@ public:
int
output_queue_length
();
void
close
();
ssize_t
_write
(
int
,
const
void
*
,
size_t
);
ssize_t
_read
(
int
,
void
*
,
size_t
);
void
_read
(
size_t
);
void
check_state
(
bool
);
bool
wait_for
(
event_type
);
void
read
(
size_t
);
void
resolve
();
/*----- PROTECTED REGION END -----*/
// Socket2::Additional Method prototypes
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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