Skip to content
Snippets Groups Projects
Commit 2832cef1 authored by Kostyantyn Vorobyov's avatar Kostyantyn Vorobyov
Browse files

[RTL] Stylistic updates in string and shexec headers

parent 7e0c0e9d
No related branches found
No related tags found
No related merge requests found
...@@ -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 if moved by `size - buffer_size` as initially /* Each time the pointer is 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 if supplied, write that string to child's /* If data->stdin string is 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 we still have open */ /* Close file descriptors that are 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); /* exis status */ data->exit_status = WEXITSTATUS(status); /* exit 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
...@@ -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` ends 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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment