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 / trash.h (e0f3c5748efc6c0e5c566177d0c91dfa82205b4a) (4,839B) (mode 100644) [raw]
/* vifm
 * 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__TRASH_H__
#define VIFM__TRASH_H__

#include "utils/test_helpers.h"

/* This unit keeps track of files inside potentially multiple trash
 * directories.  That's almost all of its responsibilities.  The only operation
 * on files that it performs is restoring a file.  Other than that, files are
 * moved by other units using information provided by this one and updating
 * this information in the process. */

/* Description of a single trash item. */
typedef struct
{
	char *path;            /* Original full path of file before its removal. */
	char *trash_name;      /* Full path of file inside trash directory. */
	char *real_trash_name; /* trash_name with symlinks resolved. */
}
trash_entry_t;

/* List of items in all trashes.  Sorted by a compound key or path and
 * real_trash_name. */
extern trash_entry_t *trash_list;

/* Number of items in the trash_list. */
extern int trash_list_size;

/* Parses trash directory specifications.  Sets value of cfg.trash_dir as a
 * side effect.  Returns non-zero in case of error, otherwise zero is
 * returned. */
int trash_set_specs(const char new_specs[]);

/* Empties specified trash directory. */
void trash_empty(const char trash_dir[]);

/* Starts process of emptying all trashes in background. */
void trash_empty_all(void);

/* Callback-like function which triggers some trash-specific updates after file
 * move/rename. */
void trash_file_moved(const char src[], const char dst[]);

/* Registers file in trash that has a particular original path.  Returns zero
 * on success and non-zero otherwise.  Refusing to add an entry second time is
 * considered to be a success. */
int trash_add_entry(const char original_path[], const char trash_name[]);

/* Checks whether given combination of original and trash paths is registered.
 * Returns non-zero if so, otherwise zero is returned. */
int trash_has_entry(const char original_path[], const char trash_path[]);

/* Lists all non-empty trash directories.  Puts number of elements to *ntrashes.
 * Caller should free array and all its elements using free().  On error returns
 * NULL and sets *ntrashes to zero. */
char ** trash_list_trashes(int *ntrashes);

/* Restores a file specified by its trash_name (from trash_list array).  Returns
 * zero on success, otherwise non-zero is returned. */
int trash_restore(const char trash_name[]);

/* Generates unique name for a file at base_path location named name (doesn't
 * have to be base_path/name as long as base_path is at same mount) in a trash
 * directory.  Returns string containing full path that needs to be freed by
 * the caller, if no trash directory is available, NULL is returned. */
char * trash_gen_path(const char base_path[], const char name[]);

/* Picks trash directory basing on original path for a file that is being
 * trashed.  Returns absolute path to picked trash directory on success which
 * should be freed by the caller, otherwise NULL is returned. */
char * trash_pick_dir(const char base_path[]);

/* Checks whether given absolute path points to a file under trash directory.
 * Returns non-zero if so, otherwise zero is returned. */
int trash_has_path(const char path[]);

/* Checks whether given path belongs to the trash directory.  NULL trash_dir
 * makes this function act as trash_has_path().  Returns non-zero if so,
 * otherwise zero is returned. */
int trash_has_path_at(const char trash_dir[], const char path[]);

/* Checks whether given absolute path points directly to a trash directory.
 * Returns non-zero if so, otherwise zero is returned. */
int trash_is_at_path(const char path[]);

/* Gets pointer to real name part of the trash path (which must be absolute).
 * Returns that pointer. */
const char * trash_get_real_name_of(const char trash_path[]);

/* Removes entries that correspond to nonexistent files in trashes. */
void trash_prune_dead_entries(void);

TSTATIC_DEFS(
	char **specs;
	int nspecs;
)

#endif /* VIFM__TRASH_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