]> sigrok.org Git - libsigrok.git/commitdiff
input: s/format/module in all naming.
authorBert Vermeulen <redacted>
Sun, 3 Aug 2014 13:11:24 +0000 (15:11 +0200)
committerBert Vermeulen <redacted>
Mon, 25 Aug 2014 23:55:41 +0000 (01:55 +0200)
include/libsigrok/libsigrok.h
include/libsigrok/proto.h
src/backend.c
src/input/binary.c
src/input/chronovu_la8.c
src/input/csv.c
src/input/input.c
src/input/vcd.c
src/input/wav.c

index 03eedc61bf39f50ff189fbeaa2a7d02732833c7e..1a076d6aad46cd5aa516e29e297fa50b5c9cd242 100644 (file)
@@ -443,13 +443,13 @@ struct sr_option {
        GSList *values;
 };
 
-/** Input (file) format struct. */
+/** Input (file) module struct. */
 struct sr_input {
        /**
-        * A pointer to this input format's 'struct sr_input_format'.
+        * A pointer to this input module's 'struct sr_input_module'.
         * The frontend can use this to call the module's callbacks.
         */
-       struct sr_input_format *format;
+       struct sr_input_module *module;
 
        GHashTable *param;
 
@@ -458,13 +458,13 @@ struct sr_input {
        void *internal;
 };
 
-/** Input (file) format driver. */
-struct sr_input_format {
-       /** The unique ID for this input format. Must not be NULL. */
+/** Input (file) module driver. */
+struct sr_input_module {
+       /** The unique ID for this input module. Must not be NULL. */
        char *id;
 
        /**
-        * A short description of the input format, which can (for example)
+        * A short description of the input module, which can (for example)
         * be displayed to the user by frontends. Must not be NULL.
         */
        char *description;
index a159baed6c541d0626ac4231053145397ff35a90..fd6cb7f8884ff6a227b4a5b856d564a32d28a42b 100644 (file)
@@ -124,7 +124,7 @@ SR_API int sr_session_source_remove_channel(struct sr_session *session,
 
 /*--- input/input.c ---------------------------------------------------------*/
 
-SR_API struct sr_input_format **sr_input_list(void);
+SR_API struct sr_input_module **sr_input_list(void);
 
 /*--- output/output.c -------------------------------------------------------*/
 
index 47f352bf720d897a8feb22e9a9d112cde8d6c113..e6297f54527e81245bfc2cc9e96c35aabb264795 100644 (file)
@@ -215,7 +215,7 @@ static int sanity_check_all_drivers(void)
 static int sanity_check_all_input_modules(void)
 {
        int i, errors, ret = SR_OK;
-       struct sr_input_format **inputs;
+       struct sr_input_module **inputs;
        const char *d;
 
        sr_spew("Sanity-checking all input modules.");
index e0d4c1dd43576e195addacfe400eab3f6e681ee8..846e6bab6ee2af4d8a510a7bfab0318102f18460 100644 (file)
@@ -142,7 +142,7 @@ static int loadfile(struct sr_input *in, const char *filename)
        return SR_OK;
 }
 
-SR_PRIV struct sr_input_format input_binary = {
+SR_PRIV struct sr_input_module input_binary = {
        .id = "binary",
        .description = "Raw binary",
        .format_match = format_match,
index dcedcf8cf11592641ceaef92e875cdeb0a4c2aa0..5291eabe2dd36cd423862fb560c0e788ab31dbdb 100644 (file)
@@ -197,7 +197,7 @@ static int loadfile(struct sr_input *in, const char *filename)
        return SR_OK;
 }
 
-SR_PRIV struct sr_input_format input_chronovu_la8 = {
+SR_PRIV struct sr_input_module input_chronovu_la8 = {
        .id = "chronovu-la8",
        .description = "ChronoVu LA8",
        .format_match = format_match,
index 1218cd640fa263d1f0cf9db645fb35c36aa51213..c0316b62565f4bd84ac9966ca0bf9287ebd7c0a4 100644 (file)
@@ -863,7 +863,7 @@ static int loadfile(struct sr_input *in, const char *filename)
        return SR_OK;
 }
 
-SR_PRIV struct sr_input_format input_csv = {
+SR_PRIV struct sr_input_module input_csv = {
        .id = "csv",
        .description = "Comma-separated values (CSV)",
        .format_match = format_match,
index d22b373467caa894e6ee4b7618b4819e461dd6aa..21043fccebdc86c3d432c7c9fdce91a5a33f700e 100644 (file)
@@ -27,9 +27,9 @@
  */
 
 /**
- * @defgroup grp_input Input formats
+ * @defgroup grp_input Input modules
  *
- * Input file/data format handling.
+ * Input file/data module handling.
  *
  * libsigrok can process acquisition data in several different ways.
  * Aside from acquiring data from a hardware device, it can also take it from
  * Every input module is "pluggable", meaning it's handled as being separate
  * from the main libsigrok, but linked in to it statically. To keep things
  * modular and separate like this, functions within an input module should be
- * declared static, with only the respective 'struct sr_input_format' being
+ * declared static, with only the respective 'struct sr_input_module' being
  * exported for use into the wider libsigrok namespace.
  *
  * @{
  */
 
 /** @cond PRIVATE */
-extern SR_PRIV struct sr_input_format input_chronovu_la8;
-extern SR_PRIV struct sr_input_format input_csv;
-extern SR_PRIV struct sr_input_format input_binary;
-extern SR_PRIV struct sr_input_format input_vcd;
-extern SR_PRIV struct sr_input_format input_wav;
+extern SR_PRIV struct sr_input_module input_chronovu_la8;
+extern SR_PRIV struct sr_input_module input_csv;
+extern SR_PRIV struct sr_input_module input_binary;
+extern SR_PRIV struct sr_input_module input_vcd;
+extern SR_PRIV struct sr_input_module input_wav;
 /* @endcond */
 
-static struct sr_input_format *input_module_list[] = {
+static struct sr_input_module *input_module_list[] = {
        &input_vcd,
        &input_chronovu_la8,
        &input_wav,
@@ -68,7 +68,7 @@ static struct sr_input_format *input_module_list[] = {
 };
 
 /** @since 0.1.0 */
-SR_API struct sr_input_format **sr_input_list(void)
+SR_API struct sr_input_module **sr_input_list(void)
 {
        return input_module_list;
 }
index eec53e1039a7539e6b2027c5ce28118ed404f19f..fe9375672d80048e39fb1de6ded1342da45df20a 100644 (file)
@@ -535,7 +535,7 @@ static int loadfile(struct sr_input *in, const char *filename)
        return SR_OK;
 }
 
-SR_PRIV struct sr_input_format input_vcd = {
+SR_PRIV struct sr_input_module input_vcd = {
        .id = "vcd",
        .description = "Value Change Dump",
        .format_match = format_match,
index 2e6662556c00444a2e7a4da9f573e6c11104f7b9..cf061f2316ffbf402535aa2b25b9105344d2c40d 100644 (file)
@@ -256,7 +256,7 @@ static int loadfile(struct sr_input *in, const char *filename)
 }
 
 
-SR_PRIV struct sr_input_format input_wav = {
+SR_PRIV struct sr_input_module input_wav = {
        .id = "wav",
        .description = "WAV file",
        .format_match = format_match,