| 10 | |
| 11 | == Description == |
| 12 | |
| 13 | A console application that uses the EventBenchCore. It provides a translation layer for Windows MFC applications logged with the [wiki:userlog MFCUsageMonitor] and for replaying with [wiki:MFCReplay MFCReplay]. |
| 14 | |
| 15 | == Exemplary Work-flows == |
| 16 | |
| 17 | Creating a based on monitored sessions: |
| 18 | {{{ |
| 19 | convertToXml logfile.txt log.xml |
| 20 | parseXML log.xml |
| 21 | generateReplayfile replay.xml |
| 22 | }}} |
| 23 | |
| 24 | Creating a randomly generated replay session based on a first-order Markov model: |
| 25 | {{{ |
| 26 | convertToXml logfile.txt log.xml |
| 27 | parseXML log.xml |
| 28 | trainMarkovModel markovModel |
| 29 | generateRandomReplay markovModel replay.xml |
| 30 | }}} |