API Docs for TM-Admin¶
tmadmin_manage.py¶
dbsupport.py¶
DBSupport ¶
DBSupport(table)
Bases: object
Parameters:
Name | Type | Description | Default |
---|---|---|---|
table |
str
|
The table to use for this connection. |
required |
Returns:
Type | Description |
---|---|
DBSupport
|
An instance of this class |
Source code in tm_admin/dbsupport.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
|
connect
async
¶
connect(dburi='localhost/tm_admin')
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dburi |
str
|
The URI string for the database connection. |
'localhost/tm_admin'
|
Source code in tm_admin/dbsupport.py
63 64 65 66 67 68 69 70 71 72 73 74 75 |
|
createTable
async
¶
createTable(obj)
Create a table in a postgres database.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
obj |
The config data for the table. |
required |
Source code in tm_admin/dbsupport.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 |
|
updateTable
async
¶
updateTable(id=None)
Updates an existing table in the database
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id |
int
|
The ID of the dataset to update |
None
|
Source code in tm_admin/dbsupport.py
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 |
|
resetSequence
async
¶
resetSequence()
Reset the postgres sequence to zero.
Source code in tm_admin/dbsupport.py
167 168 169 170 171 172 |
|
getByID
async
¶
getByID(id)
Return the data for the ID in the table.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id |
int
|
The ID of the dataset to retrieve. |
required |
Returns:
Type | Description |
---|---|
dict
|
The results of the query |
Source code in tm_admin/dbsupport.py
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 |
|
getByName
async
¶
getByName(name)
Return the data for the name in the table.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
The name of the dataset to retrieve. |
required |
Returns:
Type | Description |
---|---|
list
|
The results of the query |
Source code in tm_admin/dbsupport.py
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
|
getAll
async
¶
getAll()
Return all the data in the table.
Returns:
Type | Description |
---|---|
list
|
The results of the query |
Source code in tm_admin/dbsupport.py
212 213 214 215 216 217 218 219 220 221 222 223 224 |
|
getByWhere
async
¶
getByWhere(where)
Return the data for the where clause in the table.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
where |
str
|
The where clause of the dataset to retrieve. |
required |
Returns:
Type | Description |
---|---|
list
|
The results of the query |
Source code in tm_admin/dbsupport.py
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
|
getByLocation
async
¶
getByLocation(location, table='projects')
Return the database records in a table using GPS coordinates.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
location |
Point
|
The location to use to find the project or task. |
required |
Returns:
Type | Description |
---|---|
list
|
The results of the query |
Source code in tm_admin/dbsupport.py
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 |
|
deleteByID
async
¶
deleteByID(id)
Delete the record for the ID in the table.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id |
int
|
The ID of the dataset to delete. |
required |
Source code in tm_admin/dbsupport.py
264 265 266 267 268 269 270 271 272 273 274 275 |
|
getColumn
async
¶
getColumn(uid, column)
This gets a single column from the database.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
uid |
int
|
The ID to get |
required |
column |
str
|
The column. |
required |
Returns:
Type | Description |
---|---|
list
|
The column values |
Source code in tm_admin/dbsupport.py
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 |
|
updateColumn
async
¶
updateColumn(uid, data)
This updates a single column in the database. If you want to update multiple columns, use self.updateTable() instead.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
uid |
int
|
The ID of the user to update |
required |
data |
dict
|
The column and new value |
required |
Source code in tm_admin/dbsupport.py
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 |
|
removeColumn
async
¶
removeColumn(uid, data)
This updates a single array column in the database. If you want to update multiple columns, use self.updateTable() instead.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
uid |
int
|
The ID of the user to update |
required |
data |
dict
|
The column and new value |
required |
Source code in tm_admin/dbsupport.py
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 |
|
appendColumn
async
¶
appendColumn(uid, data)
This updates a single array column in the database. If you want to update multiple columns, use self.updateTable() instead.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
uid |
int
|
The ID of the user to update |
required |
data |
dict
|
The column and new value |
required |
Source code in tm_admin/dbsupport.py
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 |
|
renameTable
async
¶
renameTable(table)
Source code in tm_admin/dbsupport.py
356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 |
|
copyTable
async
¶
copyTable(table, remote)
Use DBLINK to copy a table from the Tasking Manager database to a local table so JOINing is much faster.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
table |
str
|
The table to copy |
required |
Source code in tm_admin/dbsupport.py
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 |
|
main
async
¶
main()
This main function lets this class be run standalone by a bash script.
Source code in tm_admin/dbsupport.py
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 |
|
options: show_source: false heading_level: 3
pgsupport.py¶
DBSupport ¶
DBSupport(table)
Bases: object
Parameters:
Name | Type | Description | Default |
---|---|---|---|
table |
str
|
The table to use for this connection. |
required |
Returns:
Type | Description |
---|---|
DBSupport
|
An instance of this class |
Source code in tm_admin/dbsupport.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 |
|
connect
async
¶
connect(dburi='localhost/tm_admin')
Parameters:
Name | Type | Description | Default |
---|---|---|---|
dburi |
str
|
The URI string for the database connection. |
'localhost/tm_admin'
|
Source code in tm_admin/dbsupport.py
63 64 65 66 67 68 69 70 71 72 73 74 75 |
|
createTable
async
¶
createTable(obj)
Create a table in a postgres database.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
obj |
The config data for the table. |
required |
Source code in tm_admin/dbsupport.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 |
|
updateTable
async
¶
updateTable(id=None)
Updates an existing table in the database
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id |
int
|
The ID of the dataset to update |
None
|
Source code in tm_admin/dbsupport.py
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 |
|
resetSequence
async
¶
resetSequence()
Reset the postgres sequence to zero.
Source code in tm_admin/dbsupport.py
167 168 169 170 171 172 |
|
getByID
async
¶
getByID(id)
Return the data for the ID in the table.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id |
int
|
The ID of the dataset to retrieve. |
required |
Returns:
Type | Description |
---|---|
dict
|
The results of the query |
Source code in tm_admin/dbsupport.py
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 |
|
getByName
async
¶
getByName(name)
Return the data for the name in the table.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name |
str
|
The name of the dataset to retrieve. |
required |
Returns:
Type | Description |
---|---|
list
|
The results of the query |
Source code in tm_admin/dbsupport.py
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
|
getAll
async
¶
getAll()
Return all the data in the table.
Returns:
Type | Description |
---|---|
list
|
The results of the query |
Source code in tm_admin/dbsupport.py
212 213 214 215 216 217 218 219 220 221 222 223 224 |
|
getByWhere
async
¶
getByWhere(where)
Return the data for the where clause in the table.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
where |
str
|
The where clause of the dataset to retrieve. |
required |
Returns:
Type | Description |
---|---|
list
|
The results of the query |
Source code in tm_admin/dbsupport.py
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
|
getByLocation
async
¶
getByLocation(location, table='projects')
Return the database records in a table using GPS coordinates.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
location |
Point
|
The location to use to find the project or task. |
required |
Returns:
Type | Description |
---|---|
list
|
The results of the query |
Source code in tm_admin/dbsupport.py
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 |
|
deleteByID
async
¶
deleteByID(id)
Delete the record for the ID in the table.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
id |
int
|
The ID of the dataset to delete. |
required |
Source code in tm_admin/dbsupport.py
264 265 266 267 268 269 270 271 272 273 274 275 |
|
getColumn
async
¶
getColumn(uid, column)
This gets a single column from the database.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
uid |
int
|
The ID to get |
required |
column |
str
|
The column. |
required |
Returns:
Type | Description |
---|---|
list
|
The column values |
Source code in tm_admin/dbsupport.py
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 |
|
updateColumn
async
¶
updateColumn(uid, data)
This updates a single column in the database. If you want to update multiple columns, use self.updateTable() instead.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
uid |
int
|
The ID of the user to update |
required |
data |
dict
|
The column and new value |
required |
Source code in tm_admin/dbsupport.py
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 |
|
removeColumn
async
¶
removeColumn(uid, data)
This updates a single array column in the database. If you want to update multiple columns, use self.updateTable() instead.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
uid |
int
|
The ID of the user to update |
required |
data |
dict
|
The column and new value |
required |
Source code in tm_admin/dbsupport.py
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 |
|
appendColumn
async
¶
appendColumn(uid, data)
This updates a single array column in the database. If you want to update multiple columns, use self.updateTable() instead.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
uid |
int
|
The ID of the user to update |
required |
data |
dict
|
The column and new value |
required |
Source code in tm_admin/dbsupport.py
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 |
|
renameTable
async
¶
renameTable(table)
Source code in tm_admin/dbsupport.py
356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 |
|
copyTable
async
¶
copyTable(table, remote)
Use DBLINK to copy a table from the Tasking Manager database to a local table so JOINing is much faster.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
table |
str
|
The table to copy |
required |
Source code in tm_admin/dbsupport.py
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 |
|
main
async
¶
main()
This main function lets this class be run standalone by a bash script.
Source code in tm_admin/dbsupport.py
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 |
|
options: show_source: false heading_level: 3
generator.py¶
Generator ¶
Generator(filespec=None)
Bases: object
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filespec |
str
|
The config file to use as source. |
None
|
Returns:
Type | Description |
---|---|
Generator
|
An instance of this class |
Source code in tm_admin/generator.py
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 |
|
readConfig ¶
readConfig(filespec)
Reads in the YAML config file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filespec |
str
|
The config file to use as source. |
required |
Source code in tm_admin/generator.py
82 83 84 85 86 87 88 89 90 91 92 |
|
createTypes ¶
createTypes()
Creates the enum files, which need to be done first, since the other generated files reference these.
Source code in tm_admin/generator.py
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
|
createSQLEnums ¶
createSQLEnums()
Create an input file for postgres of the custom types.
Returns:
Type | Description |
---|---|
str
|
The source for postgres to create the SQL types. |
Source code in tm_admin/generator.py
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
|
createProtoEnums ¶
createProtoEnums()
Create an input file for postgres of the custom types.
Returns:
Type | Description |
---|---|
str
|
The source for protoc to create the Protobuf types. |
Source code in tm_admin/generator.py
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
|
createPyEnums ¶
createPyEnums()
Create an input file for python of the custom types.
Returns:
Type | Description |
---|---|
str
|
The source for python to create the enums. |
Source code in tm_admin/generator.py
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
|
createPyMessage ¶
createPyMessage()
Creates a python class wrapper for protobuf.
Returns:
Type | Description |
---|---|
str
|
The source for python to create the class stubs. |
Source code in tm_admin/generator.py
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 |
|
createPyClass ¶
createPyClass()
Creates a python class wrapper for the protobuf messages.
Returns:
Type | Description |
---|---|
str
|
The source for python to create the class stubs. |
Source code in tm_admin/generator.py
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 274 275 276 277 278 279 280 281 |
|
createProtoMessage ¶
createProtoMessage()
Create the source for a protobuf message
Returns:
Type | Description |
---|---|
list
|
The protobuf message source. |
Source code in tm_admin/generator.py
283 284 285 286 287 288 289 290 291 292 |
|
createSQLTable ¶
createSQLTable()
Create the source for an SQL table.
Returns:
Type | Description |
---|---|
str
|
The protobuf message source. |
Source code in tm_admin/generator.py
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 |
|
main ¶
main()
This main function lets this class be run standalone by a bash script.
Source code in tm_admin/generator.py
382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 |
|
options: show_source: false heading_level: 3
proto.py¶
ProtoBuf ¶
ProtoBuf(sqlfile=None)
Bases: object
Returns:
Type | Description |
---|---|
ProtoBuf
|
An instance of this class |
Source code in tm_admin/proto.py
35 36 37 38 39 40 41 42 43 44 |
|
createEnumProto ¶
createEnumProto(enums)
Process a list of enums into the protobuf version.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
enums |
dict
|
The list of tables to generate a protobuf for. |
required |
Returns:
Type | Description |
---|---|
list
|
The list of enums in protobuf format |
Source code in tm_admin/proto.py
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
|
createTableProto ¶
createTableProto(tables)
Process a list of tables into the protobuf version.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tables |
list
|
The list of tables to generate a protobuf for. |
required |
Returns:
Type | Description |
---|---|
list
|
The list of tables in protobuf format |
Source code in tm_admin/proto.py
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 |
|
main ¶
main()
This main function lets this class be run standalone by a bash script.
Source code in tm_admin/proto.py
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 |
|
options: show_source: false heading_level: 3
tmserver.py¶
TMServer ¶
TMServer(target)
Bases: object
Parameters:
Name | Type | Description | Default |
---|---|---|---|
target |
str
|
The name of the target program |
required |
Returns:
Type | Description |
---|---|
TMServer
|
An instance of this class |
Source code in tm_admin/tmserver.py
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 |
|
getTarget ¶
getTarget(target)
Get the target hostname and IP port number
Parameters:
Name | Type | Description | Default |
---|---|---|---|
target |
str
|
The name of the target program |
required |
Returns:
Type | Description |
---|---|
dict
|
the hostname and IP port for this target program |
Source code in tm_admin/tmserver.py
262 263 264 265 266 267 268 269 270 271 272 273 274 |
|
main ¶
main()
This main function lets this class be run standalone by a bash script.
Source code in tm_admin/tmserver.py
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 |
|
options: show_source: false heading_level: 3
tmclient.py¶
TMClient ¶
TMClient(target)
Bases: object
Parameters:
Name | Type | Description | Default |
---|---|---|---|
target |
str
|
The name of the target program |
required |
Returns:
Type | Description |
---|---|
TMClient
|
An instance of this class |
Source code in tm_admin/tmclient.py
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
|
sendUserProfile ¶
sendUserProfile(msg)
Send data to the target program
Parameters:
Name | Type | Description | Default |
---|---|---|---|
msg |
str
|
The message to send |
required |
Returns:
Type | Description |
---|---|
dict
|
The response from the server |
Source code in tm_admin/tmclient.py
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 |
|
getTarget ¶
getTarget(target)
Get the target hostname and IP port number
Parameters:
Name | Type | Description | Default |
---|---|---|---|
target |
str
|
The name of the target program |
required |
Returns:
Type | Description |
---|---|
dict
|
the hostname and IP port for this target program |
Source code in tm_admin/tmclient.py
97 98 99 100 101 102 103 104 105 106 107 108 109 |
|
main ¶
main()
This main function lets this class be run standalone by a bash script.
Source code in tm_admin/tmclient.py
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 |
|
options: show_source: false heading_level: 3