-
Notifications
You must be signed in to change notification settings - Fork 0
/
__main__.py
287 lines (255 loc) · 8.85 KB
/
__main__.py
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
import sys
import click
import termcolor
import logging
import code
import requests
import multiprocessing
import time
import traceback
from typing import Optional, List
from fruition.api.meta.helpers import MetaFactory, MetaService
from fruition.util.log import (
logger,
LevelUnifiedLoggingContext,
DebugUnifiedLoggingContext,
ConfigurationLoggingContext,
)
from fruition.util.files import load_json
class MetaServerProcess(multiprocessing.Process):
def __init__(self, service: MetaService) -> None:
super(MetaServerProcess, self).__init__()
self.service = service
self.name = self.service.name
def run(self) -> None:
self.service.serve()
@click.group(name="fruition")
def main() -> None:
"""
Fruition Framework command-line tools.
"""
pass
@main.command(short_help="Start a server based on configuration.")
@click.argument("configuration")
@click.option(
"--debug", is_flag=True, help="Turn on debug unified logging.", default=False
)
@click.option(
"--interactive",
is_flag=True,
help="After instantiation, enter an interactive console instead of serving.",
default=False,
)
def server(configuration: str, debug: bool = False, interactive: bool = False) -> None:
"""
Starts a server, synchronously, using a configuration file.
The configuration file format is specified by its extension (.yml/.yaml being YAML, .json being JSON). No other formats are accepted.
"""
factory = MetaFactory.from_file(configuration)
if debug:
context = DebugUnifiedLoggingContext()
else:
context = ConfigurationLoggingContext(factory.api_configuration) # type: ignore
with context:
service = factory("server")
if interactive:
print(
termcolor.colored(
"Entering console. Use global object 'server' as instantiated server.",
"cyan",
)
)
code.interact(local={"server": service.instance})
else:
try:
service.serve()
finally:
service.destroy()
@main.command(short_help="Start multiple servers based on configurations.")
@click.argument("configuration", nargs=-1)
@click.option(
"--debug", is_flag=True, help="Turn on debug unified logging.", default=False
)
def servers(configuration: List[str], debug: bool = False) -> None:
"""
Starts servers, synchronously, using a configuration file.
All servers will be ran at the same time, and stopped at the same time.
If any server errors, all will be stopped.
The configuration file format is specified by its extension (.yml/.yaml being YAML, .json being JSON). No other formats are accepted.
"""
services: List[MetaServerProcess] = []
for config in configuration:
factory = MetaFactory.from_file(config)
meta_service = factory("server")
services.append(MetaServerProcess(meta_service))
if debug:
context = DebugUnifiedLoggingContext()
else:
context = ConfigurationLoggingContext(factory.api_configuration) # type: ignore
with context:
try:
for service in services:
logger.info("Starting {0}".format(service.name))
time.sleep(1)
service.daemon = False
service.start()
while all([service.is_alive() for service in services]):
time.sleep(1)
for service in services:
if not service.is_alive():
logger.error("Service {0} died, exiting.".format(service.name))
except Exception as ex:
logger.error(
"Received exception: {0}({1})".format(type(ex).__name__, str(ex))
)
logger.debug(traceback.format_exc())
finally:
for service in services:
logger.info("Stopping {0}".format(service.name))
service.terminate()
@main.command(short_help="Start a client based on configuration.")
@click.argument("configuration")
@click.option(
"-c",
"--command",
help="A command to execute. If passed, will not be interactive.",
default=None,
)
@click.option(
"-a",
"--arg",
help="Arguments to pass into the command specified by -c.",
multiple=True,
)
@click.option(
"-j",
"--json",
help="JSON Formatted keyword arugments to pass into the command specifid by -c.",
default=None,
)
@click.option(
"-w",
"--wrapper",
help="Whether or not to use an AWS Lambda wrapper.",
is_flag=True,
default=False,
)
@click.option(
"--long/--short",
help="Truncate or don't truncate responses from commands.",
default=False,
)
@click.option(
"--debug", is_flag=True, help="Turn on debug unified logging.", default=False
)
def client(
configuration: str,
command: Optional[str] = None,
arg: Optional[List[str]] = None,
json: Optional[str] = None,
wrapper: bool = False,
long: bool = False,
debug: bool = False,
) -> None:
"""
Initiates a client from a configuration file.
The configuration file format is specified by its extension (.yml/.yaml being YAML, .json being JSON). No other formats are accepted.
Use -c/--command to pass a command into the client after instantiation. See -h/--help for other options concerning command usage. Not passing in a command will enter into an interactive shell.
"""
factory = MetaFactory.from_file(configuration)
if wrapper:
wrapper_path = (
"fruition.api.client.webservice.wrapper.WebServiceAPILambdaClientWrapper"
)
if (
wrapper_path
not in factory.configuration["configuration"]["client"]["classes"]
):
factory.configuration["configuration"]["client"]["classes"].append(
wrapper_path
)
if debug:
context = DebugUnifiedLoggingContext()
else:
context = ConfigurationLoggingContext(factory.api_configuration) # type: ignore
with context:
client = factory("client")
if command is not None:
if json is not None:
kwargs = load_json(json)
else:
kwargs = {}
args = tuple() if arg is None else arg
if type(kwargs) is not dict:
print(
termcolor.colored(
"JSON doesn't evaluate to an object; it's best if you use a mapping. Passing this as 'value'.",
"yellow",
)
)
kwargs = {"value": kwargs}
response = client(command, *args, **kwargs)
if isinstance(response, requests.Response):
print(
termcolor.colored("HTTP {0}".format(response.status_code), "green")
)
response = response.text
if not long:
response = response.splitlines()
total_lines = len(response)
print(termcolor.colored("\n".join(response[:10]), "cyan"))
if total_lines > 10:
print(
"...and {0} more lines (use --long to not truncate.)".format(
total_lines - 10
)
)
else:
print(termcolor.colored(response, "cyan"))
else:
print(response)
else:
print(
termcolor.colored(
"Entering console. Use global object 'client' as instantiated client.",
"cyan",
)
)
code.interact(local={"client": client})
@main.command(short_help="Generates a thumbnail of most kinds of files.")
@click.argument("input")
@click.argument("output")
@click.option(
"--debug", is_flag=True, help="Turn on debug unified logging.", default=False
)
@click.option(
"--trim", is_flag=True, help="Trim whitespace around the result.", default=False
)
@click.option(
"-w", "--width", help="The width of the thumbnail. Defaults to 128.", default=128
)
@click.option(
"-h", "--height", help="The height of the thumbnail. Defaults to 128.", default=128
)
def thumbnail(
input: str,
output: str,
debug: bool = False,
trim: bool = False,
width: int = 128,
height: int = 128,
) -> None:
"""
Builds a thumbnail from an input path.
"""
with LevelUnifiedLoggingContext(logging.DEBUG if debug else logging.WARNING):
from fruition.media.thumbnail import ThumbnailBuilder
ThumbnailBuilder(input).build(output, width, height, trim=trim)
try:
main()
except Exception as ex:
print(termcolor.colored(str(ex), "red"))
if "--debug" in sys.argv:
print(termcolor.colored(traceback.format_exc(), "red"))
sys.exit(5)
sys.exit(0)