Fix: clear pointer vector before fill it.
[apps/agl-service-can-low-level.git] / src / can-signals.hpp
index f34c743..547769f 100644 (file)
 
 #pragma once
 
-#include "can-utils.h"
+#include <map>
+#include <mutex>
+#include <queue>
+#include <vector>
 #include <string>
 
-/** Public: Return the currently active CAN configuration. */
-CanMessageSet* getActiveMessageSet();
+#include "obd2-signals.hpp"
+#include "timer.hpp"
+#include "openxc.pb.h"
+#include "can-bus.hpp"
+#include "can-message.hpp"
 
-/** Public: Retrive a list of all possible CAN configurations.
- *     *
- *      * Returns a pointer to an array of all configurations.
- *       */
-CanMessageSet* getMessageSets();
+extern "C"
+{
+       #include <afb/afb-binding.h>
+       #include <afb/afb-event-itf.h>
+}
 
-/** Public: Return the length of the array returned by getMessageSets() */
-int getMessageSetCount();
+#define MESSAGE_SET_ID 0
 
-/* Public: Return the number of CAN buses configured in the active
- *     * configuration. This is limited to 2, as the hardware controller only has 2
- *      * CAN channels.
- *       */
-int getCanBusCount();
+extern std::mutex subscribed_signals_mutex;
+std::mutex& get_subscribed_signals_mutex();
 
-/* Public: Return an array of all CAN messages to be processed in the active
- *     * configuration.
- *      */
-CanMessageDefinition* getMessages();
+/**
+ * @brief return the subscribed_signals map.
+ * 
+ * return std::map<std::string, struct afb_event> - map of subscribed signals.
+ */
+extern std::map<std::string, struct afb_event> subscribed_signals;
+std::map<std::string, struct afb_event>& get_subscribed_signals();
 
-/* Public: Return signals from an signals array filtered on name.
+/**
+ * @brief The type signature for a CAN signal decoder.
+ *
+ * @desc A SignalDecoder transforms a raw floating point CAN signal into a number,
+ * string or boolean.
+ *
+ * @param[in] CanSignal signal - The CAN signal that we are decoding.
+ * @param[in] CanSignal signals - The list of all signals.
+ * @param[in] int signalCount - The length of the signals array.
+ * @param[in] float value - The CAN signal parsed from the message as a raw floating point
+ *     value.
+ * @param[out] bool send - An output parameter. If the decoding failed or the CAN signal should
+ *     not send for some other reason, this should be flipped to false.
+ *
+ * @return a decoded value in an openxc_DynamicField struct.
  */
-CanSignal* getSignals(std::string name);
+typedef openxc_DynamicField (*SignalDecoder)(struct CanSignal& signal,
+               const std::vector<CanSignal>& signals, float value, bool* send);
 
-/* Public: Return an array of all OpenXC CAN commands enabled in the active
- *     * configuration that can write back to CAN with a custom handler.
- *      *
- *       * Commands not defined here are handled using a 1-1 mapping from the signals
- *        * list.
- *             */
-CanCommand* getCommands();
+/**
+ * @brief: The type signature for a CAN signal encoder.
+ *
+ * @desc A SignalEncoder transforms a number, string or boolean into a raw floating
+ * point value that fits in the CAN signal.
+ *
+ * @params[signal] - The CAN signal to encode. 
+ * @params[value] - The dynamic field to encode.
+ * @params[send] - An output parameter. If the encoding failed or the CAN signal should
+ * not be encoded for some other reason, this will be flipped to false.
+ */
+typedef uint64_t (*SignalEncoder)(struct CanSignal* signal,
+               openxc_DynamicField* value, bool* send);
 
-/* Public: Return the length of the array returned by getCommandCount(). */
-int getCommandCount();
+/**
+ * @struct CanSignalState
+ *
+ * @brief A state encoded (SED) signal's mapping from numerical values to
+ * OpenXC state names.
+ */
+struct CanSignalState {
+       const int value; /*!< int value - The integer value of the state on the CAN bus.*/
+       const char* name; /*!< char* name  - The corresponding string name for the state in OpenXC. */
+};
+typedef struct CanSignalState CanSignalState;
 
-/* Public: Return the length of the array returned by getSignals(). */
-int getSignalCount();
+/**
+ * @struct CanSignal
+ *
+ * @brief A CAN signal to decode from the bus and output over USB.
+ */
+struct CanSignal {
+       struct CanMessageDefinition* message; /*!< message         - The message this signal is a part of. */
+       const char* generic_name; /*!< generic_name - The name of the signal to be output over USB.*/
+       uint8_t bitPosition; /*!< bitPosition - The starting bit of the signal in its CAN message (assuming
+                                               *       non-inverted bit numbering, i.e. the most significant bit of
+                                               *       each byte is 0) */
+       uint8_t bitSize; /*!< bitSize - The width of the bit field in the CAN message. */
+       float factor; /*!< factor - The final value will be multiplied by this factor. Use 1 if you
+                               *       don't need a factor. */
+       float offset; /*!< offset          - The final value will be added to this offset. Use 0 if you
+                               *       don't need an offset. */
+       float minValue; /*!< minValue    - The minimum value for the processed signal.*/
+       float maxValue; /*!< maxValue    - The maximum value for the processed signal. */
+       FrequencyClock frequencyClock; /*!< frequencyClock - A FrequencyClock struct to control the maximum frequency to
+                                                               *       process and send this signal. To process every value, set the
+                                                               *       clock's frequency to 0. */
+       bool sendSame; /*!< sendSame    - If true, will re-send even if the value hasn't changed.*/
+       bool forceSendChanged; /*!< forceSendChanged - If true, regardless of the frequency, it will send the
+                                               *       value if it has changed. */
+       const CanSignalState* states; /*!< states          - An array of CanSignalState describing the mapping
+                                                               *       between numerical and string values for valid states. */
+       uint8_t stateCount; /*!< stateCount  - The length of the states array. */
+       bool writable; /*!< writable    - True if the signal is allowed to be written from the USB host
+                               *       back to CAN. Defaults to false.*/
+       SignalDecoder decoder; /*!< decoder        - An optional function to decode a signal from the bus to a human
+                                               *       readable value. If NULL, the default numerical decoder is used. */
+       SignalEncoder encoder; /*!< encoder        - An optional function to encode a signal value to be written to
+                                               *       CAN into a byte array. If NULL, the default numerical encoder
+                                               *       is used. */
+       bool received; /*!< received    - True if this signal has ever been received.*/
+       float lastValue; /*!< lastValue   - The last received value of the signal. If 'received' is false,
+                                       *       this value is undefined. */
+};
+typedef struct CanSignal CanSignal;
 
-/* Public: Return the length of the array returned by getMessages(). */
-int getMessageCount();
+/* Public: Return signals from an signals array filtered on name.
+ */
+std::vector<CanSignal>& get_can_signals();
 
-/* Public: Return an array of the metadata for the 2 CAN buses you want to
- *     * monitor. The size of this array is fixed at 2.
- *      */
-CanBus* getCanBuses();
+/* Public: Return the length of the array returned by get_can_signals(). */
+size_t getSignalCount();
+
+/**
+ * @brief Find one or many signals based on its name or id
+ * passed through openxc_DynamicField.
+ *
+ * @param[in] openxc_DynamicField& - a const reference with the key to search into signal.
+ * Key is either a signal name or its CAN arbitration id.
+ *
+ * @return std::vector<std::string> return found CanSignal generic name vector.
+ */
+void find_can_signals(const openxc_DynamicField &key, std::vector<CanSignal*>& found_signals);
 
-/* Public: Decode CAN signals from raw CAN messages, translate from engineering
- *     * units to something more human readable, and send the resulting value over USB
- *      * as an OpenXC-style JSON message.
- *       *
- *        * This is the main workhorse function of the VI. Every time a new
- *             * CAN message is received that matches one of the signals in the list returend
- *              * by getSignals(), this function is called with the message ID and 64-bit data
- *               * field.
- *                *
- *                     * bus - The CAN bus this message was received on.
- *                      * message - The received CAN message.
- *                       */
-void decodeCanMessage(openxc::pipeline::Pipeline* pipeline, CanBus* bus, CanMessage* message);
+/**
+ * @brief Retrieve can arbitration id of a given CanSignal
+ *
+ * @param[in] CanSignal& - a const reference to a CanSignal
+ *
+ * @return uint32_t - unsigned integer representing the arbitration id.
+ */
+uint32_t get_signal_id(const CanSignal& sig);
\ No newline at end of file