aboutsummaryrefslogtreecommitdiffstats
path: root/ui/file_dialog.c
blob: 754d4b6f5c02d2279661841828586cb4a9c781a3 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/* file_dialog.c
 * Common file dialog routines
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 2006 Gerald Combs
 *
 * SPDX-License-Identifier: GPL-2.0-or-later*/

#include "config.h"

#include <time.h>

#include <glib.h>

#include <wsutil/nstime.h>

#include <wiretap/wtap.h>

#include <epan/prefs.h>

#include "ui/file_dialog.h"

ws_file_preview_times_status
get_times_for_preview(wtap *wth, ws_file_preview_times *times,
                      guint32 *num_packets, int *err, gchar **err_info)
{
    gint64       data_offset;
    const wtap_rec *rec;
    guint32      packets;
    gboolean     have_times;
    gboolean     timed_out;
    time_t       time_preview, time_current;
    double       cur_time;

    times->start_time = 0;
    times->stop_time = 0;
    packets = 0;
    have_times = FALSE;
    timed_out = FALSE;
    time(&time_preview);
    while ((wtap_read(wth, err, err_info, &data_offset))) {
        rec = wtap_get_rec(wth);
        if (rec->presence_flags & WTAP_HAS_TS) {
            cur_time = nstime_to_sec(&rec->ts);
            if (!have_times) {
                times->start_time = cur_time;
                times->stop_time = cur_time;
                have_times = TRUE;
            }
            if (cur_time < times->start_time) {
                times->start_time = cur_time;
            }
            if (cur_time > times->stop_time){
                times->stop_time = cur_time;
            }
        }

        packets++;
        if (packets%1000 == 0) {
            /* do we have a timeout? */
            time(&time_current);
            if (time_current-time_preview >= (time_t) prefs.gui_fileopen_preview) {
                timed_out = TRUE;
                break;
            }
        }
    }
    *num_packets = packets;
    if (*err != 0) {
        /* Read error. */
        return PREVIEW_READ_ERROR;
    }

    if (have_times) {
        if (timed_out)
            return PREVIEW_TIMED_OUT;
        else
            return PREVIEW_HAVE_TIMES;
    } else
        return PREVIEW_HAVE_NO_TIMES;
}

/*
 * Editor modelines
 *
 * Local Variables:
 * c-basic-offset: 4
 * tab-width: 8
 * indent-tabs-mode: nil
 * End:
 *
 * ex: set shiftwidth=4 tabstop=8 expandtab:
 * :indentSize=4:tabSize=8:noTabs=true:
 */