summaryrefslogtreecommitdiffstats
path: root/src/history.c
blob: 4da91d56bad4e524a05534d56e4ec26fba4910f5 (plain)
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
/* $Id$ */

/***
  This file is part of syrep.

  syrep 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.
  
  syrep 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 syrep; if not, write to the Free Software Foundation,
  Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
***/

#include <assert.h>
#include <string.h>
#include <time.h>

#include "history.h"
#include "dbstruct.h"

int history(struct syrep_db_context *c) {
    int r = -1, ret;
    DBC *cursor = NULL;
    DBT key, data;

    assert(c && c->db_version_timestamp);

    if ((ret = c->db_version_timestamp->cursor(c->db_version_timestamp, NULL, &cursor, 0)) != 0) {
        c->db_version_timestamp->err(c->db_version_timestamp, ret, "version_timestamp::cursor()");
        goto finish;
    }
    
    memset(&key, 0, sizeof(key));
    memset(&data, 0, sizeof(data));

    while ((ret = cursor->c_get(cursor, &key, &data, DB_NEXT)) == 0) {
        struct syrep_version *version;
        struct syrep_timestamp *timestamp;

        version = key.data;
        timestamp = data.data;

        assert(version && timestamp);

        fprintf(stderr, "%4u %10u %s", version->v, timestamp->t, ctime((time_t*) (&timestamp->t)));
    }
        
    if (ret != DB_NOTFOUND) {
        c->db_version_timestamp->err(c->db_version_timestamp, ret, "version_timestamp::c_get()");
        goto finish;
    }
    
    r = 0;
    
finish:

    if (cursor)
        cursor->c_close(cursor);

    return r;
}