Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
pub
frama-c
Commits
2832cef1
Commit
2832cef1
authored
8 years ago
by
Kostyantyn Vorobyov
Browse files
Options
Downloads
Patches
Plain Diff
[RTL] Stylistic updates in string and shexec headers
parent
7e0c0e9d
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/plugins/e-acsl/share/e-acsl/e_acsl_shexec.h
+19
-17
19 additions, 17 deletions
src/plugins/e-acsl/share/e-acsl/e_acsl_shexec.h
src/plugins/e-acsl/share/e-acsl/e_acsl_string.h
+2
-2
2 additions, 2 deletions
src/plugins/e-acsl/share/e-acsl/e_acsl_string.h
with
21 additions
and
19 deletions
src/plugins/e-acsl/share/e-acsl/e_acsl_shexec.h
+
19
−
17
View file @
2832cef1
...
@@ -83,8 +83,8 @@ char* fd_read (int fd, short bufsize) {
...
@@ -83,8 +83,8 @@ char* fd_read (int fd, short bufsize) {
short
fetched
=
0
;
short
fetched
=
0
;
int
rd
=
0
;
/* Count of fetched characters */
int
rd
=
0
;
/* Count of fetched characters */
/* Each time the pointer i
f
moved by `size - buffer_size`
as initially
/* Each time the pointer i
s
moved by `size - buffer_size`
.
* the size of
'
buffer
'
is
'
buffer_size
'
*/
*
This is because initially
the size of
`
buffer
`
is
`
buffer_size
`.
*/
while
((
fetched
=
read
(
fd
,
buffer
+
size
-
buffer_size
,
buffer_size
)))
{
while
((
fetched
=
read
(
fd
,
buffer
+
size
-
buffer_size
,
buffer_size
)))
{
rd
+=
fetched
;
rd
+=
fetched
;
if
(
fetched
!=
-
1
)
{
if
(
fetched
!=
-
1
)
{
...
@@ -136,7 +136,6 @@ ipr_t* __shexec (ipr_t *data) {
...
@@ -136,7 +136,6 @@ ipr_t* __shexec (ipr_t *data) {
close
(
infd
[
1
]);
close
(
outfd
[
1
]);
close
(
errfd
[
1
]);
close
(
infd
[
1
]);
close
(
outfd
[
1
]);
close
(
errfd
[
1
]);
execvp
(
data
->
argv
[
0
],
data
->
argv
);
execvp
(
data
->
argv
[
0
],
data
->
argv
);
dup2
(
oldstderr
,
2
);
/* Restore stderr */
if
(
errno
)
{
if
(
errno
)
{
data
->
error
=
nstrdup
(
"Failed to execute:
\n
"
);
data
->
error
=
nstrdup
(
"Failed to execute:
\n
"
);
char
**
arg
=
data
->
argv
-
1
;
char
**
arg
=
data
->
argv
-
1
;
...
@@ -154,8 +153,8 @@ ipr_t* __shexec (ipr_t *data) {
...
@@ -154,8 +153,8 @@ ipr_t* __shexec (ipr_t *data) {
close
(
errfd
[
1
]);
close
(
errfd
[
1
]);
close
(
infd
[
0
]);
close
(
infd
[
0
]);
/* If data->stdin string i
f
supplied, write that string to child's
/* If data->stdin string i
s
supplied, write that string to
the
child's
STDIN
first */
stdin
first */
if
(
data
->
stdins
)
/* Return NULL if write fails */
if
(
data
->
stdins
)
/* Return NULL if write fails */
if
(
write
(
infd
[
1
],
data
->
stdins
,
strlen
(
data
->
stdins
))
==
-
1
)
if
(
write
(
infd
[
1
],
data
->
stdins
,
strlen
(
data
->
stdins
))
==
-
1
)
return
NULL
;
return
NULL
;
...
@@ -168,15 +167,15 @@ ipr_t* __shexec (ipr_t *data) {
...
@@ -168,15 +167,15 @@ ipr_t* __shexec (ipr_t *data) {
if
(
!
data
->
stderrs
)
if
(
!
data
->
stderrs
)
data
->
error
=
nstrdup
(
"Error reading from STDERR pipe"
);
data
->
error
=
nstrdup
(
"Error reading from STDERR pipe"
);
/* Close file descriptors
w
e still
have
open */
/* Close file descriptors
that ar
e still open */
close
(
outfd
[
0
]);
/* read end of STDOUT */
close
(
outfd
[
0
]);
/* read end of STDOUT */
close
(
errfd
[
0
]);
/* read end of STDERR */
close
(
errfd
[
0
]);
/* read end of STDERR */
close
(
infd
[
1
]);
/* write end of STDIN */
close
(
infd
[
1
]);
/* write end of STDIN */
int
status
;
int
status
;
waitpid
(
pid
,
&
status
,
0
);
/* wait for the child to finish */
waitpid
(
pid
,
&
status
,
0
);
/* wait for the child to finish */
data
->
exit_status
=
WEXITSTATUS
(
status
);
/* exi
s
status */
data
->
exit_status
=
WEXITSTATUS
(
status
);
/* exi
t
status */
data
->
pid
=
pid
;
/* process number */
data
->
pid
=
pid
;
/* process number */
data
->
signaled
=
WIFSIGNALED
(
status
);
/* signal caught */
data
->
signaled
=
WIFSIGNALED
(
status
);
/* signal caught */
data
->
signo
=
WTERMSIG
(
status
);
/* signal number caught */
data
->
signo
=
WTERMSIG
(
status
);
/* signal number caught */
...
@@ -201,17 +200,19 @@ void free_ipr (ipr_t* ipr) {
...
@@ -201,17 +200,19 @@ void free_ipr (ipr_t* ipr) {
}
}
/* \brief Execute a command given via parameter `data` in the current shell
/* \brief Execute a command given via parameter `data` in the current shell
* and its result as `ipr_t` struct.
* and return the dynamically allocated struct `ipr_t` which captures the
* results of the command's execution.
*
*
* \param data - command to execute.
This argument is assumed to be a
* \param data - command to execute.
`data` is expected to be a NULL-terminated
*
NULL-terminated
array of strings
* array of
C
strings
.
* \param sin - if not NULL a C string given via `sin` is supplied as standard
* \param sin - if not NULL
,
a C string given via `sin` is supplied as standard
* input to the executed command
* input to the executed command
.
* \return - heap-allocated struct `ipr_t`
that
describes the output of the
* \return - heap-allocated struct `ipr_t`
which
describes the output of the
* executed command. De
-
allocation of this struct
should
be performed via the
* executed command. Deallocation of this struct
must
be performed via the
* `free_ipr` function */
* `free_ipr` function
.
*/
static
ipr_t
*
shexec
(
char
**
data
,
const
char
*
sin
)
{
static
ipr_t
*
shexec
(
char
**
data
,
const
char
*
sin
)
{
/* Allocate and initialise the struct that we use */
/* Allocate and initialise the `ipr_t` struct to store the results
* of the command execution */
ipr_t
*
ipr
=
(
ipr_t
*
)
native_malloc
(
sizeof
(
ipr_t
));
ipr_t
*
ipr
=
(
ipr_t
*
)
native_malloc
(
sizeof
(
ipr_t
));
ipr
->
stderrs
=
NULL
;
ipr
->
stderrs
=
NULL
;
ipr
->
stdouts
=
NULL
;
ipr
->
stdouts
=
NULL
;
...
@@ -220,6 +221,7 @@ static ipr_t* shexec (char **data, const char *sin) {
...
@@ -220,6 +221,7 @@ static ipr_t* shexec (char **data, const char *sin) {
ipr
->
exit_status
=
0
;
ipr
->
exit_status
=
0
;
ipr
->
pid
=
0
;
ipr
->
pid
=
0
;
ipr
->
signaled
=
0
;
ipr
->
signaled
=
0
;
/* Run the command returning a pointer to `ipr_t` */
return
__shexec
(
ipr
);
return
__shexec
(
ipr
);
}
}
#endif
#endif
This diff is collapsed.
Click to expand it.
src/plugins/e-acsl/share/e-acsl/e_acsl_string.h
+
2
−
2
View file @
2832cef1
...
@@ -103,8 +103,8 @@ static char *sappend(char *dest, const char *src, const char *delim) {
...
@@ -103,8 +103,8 @@ static char *sappend(char *dest, const char *src, const char *delim) {
return
dest
;
return
dest
;
}
}
/** \brief Return 0 if string `str` end with string `pat` and a non-zero
value
/** \brief Return 0 if
C
string `str` end
s
with string `pat` and a non-zero
* otherwise. The function assumes that both, `str` and `path` are valid,
*
value
otherwise. The function assumes that both, `str` and `path` are valid,
* NUL-terminated C strings. If any of the input strings are NULLs, a non-zero
* NUL-terminated C strings. If any of the input strings are NULLs, a non-zero
* value is returned. */
* value is returned. */
static
int
endswith
(
char
*
str
,
char
*
pat
)
{
static
int
endswith
(
char
*
str
,
char
*
pat
)
{
...
...
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