summaryrefslogtreecommitdiffstats
path: root/scripts/automation/trex_control_plane/common/rpc_defaults.yaml
blob: 9325a0e418393983e28637584cbb4f7c13487662 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
63
64
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
115
116
117
118
119
120
121
122
123
124
##############################################################
####         TRex RPC stream list default values          ####
##############################################################

# this document is based on TRex RPC server spec and its fields:
# http://trex-tgn.cisco.com/trex/doc/trex_rpc_server_spec.html

### HOW TO READ THIS FILE
# 1. Each key represents an object type
# 2. Each value can be either a value field or another object
# 2.1. If a value field, read as:
#      + type: type of field
#      + has_default: if the value has any default
#      + default: the default value (Only appears if has_default field is 'YES')
# 2.2. If an object type, jump to corresponding object key.
# 3. If an object has more than one instance type, another layer with the type shall be added.
#    For example, 'mode' object has 3 types: 'continuous', 'single_burst', 'multi_burst'
#    So, 3 mode objects will be defined, named: 
#    - mode['continuous']
#    - mode['single_burst']
#    - mode['multi_burst']
#    In this case, there's no default for the 'type' field on the object
# 4. Some values has 'multiply' property attached.
#    In such case, the loaded value will be multiplied by the multiplier
#    For example, if the mode's 'pps' field value is 10, and its multiplier is 5,
#    the loaded pps value will be 10*5=50
# 5. Any object type must be listed by the user, even if all its field are defaults.
#    The most basic option would be to declare the object with "[]", which stands for empty object in YAML syntax.


stream:
  enabled:
    type: boolean
    has_default: YES
    default: True
  self_start:
    type: boolean
    has_default: YES
    default: True
  isg:
    type: [int, double, string]
    has_default: YES
    default: 0.0
  next_stream_id:
    type: string   # string to allow naming binding
    has_default: YES
    default: -1  # no next streams
  packet:
    type: object
  mode:
    type: object
  vm:
    type: object
  rx_stats:
    type: object

packet:
  binary:
    type: [array,string]
    has_default: NO
  meta:
    type: string
    has_default: YES
    default: ""

mode:
  continuous:
    pps:
      type: [int, double]
      has_default: NO
      multiply: YES
  single_burst:
    pps:
      type: [int, double]
      has_default: NO
      multiply: YES
    total_pkts:
      type: int
      has_default: NO
  multi_burst:
    pps:
      type: [int, double]
      has_default: NO
      multiply: YES
    pkts_per_burst:
      type: int
      has_default: NO
    ibg:
      type: [int, double, string]
      has_default: YES
      default: 100.0
    count:
      type: int
      has_default: YES
      default: 0  # loop forever

rx_stats:
  enabled:
    type: boolean
    has_default: YES
    default: False
  stream_id:
    type: string
    has_default: YES
    default: False  # use related stream_id
  seq_enabled:
    type: boolean
    has_default: YES
    default: False
  latency_enabled:
    type: boolean
    has_default: YES
    default: False

vm:
  instructions:
    type: array
    has_default: YES
    default: [] 
  split_by_var:
    type: string
    has_default: YES
    default: ""