Documentation for Utils Module¶
DockerUtils
¶
Utility class for Docker operations such as creating networks, checking containers, and removing networks or containers by name prefix.
Source code in nebula/utils.py
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 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
|
check_docker_by_prefix(prefix)
classmethod
¶
Checks if there are any Docker containers whose names start with the given prefix.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
prefix
|
str
|
Prefix string to match container names. |
required |
Returns:
Name | Type | Description |
---|---|---|
bool |
True if any container matches the prefix, False otherwise. |
Source code in nebula/utils.py
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 183 |
|
create_docker_network(network_name, subnet=None, prefix=24)
classmethod
¶
Creates a Docker bridge network with a given name and optional subnet. If subnet is None or already in use, it finds an available subnet in the 192.168.X.0/24 range starting from 192.168.50.0/24.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
network_name
|
str
|
Name of the Docker network to create. |
required |
subnet
|
str
|
Subnet in CIDR notation (e.g. "192.168.50.0/24"). |
None
|
prefix
|
int
|
Network prefix length, default is 24. |
24
|
Returns:
Type | Description |
---|---|
str or None: The base subnet (e.g. "192.168.50") of the created or existing network, or None if an error occurred. |
Source code in nebula/utils.py
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 |
|
remove_containers_by_prefix(prefix)
classmethod
¶
Removes all Docker containers whose names start with the given prefix. Containers are forcibly removed even if they are running.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
prefix
|
str
|
Prefix string to match container names. |
required |
Returns:
Type | Description |
---|---|
None |
Source code in nebula/utils.py
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
|
remove_docker_network(network_name)
classmethod
¶
Removes a Docker network by name.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
network_name
|
str
|
Name of the Docker network to remove. |
required |
Returns:
Type | Description |
---|---|
None |
Source code in nebula/utils.py
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 |
|
remove_docker_networks_by_prefix(prefix)
classmethod
¶
Removes all Docker networks whose names start with the given prefix.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
prefix
|
str
|
Prefix string to match network names. |
required |
Returns:
Type | Description |
---|---|
None |
Source code in nebula/utils.py
214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 |
|
FileUtils
¶
Utility class for file operations.
Source code in nebula/utils.py
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
|
check_path(base_path, relative_path)
classmethod
¶
Joins and normalizes a base path with a relative path, then validates that the resulting full path is inside the base path directory.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
base_path
|
str
|
The base directory path. |
required |
relative_path
|
str
|
The relative path to join with the base path. |
required |
Returns:
Name | Type | Description |
---|---|---|
str |
The normalized full path. |
Raises:
Type | Description |
---|---|
Exception
|
If the resulting path is outside the base directory. |
Source code in nebula/utils.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
|
SocketUtils
¶
Utility class for socket operations.
Source code in nebula/utils.py
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 |
|
find_free_port(start_port=49152, end_port=65535)
classmethod
¶
Finds and returns the first available TCP port within the specified range.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
start_port
|
int
|
Starting port number to check. Defaults to 49152. |
49152
|
end_port
|
int
|
Ending port number to check. Defaults to 65535. |
65535
|
Returns:
Type | Description |
---|---|
int or None: The first free port found, or None if no free port is found. |
Source code in nebula/utils.py
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
|
is_port_open(port)
classmethod
¶
Checks if a TCP port is available (not currently bound) on localhost.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
port
|
int
|
The port number to check. |
required |
Returns:
Name | Type | Description |
---|---|---|
bool |
True if the port is free (available), False if it is in use. |
Source code in nebula/utils.py
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
|