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 / io / private / ioeta.h (e0a80affc82aeca01ab5159762fe32691edae46d) (2,794B) (mode 100644) [raw]
/* vifm
 * Copyright (C) 2014 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__IO__PRIVATE__IOETA_H__
#define VIFM__IO__PRIVATE__IOETA_H__

#include <stdint.h> /* uint64_t */

#include "../ioeta.h"

/* ioeta - private functions of Input/Output estimation */

/* Frees resources of estimation, but not the structure itself.  estim can't be
 * NULL. */
void ioeta_release(ioeta_estim_t *estim);

/* Adds zero-size item to the estimation. */
void ioeta_add_item(ioeta_estim_t *estim, const char path[]);

/* Adds file to the estimation. */
void ioeta_add_file(ioeta_estim_t *estim, const char path[]);

/* Adds directory to the estimation. */
void ioeta_add_dir(ioeta_estim_t *estim, const char path[]);

/* ioeta_update_estim(e, "p", "t", 0, 100); -- 100 bytes of current item
 * processed.
 * ioeta_update_estim(e, "", "", 1, 50); -- Last 50 bytes of current item
 * processed.
 * Might calculate speed, time, etc.  When estim is NULL, the function just
 * returns.  The path or src can be NULL to indicate that file name didn't
 * change.  Calls progress changed notification handler. */
void ioeta_update(ioeta_estim_t *estim, const char path[], const char target[],
		int finished, uint64_t bytes);

/* Silence future progress reports.  Returns previous state to be passed to
 * ioeta_silent_set() later.  If estim is NULL, returns zero. */
int ioeta_silent_on(ioeta_estim_t *estim);

/* Sets silence flag for the estimation.  Does nothing if estim is NULL. */
void ioeta_silent_set(ioeta_estim_t *estim, int silent);

/* Makes restoration point for state of the estimation.  Returns the restoration
 * point to be passed to ioeta_restore.  It can be used to restore state
 * multiple times and needs to be freed with ioeta_release() after last use. */
ioeta_estim_t ioeta_save(const ioeta_estim_t *estim);

/* Restores estimation to its previous state. */
void ioeta_restore(ioeta_estim_t *estim, const ioeta_estim_t *save);

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