File: autosave.c

package info (click to toggle)
hnb 1.9.18%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,632 kB
  • ctags: 1,569
  • sloc: ansic: 8,117; makefile: 113
file content (90 lines) | stat: -rw-r--r-- 3,119 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
 * autosave.c -- the core of the autosave functionality
 *             
 *
 * Copyright (C) 2001,2003 yvind Kols <pippin@users.sourceforge.net>
 *
 * 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, 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., 59
 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

#include <string.h>
#include <unistd.h>
#include "tree.h"
#include "prefs.h"
#include "ui.h"
#include <cli.h>

static int nodes_changed=0;        /* counter for number of changes since saves */
static int autosave_threshold=0;   /* autosave for every autosave_threshold nodes_changed */
static int autosave_timeout=50;    /* ticks to wait for autosaving, if there is nodes changed */
static int autosave_timer=0;
static int autosave_sync=1;

static void autosave_invoke(Node *pos){

	if (prefs.db_file[0]!= (char) 255) { /* magic value when tutorial is shown */
		{
			char buf[4096];
			
			sprintf (buf, "export_hnb %s~", prefs.db_file);
			docmd (node_root(pos), buf);
			cli_outfunf("autosaved, %i nodes changed\n",nodes_changed);
		}
	}
	if(autosave_sync)
		sync();
	nodes_changed=0;
	autosave_timer=0;
}

static void* tree_changed_cmd (int argc, char **argv, void *data)
{
		/* TODO: add increment handling, for "extreme changes" */
	Node *pos = (Node *) data;
	nodes_changed++;
	if(autosave_threshold<=nodes_changed)
		autosave_invoke(pos);
	return pos;
}

static void* autosave_check_timeout (int argc, char **argv, void *data)
{
	Node *pos = (Node *) data;
	if(nodes_changed){
		autosave_timer++;
		if(autosave_timeout && autosave_timeout < autosave_timer){
			autosave_invoke(pos);
		}		
	}
	return pos;
}

/*
!init_autosave();
*/
void init_autosave ()
{
	cli_add_command ("tree_changed", tree_changed_cmd, "[increment]");
	cli_add_help ("tree_changed",
				  "used internally to drive the autosave functionality, for severe changes, pass a high number(1000), to make sure the radical changes are saved _NOW_, otherwise don't pass an increment");
	cli_add_command ("autosave_check_timeout", autosave_check_timeout, "");
	cli_add_int ("autosave_timeout", &autosave_timeout, "number of ticks before autosaving after change");
	cli_add_int ("autosave_sync", &autosave_sync, "whether the filesystem should be synced after autosave");
	cli_add_int ("autosave_timer", &autosave_timer, "number of ticks since unsaved change");
	cli_add_int ("autosave_threshold", &autosave_threshold,
					"save for evrery autosave_threshold nodes changed");
	cli_add_int ("autosave_threshold_nodes_changed", &nodes_changed,
					"counter for number of changes since save");
}