Filesharing Worker
FileSharingWorker(inventory: Any, broker: str, worker_name: str, exit_event: Any = None, init_done_event: Any = None, log_level: str = 'WARNING', log_queue: object = None)
¤
Bases: NFPWorker
Source code in norfab\workers\filesharing_worker\filesharing_worker.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | |
list_files(url: str) -> Result
¤
List files in a directory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
url
|
str
|
URL path starting with 'nf://' to list files from |
required |
Returns:
| Type | Description |
|---|---|
Result
|
Result containing list of files or error message |
Source code in norfab\workers\filesharing_worker\filesharing_worker.py
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 | |
file_details(url: str) -> Result
¤
Get file details including md5 hash, size, and existence.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
url
|
str
|
URL path starting with 'nf://' to get file details |
required |
Returns:
| Type | Description |
|---|---|
Result
|
Result containing md5hash, size_bytes, and exists fields |
Source code in norfab\workers\filesharing_worker\filesharing_worker.py
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 | |
walk(url: str) -> Result
¤
Recursively list all files from all subdirectories.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
url
|
str
|
URL path starting with 'nf://' to walk directories |
required |
Returns:
| Type | Description |
|---|---|
Result
|
Result containing list of all file paths or error message |
Source code in norfab\workers\filesharing_worker\filesharing_worker.py
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 | |
fetch_file(job: Job, url: str, chunk_size: int = 256000, offset: int = 0, chunk_timeout: int = 5) -> Result
¤
Fetch a file in chunks with offset support.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
url
|
str
|
URL path starting with 'nf://' to fetch file from |
required |
chunk_size
|
int
|
Size of chunk to read in bytes (default: 256KB) |
256000
|
offset
|
int
|
Number of bytes to offset (default: 0) |
0
|
Returns:
| Type | Description |
|---|---|
Result
|
Result containing file chunk bytes or error message |
Source code in norfab\workers\filesharing_worker\filesharing_worker.py
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 | |