|
@@ -0,0 +1,122 @@
|
|
|
+import asyncio
|
|
|
+import asyncpg
|
|
|
+import os
|
|
|
+import responder
|
|
|
+import jinja2
|
|
|
+from random import randint
|
|
|
+from operator import itemgetter
|
|
|
+
|
|
|
+
|
|
|
+READ_ROW_SQL = 'SELECT "randomnumber" FROM "world" WHERE id = $1'
|
|
|
+WRITE_ROW_SQL = 'UPDATE "world" SET "randomnumber"=$1 WHERE id=$2'
|
|
|
+ADDITIONAL_ROW = [0, 'Additional fortune added at request time.']
|
|
|
+
|
|
|
+
|
|
|
+async def setup_database():
|
|
|
+ global connection_pool
|
|
|
+ connection_pool = await asyncpg.create_pool(
|
|
|
+ user=os.getenv('PGUSER', 'benchmarkdbuser'),
|
|
|
+ password=os.getenv('PGPASS', 'benchmarkdbpass'),
|
|
|
+ database='hello_world',
|
|
|
+ host='tfb-database',
|
|
|
+ port=5432
|
|
|
+ )
|
|
|
+
|
|
|
+
|
|
|
+def load_fortunes_template():
|
|
|
+ path = os.path.join('templates', 'fortune.html')
|
|
|
+ with open(path, 'r') as template_file:
|
|
|
+ template_text = template_file.read()
|
|
|
+ return jinja2.Template(template_text)
|
|
|
+
|
|
|
+
|
|
|
+def get_num_queries(request):
|
|
|
+ try:
|
|
|
+ query_string = request.params['queries']
|
|
|
+ query_count = int(query_string)
|
|
|
+ except (KeyError, IndexError, ValueError):
|
|
|
+ return 1
|
|
|
+
|
|
|
+ if query_count < 1:
|
|
|
+ return 1
|
|
|
+ if query_count > 500:
|
|
|
+ return 500
|
|
|
+ return query_count
|
|
|
+
|
|
|
+
|
|
|
+connection_pool = None
|
|
|
+sort_fortunes_key = itemgetter(1)
|
|
|
+template = load_fortunes_template()
|
|
|
+loop = asyncio.get_event_loop()
|
|
|
+loop.run_until_complete(setup_database())
|
|
|
+
|
|
|
+
|
|
|
+app = responder.API()
|
|
|
+
|
|
|
+
|
|
|
[email protected]('/json')
|
|
|
+def json_serialization(req, resp):
|
|
|
+ resp.media = {'message': 'Hello, world!'}
|
|
|
+
|
|
|
+
|
|
|
[email protected]('/db')
|
|
|
+async def single_database_query(req, resp):
|
|
|
+ row_id = randint(1, 10000)
|
|
|
+
|
|
|
+ async with connection_pool.acquire() as connection:
|
|
|
+ number = await connection.fetchval(READ_ROW_SQL, row_id)
|
|
|
+
|
|
|
+ resp.media = {'id': row_id, 'randomNumber': number}
|
|
|
+
|
|
|
+
|
|
|
[email protected]('/queries')
|
|
|
+async def multiple_database_queries(req, resp):
|
|
|
+ num_queries = get_num_queries(req)
|
|
|
+ row_ids = [randint(1, 10000) for _ in range(num_queries)]
|
|
|
+ worlds = []
|
|
|
+
|
|
|
+ async with connection_pool.acquire() as connection:
|
|
|
+ statement = await connection.prepare(READ_ROW_SQL)
|
|
|
+ for row_id in row_ids:
|
|
|
+ number = await statement.fetchval(row_id)
|
|
|
+ worlds.append({'id': row_id, 'randomNumber': number})
|
|
|
+
|
|
|
+ resp.media = worlds
|
|
|
+
|
|
|
+
|
|
|
[email protected]('/fortunes')
|
|
|
+async def fortunes(req, resp):
|
|
|
+ fortune_list = []
|
|
|
+ async with connection_pool.acquire() as connection:
|
|
|
+ fortune_list = await connection.fetch('SELECT * FROM Fortune')
|
|
|
+
|
|
|
+ fortune_list.append(ADDITIONAL_ROW)
|
|
|
+ fortune_list.sort(key=sort_fortunes_key)
|
|
|
+ resp.headers['Content-Type'] = "text/html;charset=utf-8"
|
|
|
+ resp.content = template.render(fortunes=fortune_list)
|
|
|
+
|
|
|
+
|
|
|
[email protected]('/updates')
|
|
|
+async def database_updates(req, resp):
|
|
|
+ num_queries = get_num_queries(req)
|
|
|
+ updates = [(randint(1, 10000), randint(1, 10000)) for _ in range(num_queries)]
|
|
|
+ worlds = [{'id': row_id, 'randomNumber': number} for row_id, number in updates]
|
|
|
+
|
|
|
+ async with connection_pool.acquire() as connection:
|
|
|
+ statement = await connection.prepare(READ_ROW_SQL)
|
|
|
+ for row_id, number in updates:
|
|
|
+ await statement.fetchval(row_id)
|
|
|
+ await connection.executemany(WRITE_ROW_SQL, updates)
|
|
|
+
|
|
|
+ resp.media = worlds
|
|
|
+
|
|
|
+
|
|
|
[email protected]('/plaintext')
|
|
|
+def plaintext(req, resp):
|
|
|
+ resp.headers['Content-Type'] = "text/plain"
|
|
|
+ resp.text = "Hello, world!"
|
|
|
+
|
|
|
+"""
|
|
|
+if __name__ == '__main__':
|
|
|
+ app.run()
|
|
|
+"""
|