Project

General

Profile

Command Line Options » History » Version 10

Sergey Smolov, 05/25/2017 10:21 AM

1 1 Sergey Smolov
h1. Command Line Options
2
3 3 Sergey Smolov
The _Trace Matcher_ command line looks as follows:
4 1 Sergey Smolov
<pre>
5 10 Sergey Smolov
usage: traceutils [-h] [-w [W_SIZE]] [-fds] [-sr] [-d] FILE [FILE ...]
6 4 Sergey Smolov
7
positional arguments:
8
  FILE                  Path to trace file
9
10 6 Sergey Smolov
optional arguments:
11
  -h, --help            show this help message and exit
12
  -w [W_SIZE], --window-size [W_SIZE]
13 1 Sergey Smolov
                        Matching window size in ticks (default: 1)
14 6 Sergey Smolov
  -fds, --first-dif-stop
15 8 Sergey Smolov
                        Stop the tool when the first difference is detected (default: disabled)
16 1 Sergey Smolov
  -sr, --skip-rest      Skips matching for the rest of the longest trace (default: disabled)
17 10 Sergey Smolov
  -d, --debug           Enables printing for debug messages (default: disabled)
18 1 Sergey Smolov
</pre>
19 5 Sergey Smolov
20
The detailed description of command line options is shown below:
21
22
table=.
23 7 Sergey Smolov
{font-style:italic; font-weight:bold; background:#ddd}. |<. Full name | Short name |<. Description | Default value|
24 1 Sergey Smolov
|<. @--help@ | @-h@ |<. Shows help message |-|
25 7 Sergey Smolov
|<. @FILE@ | @FILE@ |<. Path to the trace file|-|
26
|<. @--window-size@ | @-w@ |<. The size of matching window, i.e the size of interval (in ticks) for records matching. | 1 |
27
|<. @--first-dif-stop@ | @-fds@ |<. Stop the tool''s matching process when the first proven difference has been detected. | disabled |
28 1 Sergey Smolov
|<. @--skip-rest@ | @-sr@ |<. Skips the matching\printing process for the rest of the longest trace. | disabled |
29 10 Sergey Smolov
|<. @--debug@ | @-d@ |<. Enables printing for debug messages. | disabled |