xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
<root> / src / running.h (fd4f815cdbc4cae05189b880ee657879d0747cad) (4,452B) (mode 100644) [raw]
/* vifm
 * Copyright (C) 2001 Ken Steen.
 * Copyright (C) 2011 xaizek.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 */

#ifndef VIFM__RUNNING_H__
#define VIFM__RUNNING_H__

#include "utils/utils.h"
#include "macros.h"

/* Kinds of executable file treatment on file handling. */
typedef enum
{
	FHE_NO_RUN,          /* Don't run. */
	FHE_RUN,             /* Run with rights of current user. */
	FHE_ELEVATE_AND_RUN, /* Run with rights elevation (if available). */
}
FileHandleExec;

/* When and why should we pause on rn_shell(). */
typedef enum
{
	PAUSE_ALWAYS,   /* Execute command and pause. */
	PAUSE_NEVER,    /* Don't pause after the command. */
	PAUSE_ON_ERROR, /* Pause only on non-zero exit code from the command. */
}
ShellPause;

struct view_t;

/* Handles opening of current file/selection of the view. */
void rn_open(struct view_t *view, FileHandleExec exec);

/* Handles opening of current entry of the view as a directory.  Returns zero on
 * success. */
int rn_enter_dir(struct view_t *view);

/* Follows file to find its true location (e.g. target of symbolic link) or just
 * opens it. */
void rn_follow(struct view_t *view, int ultimate);

/* Runs current file of the view guided by program specification with additional
 * options. */
void rn_open_with(struct view_t *view, const char prog_spec[], int dont_execute,
		int force_bg);

/* Moves the view to levels-th parent directory taking care of special cases
 * like root of FUSE mount. */
void rn_leave(struct view_t *view, int levels);

/* Executes command in a shell.  Passing NULL for command parameter is a special
 * case of launching a shell.  Returns zero on success, otherwise non-zero is
 * returned. */
int rn_shell(const char command[], ShellPause pause, int use_term_multiplexer,
		ShellRequester by);

/* Same as rn_shell(), but provides the command with custom input. */
int rn_pipe(const char command[], struct view_t *view, MacroFlags flags,
		ShellPause pause);

/* Looks for a unique program match for a given prefix and uses it.  Returns
 * zero on success and non-zero otherwise.  */
int rn_open_with_match(struct view_t *view, const char beginning[],
		int background);

/* Handles most of command handling variants.  Returns:
 *  - > 0 -- handled, good to go;
 *  - = 0 -- not handled at all;
 *  - < 0 -- handled, exit. */
int rn_ext(struct view_t *view, const char cmd[], const char title[],
		MacroFlags flags, int pause, int bg, int *save_msg);

/* Starts background command optionally handling input redirection. */
void rn_start_bg_command(struct view_t *view, const char cmd[],
		MacroFlags flags);

/* Runs the cmd and parses its output as list of paths to compose custom view
 * or very custom view.  Returns zero on success, otherwise non-zero is
 * returned. */
int rn_for_flist(struct view_t *view, const char cmd[], const char title[],
		int user_sh, MacroFlags flags);

/* Executes external command capturing its output as list of lines.  Sets *lines
 * and *nlines.  Returns zero on success, otherwise non-zero is returned. */
int rn_for_lines(struct view_t *view, const char cmd[], char ***lines,
		int *nlines, MacroFlags flags);

/* Checks whether program with the given name is an executable that is present
 * in the $PATH environment variable or can be found by full path.  Returns
 * non-zero if so. */
int rn_cmd_exists(const char cmd[]);

/* Gets path to an executable expanding command name using $PATH if needed.
 * Might not include extension of a command on Windows.  Returns zero on
 * success, otherwise non-zero is returned. */
int rn_find_cmd(const char cmd[], size_t path_len, char path[]);

#endif /* VIFM__RUNNING_H__ */

/* vim: set tabstop=2 softtabstop=2 shiftwidth=2 noexpandtab cinoptions-=(0 : */
/* vim: set cinoptions+=t0 filetype=c : */
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master