recorder
GameRecordFileHandler
#
Bases: RotatingFileHandler
Log handler specific to the game recorder, using record filenames with timestamps defined at the creation of the log file.
Source code in cogip/tools/server/recorder.py
14 15 16 17 18 19 20 21 22 23 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 |
|
__init__(root_dir='/var/tmp/cogip', backupCount=20)
#
Class constructor
Source code in cogip/tools/server/recorder.py
20 21 22 23 24 25 26 27 28 29 30 31 |
|
doRollover()
#
Create a new record file and clean-up old files.
Source code in cogip/tools/server/recorder.py
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
|
newBaseFilename()
#
Create a log filename based on current time.
Source code in cogip/tools/server/recorder.py
33 34 35 36 37 38 39 |
|
GameRecorder
#
Source code in cogip/tools/server/recorder.py
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 |
|
async_do_rollover()
async
#
Async version of record()
.
Source code in cogip/tools/server/recorder.py
110 111 112 113 114 |
|
async_record(record)
async
#
Async version of record()
.
Source code in cogip/tools/server/recorder.py
97 98 99 100 101 |
|
do_rollover()
#
Switch to a new record file.
Source code in cogip/tools/server/recorder.py
103 104 105 106 107 108 |
|
record(record)
#
Write a record in the current record file. Do it only the the robot the game has started.
Source code in cogip/tools/server/recorder.py
89 90 91 92 93 94 95 |
|