]> sigrok.org Git - libsigrok.git/blame - input/input.c
build: Portability fixes.
[libsigrok.git] / input / input.c
CommitLineData
34e4813f 1/*
50985c20 2 * This file is part of the libsigrok project.
34e4813f 3 *
c73d2ea4 4 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
34e4813f
BV
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
45c59c8b
BV
20#include "libsigrok.h"
21#include "libsigrok-internal.h"
34e4813f 22
393fb9cb
UH
23/**
24 * @file
25 *
26 * Input file/data format handling.
27 */
28
7b870c38
UH
29/**
30 * @defgroup grp_input Input formats
31 *
32 * Input file/data format handling.
33 *
83687343
UH
34 * libsigrok can process acquisition data in several different ways.
35 * Aside from acquiring data from a hardware device, it can also take it from
36 * a file in various formats (binary, CSV, VCD, and so on).
37 *
38 * Like everything in libsigrok that handles data, processing is done in a
39 * streaming manner -- input should be supplied to libsigrok a chunk at a time.
40 * This way anything that processes data can do so in real time, without the
41 * user having to wait for the whole thing to be finished.
42 *
43 * Every input module is "pluggable", meaning it's handled as being separate
44 * from the main libsigrok, but linked in to it statically. To keep things
45 * modular and separate like this, functions within an input module should be
46 * declared static, with only the respective 'struct sr_input_format' being
47 * exported for use into the wider libsigrok namespace.
48 *
7b870c38
UH
49 * @{
50 */
51
b4bd7088 52/** @cond PRIVATE */
7c1d391c 53extern SR_PRIV struct sr_input_format input_chronovu_la8;
4a35548b 54extern SR_PRIV struct sr_input_format input_csv;
7c1d391c 55extern SR_PRIV struct sr_input_format input_binary;
99eaa206 56extern SR_PRIV struct sr_input_format input_vcd;
1d36b4d2 57extern SR_PRIV struct sr_input_format input_wav;
b4bd7088 58/* @endcond */
34e4813f 59
f50f3f40 60static struct sr_input_format *input_module_list[] = {
99eaa206 61 &input_vcd,
83e9d586 62 &input_chronovu_la8,
1d36b4d2 63 &input_wav,
4a35548b 64 &input_csv,
757b8c62 65 /* This one has to be last, because it will take any input. */
34e4813f
BV
66 &input_binary,
67 NULL,
68};
69
47117241 70/** @since 0.1.0 */
1a081ca6 71SR_API struct sr_input_format **sr_input_list(void)
34e4813f 72{
34e4813f
BV
73 return input_module_list;
74}
7b870c38
UH
75
76/** @} */