You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
3.2 KiB
70 lines
3.2 KiB
#!/usr/bin/env python3 |
|
|
|
# MIT License |
|
# |
|
# Copyright (c) 2021 Eugenio Parodi <ceccopierangiolieugenio AT googlemail DOT com> |
|
# |
|
# Permission is hereby granted, free of charge, to any person obtaining a copy |
|
# of this software and associated documentation files (the "Software"), to deal |
|
# in the Software without restriction, including without limitation the rights |
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
# copies of the Software, and to permit persons to whom the Software is |
|
# furnished to do so, subject to the following conditions: |
|
# |
|
# The above copyright notice and this permission notice shall be included in all |
|
# copies or substantial portions of the Software. |
|
# |
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
|
# SOFTWARE. |
|
|
|
import sys |
|
import random, json |
|
|
|
words = ["Lorem", "ipsum", "dolor", "sit", "amet,", "consectetur", "adipiscing", "elit,", "sed", "do", "eiusmod", "tempor", "incididunt", "ut", "labore", "et", "dolore", "magna", "aliqua.", "Ut", "enim", "ad", "minim", "veniam,", "quis", "nostrud", "exercitation", "ullamco", "laboris", "nisi", "ut", "aliquip", "ex", "ea", "commodo", "consequat.", "Duis", "aute", "irure", "dolor", "in", "reprehenderit", "in", "voluptate", "velit", "esse", "cillum", "dolore", "eu", "fugiat", "nulla", "pariatur.", "Excepteur", "sint", "occaecat", "cupidatat", "non", "proident,", "sunt", "in", "culpa", "qui", "officia", "deserunt", "mollit", "anim", "id", "est", "laborum."] |
|
def getWord(): |
|
return random.choice(words) |
|
def getSentence(a,b): |
|
return " ".join([getWord() for i in range(0,random.randint(a,b))]) |
|
|
|
|
|
if len(sys.argv) != 3 : |
|
print ("Missing filename") |
|
print ("use %s <FILENAME> <LINES>" % sys.argv[0]) |
|
exit(1) |
|
|
|
filename = sys.argv[1] |
|
lines = int(sys.argv[2]) |
|
print ("Lines=%d" % lines) |
|
|
|
with open(filename, 'a') as out: |
|
for i in range(0,lines): |
|
seconds = 1000 + i |
|
m, s = divmod(seconds, 60) |
|
h, m = divmod(m, 60) |
|
if ((rnd:=random.random()) < 0.6): |
|
out.write( "TEST;%d:%02d:%02d;COL1\tCOL2 COL3 c:COL4;LIN=%05X\tRND=%f %s %s\n" % (h, m, s, i, random.random(), getSentence(3,20), " Fill" * random.randint(1,5)) ) |
|
elif (rnd < 0.9): |
|
jsonLine = { |
|
'time':f"{h:02d}:{m:02d}:{s:02d}", |
|
'line':i, |
|
'data':{ |
|
'rnd':random.random(), |
|
'sentence1':getSentence(3,6), |
|
'sentence2':getSentence(3,6), |
|
'sentence3':getSentence(3,6), |
|
'sentence4':getSentence(3,6)}, |
|
'extra': { |
|
'text':getSentence(3,10), |
|
'list':[getSentence(1,2) for _ in range(random.randint(2,7))], |
|
'list2':[random.randint(2,128) for _ in range(random.randint(2,7))], |
|
'fill':" Fill" * random.randint(1,5) |
|
} } |
|
out.write( json.dumps(jsonLine) + '\n') |
|
else: |
|
out.write( "TEST;%d:%02d:%02d;COL1 --- (BROKEN LINE) --- LIN=%05X\tRND=%f %s %s\n" % (h, m, s, i, random.random(), getSentence(3,20), " Fill" * random.randint(1,5)) ) |
|
out.write( " END LINE (No Newline)" )
|
|
|