340 lines
7.4 KiB
C++
340 lines
7.4 KiB
C++
#ifndef __NETWORKID_H_
|
|
#define __NETWORKID_H_
|
|
|
|
#include <cstdint>
|
|
#include <ostream>
|
|
|
|
namespace icsneo {
|
|
|
|
class Network {
|
|
public:
|
|
enum class NetID : uint16_t {
|
|
Device = 0,
|
|
HSCAN = 1,
|
|
MSCAN = 2,
|
|
SWCAN = 3,
|
|
LSFTCAN = 4,
|
|
FordSCP = 5,
|
|
J1708 = 6,
|
|
Aux = 7,
|
|
J1850VPW = 8,
|
|
ISO = 9,
|
|
ISOPIC = 10,
|
|
Main51 = 11,
|
|
RED = 12,
|
|
SCI = 13,
|
|
ISO2 = 14,
|
|
ISO14230 = 15,
|
|
LIN = 16,
|
|
OP_Ethernet1 = 17,
|
|
OP_Ethernet2 = 18,
|
|
OP_Ethernet3 = 19,
|
|
ISO3 = 41,
|
|
HSCAN2 = 42,
|
|
HSCAN3 = 44,
|
|
OP_Ethernet4 = 45,
|
|
OP_Ethernet5 = 46,
|
|
ISO4 = 47,
|
|
LIN2 = 48,
|
|
LIN3 = 49,
|
|
LIN4 = 50,
|
|
MOST = 51,
|
|
Red_App_Error = 52,
|
|
CGI = 53,
|
|
Reset_Status = 54,
|
|
FB_Status = 55,
|
|
App_Signal_Status = 56,
|
|
Read_Datalink_Cm_Tx_Msg = 57,
|
|
Read_Datalink_Cm_Rx_Msg = 58,
|
|
Logging_Overflow = 59,
|
|
Read_Settings_Ex = 60,
|
|
HSCAN4 = 61,
|
|
HSCAN5 = 62,
|
|
RS232 = 63,
|
|
UART = 64,
|
|
UART2 = 65,
|
|
UART3 = 66,
|
|
UART4 = 67,
|
|
SWCAN2 = 68,
|
|
Ethernet_DAQ = 69,
|
|
Data_To_Host = 70,
|
|
TextAPI_To_Host = 71,
|
|
OP_Ethernet6 = 73,
|
|
Red_VBat = 74,
|
|
OP_Ethernet7 = 75,
|
|
OP_Ethernet8 = 76,
|
|
OP_Ethernet9 = 77,
|
|
OP_Ethernet10 = 78,
|
|
OP_Ethernet11 = 79,
|
|
FlexRay1a = 80,
|
|
FlexRay1b = 81,
|
|
FlexRay2a = 82,
|
|
FlexRay2b = 83,
|
|
LIN5 = 84,
|
|
FlexRay = 85,
|
|
FlexRay2 = 86,
|
|
OP_Ethernet12 = 87,
|
|
MOST25 = 90,
|
|
MOST50 = 91,
|
|
MOST150 = 92,
|
|
Ethernet = 93,
|
|
GMFSA = 94,
|
|
TCP = 95,
|
|
HSCAN6 = 96,
|
|
HSCAN7 = 97,
|
|
LIN6 = 98,
|
|
LSFTCAN2 = 99,
|
|
HW_COM_Latency_Test = 512,
|
|
Device_Status = 513,
|
|
Invalid = 0xffff
|
|
};
|
|
enum class Type {
|
|
CAN,
|
|
LIN,
|
|
FlexRay,
|
|
MOST,
|
|
Ethernet,
|
|
Other,
|
|
Invalid
|
|
};
|
|
static constexpr const char* GetTypeString(Type type) {
|
|
switch(type) {
|
|
case Type::CAN:
|
|
return "CAN";
|
|
case Type::LIN:
|
|
return "LIN";
|
|
case Type::FlexRay:
|
|
return "FlexRay";
|
|
case Type::MOST:
|
|
return "MOST";
|
|
case Type::Other:
|
|
return "Other";
|
|
case Type::Invalid:
|
|
default:
|
|
return "Invalid Type";
|
|
}
|
|
}
|
|
static constexpr Type GetTypeOfNetID(NetID netid) {
|
|
switch(netid) {
|
|
case NetID::HSCAN:
|
|
case NetID::MSCAN:
|
|
case NetID::SWCAN:
|
|
case NetID::LSFTCAN:
|
|
case NetID::HSCAN2:
|
|
case NetID::HSCAN3:
|
|
case NetID::HSCAN4:
|
|
case NetID::HSCAN5:
|
|
case NetID::SWCAN2:
|
|
case NetID::HSCAN6:
|
|
case NetID::HSCAN7:
|
|
case NetID::LSFTCAN2:
|
|
return Type::CAN;
|
|
case NetID::LIN:
|
|
case NetID::LIN2:
|
|
case NetID::LIN3:
|
|
case NetID::LIN4:
|
|
case NetID::LIN5:
|
|
case NetID::LIN6:
|
|
return Type::LIN;
|
|
case NetID::FlexRay:
|
|
case NetID::FlexRay1a:
|
|
case NetID::FlexRay1b:
|
|
case NetID::FlexRay2:
|
|
case NetID::FlexRay2a:
|
|
case NetID::FlexRay2b:
|
|
return Type::FlexRay;
|
|
case NetID::MOST:
|
|
case NetID::MOST25:
|
|
case NetID::MOST50:
|
|
case NetID::MOST150:
|
|
return Type::MOST;
|
|
case NetID::Invalid:
|
|
return Type::Invalid;
|
|
default:
|
|
return Type::Other;
|
|
}
|
|
}
|
|
static constexpr const char* GetNetIDString(NetID netid) {
|
|
switch(netid) {
|
|
case NetID::Device:
|
|
return "Device";
|
|
case NetID::HSCAN:
|
|
return "HSCAN";
|
|
case NetID::MSCAN:
|
|
return "MSCAN";
|
|
case NetID::SWCAN:
|
|
return "SWCAN";
|
|
case NetID::LSFTCAN:
|
|
return "LSFTCAN";
|
|
case NetID::FordSCP:
|
|
return "FordSCP";
|
|
case NetID::J1708:
|
|
return "J1708";
|
|
case NetID::Aux:
|
|
return "Aux";
|
|
case NetID::J1850VPW:
|
|
return "J1850 VPW";
|
|
case NetID::ISO:
|
|
return "ISO";
|
|
case NetID::ISOPIC:
|
|
return "ISOPIC";
|
|
case NetID::Main51:
|
|
return "Main51";
|
|
case NetID::RED:
|
|
return "RED";
|
|
case NetID::SCI:
|
|
return "SCI";
|
|
case NetID::ISO2:
|
|
return "ISO 2";
|
|
case NetID::ISO14230:
|
|
return "ISO 14230";
|
|
case NetID::LIN:
|
|
return "LIN";
|
|
case NetID::OP_Ethernet1:
|
|
return "Ethernet 1";
|
|
case NetID::OP_Ethernet2:
|
|
return "Ethernet 2";
|
|
case NetID::OP_Ethernet3:
|
|
return "Ethernet 3";
|
|
case NetID::ISO3:
|
|
return "ISO 3";
|
|
case NetID::HSCAN2:
|
|
return "HSCAN 2";
|
|
case NetID::HSCAN3:
|
|
return "HSCAN 3";
|
|
case NetID::OP_Ethernet4:
|
|
return "Ethernet 4";
|
|
case NetID::OP_Ethernet5:
|
|
return "Ethernet 5";
|
|
case NetID::ISO4:
|
|
return "ISO 4";
|
|
case NetID::LIN2:
|
|
return "LIN 2";
|
|
case NetID::LIN3:
|
|
return "LIN 3";
|
|
case NetID::LIN4:
|
|
return "LIN 4";
|
|
case NetID::MOST:
|
|
return "MOST";
|
|
case NetID::Red_App_Error:
|
|
return "Red App Error";
|
|
case NetID::CGI:
|
|
return "CGI";
|
|
case NetID::Reset_Status:
|
|
return "Reset Status";
|
|
case NetID::FB_Status:
|
|
return "FB Status";
|
|
case NetID::App_Signal_Status:
|
|
return "App Signal Status";
|
|
case NetID::Read_Datalink_Cm_Tx_Msg:
|
|
return "Read Datalink Cm Tx Msg";
|
|
case NetID::Read_Datalink_Cm_Rx_Msg:
|
|
return "Read Datalink Cm Rx Msg";
|
|
case NetID::Logging_Overflow:
|
|
return "Logging Overflow";
|
|
case NetID::Read_Settings_Ex:
|
|
return "Read Settings Ex";
|
|
case NetID::HSCAN4:
|
|
return "HSCAN 4";
|
|
case NetID::HSCAN5:
|
|
return "HSCAN 5";
|
|
case NetID::RS232:
|
|
return "RS232";
|
|
case NetID::UART:
|
|
return "UART";
|
|
case NetID::UART2:
|
|
return "UART 2";
|
|
case NetID::UART3:
|
|
return "UART 3";
|
|
case NetID::UART4:
|
|
return "UART 4";
|
|
case NetID::SWCAN2:
|
|
return "SWCAN 2";
|
|
case NetID::Ethernet_DAQ:
|
|
return "Ethernet DAQ";
|
|
case NetID::Data_To_Host:
|
|
return "Data To Host";
|
|
case NetID::TextAPI_To_Host:
|
|
return "TextAPI To Host";
|
|
case NetID::OP_Ethernet6:
|
|
return "Ethernet 6";
|
|
case NetID::Red_VBat:
|
|
return "Red VBat";
|
|
case NetID::OP_Ethernet7:
|
|
return "Ethernet 7";
|
|
case NetID::OP_Ethernet8:
|
|
return "Ethernet 8";
|
|
case NetID::OP_Ethernet9:
|
|
return "Ethernet 9";
|
|
case NetID::OP_Ethernet10:
|
|
return "Ethernet 10";
|
|
case NetID::OP_Ethernet11:
|
|
return "Ethernet 11";
|
|
case NetID::FlexRay1a:
|
|
return "FlexRay 1a";
|
|
case NetID::FlexRay1b:
|
|
return "FlexRay 1b";
|
|
case NetID::FlexRay2a:
|
|
return "FlexRay 2a";
|
|
case NetID::FlexRay2b:
|
|
return "FlexRay 2b";
|
|
case NetID::LIN5:
|
|
return "LIN 5";
|
|
case NetID::FlexRay:
|
|
return "FlexRay";
|
|
case NetID::FlexRay2:
|
|
return "FlexRay 2";
|
|
case NetID::OP_Ethernet12:
|
|
return "Ethernet 12";
|
|
case NetID::MOST25:
|
|
return "MOST25";
|
|
case NetID::MOST50:
|
|
return "MOST50";
|
|
case NetID::MOST150:
|
|
return "MOST150";
|
|
case NetID::Ethernet:
|
|
return "Ethernet";
|
|
case NetID::GMFSA:
|
|
return "GMFSA";
|
|
case NetID::TCP:
|
|
return "TCP";
|
|
case NetID::HSCAN6:
|
|
return "HSCAN 6";
|
|
case NetID::HSCAN7:
|
|
return "HSCAN 7";
|
|
case NetID::LIN6:
|
|
return "LIN 6";
|
|
case NetID::LSFTCAN2:
|
|
return "LSFTCAN 2";
|
|
case NetID::HW_COM_Latency_Test:
|
|
return "HW COM Latency Test";
|
|
case NetID::Device_Status:
|
|
return "Device Status";
|
|
case NetID::Invalid:
|
|
default:
|
|
return "Invalid Network";
|
|
}
|
|
}
|
|
|
|
Network() { setValue(NetID::Invalid); }
|
|
Network(uint16_t netid) { setValue((NetID)netid); }
|
|
Network(NetID netid) { setValue(netid); }
|
|
NetID getNetID() const { return value; }
|
|
Type getType() const { return type; }
|
|
friend std::ostream& operator<<(std::ostream& os, const Network& network) {
|
|
os << GetNetIDString(network.getNetID());
|
|
return os;
|
|
}
|
|
|
|
private:
|
|
NetID value; // Always use setValue so that value and type stay in sync
|
|
Type type;
|
|
void setValue(NetID id) {
|
|
value = id;
|
|
type = GetTypeOfNetID(value);
|
|
}
|
|
};
|
|
|
|
};
|
|
|
|
#endif |