about summary refs log tree commit diff
path: root/users/wpcarro/scratch/facebook/breakfast-generator.py
blob: df9b5015ad3ae512d774589f171a6e8c7ae86025 (plain) (blame)
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
# After being inspired by...
# craftinginterpreters.com/representing-code.html
# ...I'm implementing the breakfast generator that the author describes
# therein.

import random
import string

# Breakfast

def breakfast():
    fn = random.choice([
        lambda: " ".join([protein(), "with", breakfast(), "on the side"]),
        lambda: protein(),
        lambda: bread(),
    ])
    return fn()

def protein():
    fn = random.choice([
        lambda: " ".join([qualifier(), "crispy", "bacon"]),
        lambda: "sausage",
        lambda: " ".join([cooking_method(), "sausage"]),
    ])
    return fn()

def qualifier():
    fn = random.choice([
        lambda: "really",
        lambda: "super",
        lambda: " ".join(["really", qualifier()]),
    ])
    return fn()

def cooking_method():
    return random.choice([
        "scrambled",
        "poached",
        "fried",
    ])

def bread():
    return random.choice([
        "toast",
        "biscuits",
        "English muffin",
    ])

print(breakfast())

# Expression Language

# Because Python is a strictly evaluated language any functions that are
# mutually recursive won't terminate and will overflow our stack. Therefore, any
# non-terminals expressed in an alternative are wrapped in lambdas as thunks.

def expression():
    fn = random.choice([
        lambda: literal(),
        lambda: binary(),
    ])
    return fn()

def literal():
    return str(random.randint(0, 100))

def binary():
    return " ".join([expression(), operator(), expression()])

def operator():
    return random.choice(["+", "*"])

print(expression())

# Lox

def lox_expression():
    fn = random.choice([
        lambda: lox_literal(),
        lambda: lox_unary(),
        lambda: lox_binary(),
        lambda: lox_grouping(),
    ])
    return fn()

def lox_literal():
    fn = random.choice([
        lambda: str(random.randint(0, 100)),
        lambda: lox_string(),
        lambda: random.choice(["true", "false"]),
        lambda: "nil",
    ])
    return fn()

def lox_string():
    return "\"{}\"".format(
        "".join(random.choice(string.ascii_lowercase)
                for _ in range(random.randint(0, 25))))

def lox_grouping():
    return "(" + lox_expression() + ")"

def lox_unary():
    return random.choice(["-", "!"]) + lox_expression()

def lox_binary():
    return lox_expression() + lox_operator() + lox_expression()

def lox_operator():
    return random.choice(["==", "!=", "<", "<=", ">", ">=", "+", "-", "*", "/"])

print(lox_expression())