gpiosim: rename HOG_DIR to DIRECTION
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 7 Dec 2022 08:53:28 +0000 (09:53 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 7 Dec 2022 08:53:28 +0000 (09:53 +0100)
The enum itself should just define direction settings, it's the functions
that use it that should refer to hogging.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
12 files changed:
bindings/cxx/tests/gpiosim.cpp
bindings/cxx/tests/gpiosim.hpp
bindings/cxx/tests/tests-line-info.cpp
bindings/python/tests/gpiosim/ext.c
bindings/rust/gpiosim-sys/src/lib.rs
tests/gpiod-test-helpers.h
tests/gpiod-test-sim.c
tests/gpiod-test-sim.h
tests/gpiosim/gpiosim-selftest.c
tests/gpiosim/gpiosim.c
tests/gpiosim/gpiosim.h
tests/tests-line-info.c

index 281f9cca900e4abca60d8c26ea7b67bc9067a1b0..a36c59e6356be752e8952c17572959ee64cac6a3 100644 (file)
@@ -17,10 +17,10 @@ const ::std::map<chip::pull, gpiosim_pull> pull_mapping = {
        { chip::pull::PULL_DOWN,        GPIOSIM_PULL_DOWN }
 };
 
-const ::std::map<chip_builder::hog_direction, gpiosim_direction> hog_dir_mapping = {
-       { chip_builder::hog_direction::INPUT,           GPIOSIM_HOG_DIR_INPUT },
-       { chip_builder::hog_direction::OUTPUT_HIGH,     GPIOSIM_HOG_DIR_OUTPUT_HIGH },
-       { chip_builder::hog_direction::OUTPUT_LOW,      GPIOSIM_HOG_DIR_OUTPUT_LOW }
+const ::std::map<chip_builder::direction, gpiosim_direction> hog_dir_mapping = {
+       { chip_builder::direction::INPUT,       GPIOSIM_DIRECTION_INPUT },
+       { chip_builder::direction::OUTPUT_HIGH, GPIOSIM_DIRECTION_OUTPUT_HIGH },
+       { chip_builder::direction::OUTPUT_LOW,  GPIOSIM_DIRECTION_OUTPUT_LOW }
 };
 
 const ::std::map<gpiosim_value, chip::value> value_mapping = {
@@ -168,7 +168,7 @@ struct chip_builder::impl
        ::std::size_t num_lines;
        ::std::string label;
        ::std::map<unsigned int, ::std::string> line_names;
-       ::std::map<unsigned int, ::std::pair<::std::string, hog_direction>> hogs;
+       ::std::map<unsigned int, ::std::pair<::std::string, direction>> hogs;
 };
 
 chip_builder::chip_builder()
@@ -216,7 +216,7 @@ chip_builder& chip_builder::set_line_name(unsigned int offset, const ::std::stri
        return *this;
 }
 
-chip_builder& chip_builder::set_hog(unsigned int offset, const ::std::string& name, hog_direction direction)
+chip_builder& chip_builder::set_hog(unsigned int offset, const ::std::string& name, direction direction)
 {
        this->_m_priv->hogs[offset] = { name, direction };
 
index c9300efe56b717b199ed8daa3b8d8e0a159d0b6a..1dab191549888d2bcade959515c7f6bab5e7e637 100644 (file)
@@ -51,7 +51,7 @@ private:
 class chip_builder
 {
 public:
-       enum class hog_direction {
+       enum class direction {
                INPUT = 1,
                OUTPUT_HIGH,
                OUTPUT_LOW
@@ -68,7 +68,7 @@ public:
        chip_builder& set_num_lines(::std::size_t num_lines);
        chip_builder& set_label(const ::std::string& label);
        chip_builder& set_line_name(unsigned int offset, const ::std::string& name);
-       chip_builder& set_hog(unsigned int offset, const ::std::string& name, hog_direction direction);
+       chip_builder& set_hog(unsigned int offset, const ::std::string& name, direction direction);
 
        chip build();
 
index 1d8c293a22dbea3e7d764c3683301892255252da..21211f2392e91e96bb522d29e2d678c9083c3d7b 100644 (file)
@@ -9,7 +9,7 @@
 #include "gpiosim.hpp"
 
 using ::gpiosim::make_sim;
-using hog_dir = ::gpiosim::chip_builder::hog_direction;
+using hog_dir = ::gpiosim::chip_builder::direction;
 using direction = ::gpiod::line::direction;
 using edge = ::gpiod::line::edge;
 using bias = ::gpiod::line::bias;
index 7846321c89907ee6a5c427087e01d54612cc52dd..272e6f7e8cdca7c2eee321939fcf208521b9e98a 100644 (file)
@@ -28,15 +28,15 @@ static const struct module_const module_constants[] = {
        },
        {
                .name = "DIRECTION_INPUT",
-               .val = GPIOSIM_HOG_DIR_INPUT,
+               .val = GPIOSIM_DIRECTION_INPUT,
        },
        {
                .name = "DIRECTION_OUTPUT_HIGH",
-               .val = GPIOSIM_HOG_DIR_OUTPUT_HIGH,
+               .val = GPIOSIM_DIRECTION_OUTPUT_HIGH,
        },
        {
                .name = "DIRECTION_OUTPUT_LOW",
-               .val = GPIOSIM_HOG_DIR_OUTPUT_LOW,
+               .val = GPIOSIM_DIRECTION_OUTPUT_LOW,
        },
        { }
 };
index b7d250b293c0503dc932f2de8d75c9e0c5171110..c3f5b3fb9fd46b35851cbe2949cc3cc18c3cc5c8 100644 (file)
@@ -19,9 +19,9 @@ use crate::{
     gpiosim_value_GPIOSIM_VALUE_INACTIVE as GPIOSIM_VALUE_INACTIVE,
     gpiosim_value_GPIOSIM_VALUE_ACTIVE as GPIOSIM_VALUE_ACTIVE,
     gpiosim_value_GPIOSIM_VALUE_ERROR as GPIOSIM_VALUE_ERROR,
-    gpiosim_direction_GPIOSIM_HOG_DIR_INPUT as GPIOSIM_HOG_DIR_INPUT,
-    gpiosim_direction_GPIOSIM_HOG_DIR_OUTPUT_HIGH as GPIOSIM_HOG_DIR_OUTPUT_HIGH,
-    gpiosim_direction_GPIOSIM_HOG_DIR_OUTPUT_LOW as GPIOSIM_HOG_DIR_OUTPUT_LOW,
+    gpiosim_direction_GPIOSIM_DIRECTION_INPUT as GPIOSIM_DIRECTION_INPUT,
+    gpiosim_direction_GPIOSIM_DIRECTION_OUTPUT_HIGH as GPIOSIM_DIRECTION_OUTPUT_HIGH,
+    gpiosim_direction_GPIOSIM_DIRECTION_OUTPUT_LOW as GPIOSIM_DIRECTION_OUTPUT_LOW,
     gpiosim_pull_GPIOSIM_PULL_UP as GPIOSIM_PULL_UP,
     gpiosim_pull_GPIOSIM_PULL_DOWN as GPIOSIM_PULL_DOWN,
 };
@@ -64,9 +64,9 @@ pub enum Direction {
 impl Direction {
     fn val(self) -> gpiosim_direction {
         match self {
-            Direction::Input => GPIOSIM_HOG_DIR_INPUT,
-            Direction::OutputHigh => GPIOSIM_HOG_DIR_OUTPUT_HIGH,
-            Direction::OutputLow => GPIOSIM_HOG_DIR_OUTPUT_LOW,
+            Direction::Input => GPIOSIM_DIRECTION_INPUT,
+            Direction::OutputHigh => GPIOSIM_DIRECTION_OUTPUT_HIGH,
+            Direction::OutputLow => GPIOSIM_DIRECTION_OUTPUT_LOW,
         }
     }
 }
index c3363bfe881dd1198630d145f2b51ac74a362a8e..60c60b16e0e8d7b717c54a75e9675f5861fb6d1c 100644 (file)
@@ -164,7 +164,7 @@ struct gpiod_test_line_name {
 struct gpiod_test_hog {
        guint offset;
        const gchar *name;
-       GPIOSimHogDir direction;
+       GPIOSimDirection direction;
 };
 
 GVariant *
index fe9f822439a37a49c8c2c8ec1ca3eb87b0238a17..9029382e4a5169b21430a25a62c5d162195dab2e 100644 (file)
@@ -127,14 +127,14 @@ static void g_gpiosim_chip_set_property(GObject *obj, guint prop_id,
                while (g_variant_iter_loop(iter, "(usi)",
                                           &offset, &name, &vdir)) {
                        switch (vdir) {
-                       case G_GPIOSIM_HOG_DIR_INPUT:
-                               dir = GPIOSIM_HOG_DIR_INPUT;
+                       case G_GPIOSIM_DIRECTION_INPUT:
+                               dir = GPIOSIM_DIRECTION_INPUT;
                                break;
-                       case G_GPIOSIM_HOG_DIR_OUTPUT_HIGH:
-                               dir = GPIOSIM_HOG_DIR_OUTPUT_HIGH;
+                       case G_GPIOSIM_DIRECTION_OUTPUT_HIGH:
+                               dir = GPIOSIM_DIRECTION_OUTPUT_HIGH;
                                break;
-                       case G_GPIOSIM_HOG_DIR_OUTPUT_LOW:
-                               dir = GPIOSIM_HOG_DIR_OUTPUT_LOW;
+                       case G_GPIOSIM_DIRECTION_OUTPUT_LOW:
+                               dir = GPIOSIM_DIRECTION_OUTPUT_LOW;
                                break;
                        default:
                                g_error("Invalid hog direction value: %d",
index 0cc2a0b6b66a89d5b4bdef2863ad92ce759fcde9..3012d4964be26b478802fef013343caf431fa2ee 100644 (file)
@@ -15,10 +15,10 @@ typedef enum {
 } GPIOSimPull;
 
 typedef enum {
-       G_GPIOSIM_HOG_DIR_INPUT = 1,
-       G_GPIOSIM_HOG_DIR_OUTPUT_HIGH,
-       G_GPIOSIM_HOG_DIR_OUTPUT_LOW,
-} GPIOSimHogDir;
+       G_GPIOSIM_DIRECTION_INPUT = 1,
+       G_GPIOSIM_DIRECTION_OUTPUT_HIGH,
+       G_GPIOSIM_DIRECTION_OUTPUT_LOW,
+} GPIOSimDirection;
 
 typedef struct _GPIOSimChip GPIOSimChip;
 
index b970755b18223a47fc03e5503896d9167329c736..ce6beee4cadc778f8ffeb1d17b72842b37c183d4 100644 (file)
@@ -92,7 +92,7 @@ int main(int argc UNUSED, char **argv UNUSED)
        printf("Hog a line on bank #2\n");
 
        ret = gpiosim_bank_hog_line(bank1, 3, "xyz",
-                                   GPIOSIM_HOG_DIR_OUTPUT_HIGH);
+                                   GPIOSIM_DIRECTION_OUTPUT_HIGH);
        if (ret) {
                perror("Unable to hog a line");
                return EXIT_FAILURE;
index 9e6c635310649522bdaa82e15c2691d5e8988a51..881ecc8559805bc563ac2771d6e286999fdc27b9 100644 (file)
@@ -1010,13 +1010,13 @@ GPIOSIM_API int gpiosim_bank_hog_line(struct gpiosim_bank *bank,
        int ret, fd;
 
        switch (direction) {
-       case GPIOSIM_HOG_DIR_INPUT:
+       case GPIOSIM_DIRECTION_INPUT:
                dir = "input";
                break;
-       case GPIOSIM_HOG_DIR_OUTPUT_HIGH:
+       case GPIOSIM_DIRECTION_OUTPUT_HIGH:
                dir = "output-high";
                break;
-       case GPIOSIM_HOG_DIR_OUTPUT_LOW:
+       case GPIOSIM_DIRECTION_OUTPUT_LOW:
                dir = "output-low";
                break;
        default:
index ab269006e4481d5f892a4623c3ec992ab8fdc46d..7d75852ada1a6affa907e9a99b66621ebfb24b50 100644 (file)
@@ -28,9 +28,9 @@ enum gpiosim_pull {
 };
 
 enum gpiosim_direction {
-       GPIOSIM_HOG_DIR_INPUT = 1,
-       GPIOSIM_HOG_DIR_OUTPUT_HIGH,
-       GPIOSIM_HOG_DIR_OUTPUT_LOW,
+       GPIOSIM_DIRECTION_INPUT = 1,
+       GPIOSIM_DIRECTION_OUTPUT_HIGH,
+       GPIOSIM_DIRECTION_OUTPUT_LOW,
 };
 
 struct gpiosim_ctx *gpiosim_ctx_new(void);
index 94e948cd9f9b1c8f8619d88f7853d7dcfc309177..0d8173e5f4f6a662aa23736fa549427afc5081c6 100644 (file)
@@ -51,12 +51,12 @@ GPIOD_TEST_CASE(line_info_basic_properties)
                {
                        .offset = 3,
                        .name = "hog3",
-                       .direction = G_GPIOSIM_HOG_DIR_OUTPUT_HIGH,
+                       .direction = G_GPIOSIM_DIRECTION_OUTPUT_HIGH,
                },
                {
                        .offset = 4,
                        .name = "hog4",
-                       .direction = G_GPIOSIM_HOG_DIR_OUTPUT_LOW,
+                       .direction = G_GPIOSIM_DIRECTION_OUTPUT_LOW,
                },
                { }
        };