Ethernet Plugin
Bases: BasePlugin
EthernetPlugin simulates Ethernet communication for scenarios like firmware update transfers over TCP.
It handles connection management, sending commands to a mock server, and manages state transitions for connect, disconnect, transfer start, resume, and completion.
Source code in plugins/ethernet/main.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 |
|
__init__()
Initialize the EthernetPlugin instance.
Sets default server IP and port to None and 9000 respectively, initializes socket and connection state.
Source code in plugins/ethernet/main.py
34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
|
on_event(topic, data, timestamp)
Called when an event targeted to this plugin is received.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
topic
|
str
|
Event topic in format ' |
required |
data
|
dict
|
Event payload data, typically parameters. |
required |
timestamp
|
float
|
Simulation timestamp of event in seconds. |
required |
Parses the action from the topic and dispatches it to appropriate internal handlers such as connect, disconnect, start_transfer, etc. Specially handles resume_transfer by attempting reconnect if disconnected. Logs unknown actions as warnings.
Source code in plugins/ethernet/main.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
|
on_init(config)
Plugin initialization hook called once after loading.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
dict
|
Optional configuration dictionary. |
required |
Logs the plugin initialization message.
Source code in plugins/ethernet/main.py
49 50 51 52 53 54 55 56 57 58 |
|
on_shutdown()
Called during plugin shutdown to clean up resources.
Disconnects the socket and logs the shutdown event.
Source code in plugins/ethernet/main.py
175 176 177 178 179 180 181 182 |
|