-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathserver_demo.py
38 lines (33 loc) · 1.22 KB
/
server_demo.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
# -*- coding: utf-8 -*-
"""a demo to run houdini server
Author : Maajor
Email : info@ma-yidong.com
"""
import os, time, datetime
from flask import Flask, request, send_file
import pyhapi as ph
app = Flask(__name__)
@ph.HSessionTask
async def session_task(session : ph.HSession, filename, seed):
hda_asset = ph.HAsset(session, "hda/save_cube.hda")
asset_node = hda_asset.instantiate(node_name="cube")
asset_node.set_param_value("filename", "{0}".format(filename))
asset_node.set_param_value("seed", seed)
await asset_node.press_button_async("execute", status_report_interval=0.1)
@app.route('/sample', methods=['POST'])
def sample():
try:
seed = request.json['seed']
filename = datetime.datetime.now().strftime("%m%d%Y%H%M%S")
fut = ph.HSessionManager.get_or_create_session_pool().enqueue_task(session_task, filename, seed)
while not fut.done():
time.sleep(0.1)
return send_file("{0}.obj".format(filename))
except Exception as e:
print(e)
def main():
session_pool = ph.HSessionManager.get_or_create_session_pool()
session_pool.run_task_consumer_on_background()
app.run(threaded=True, host='127.0.0.1')
if __name__ == "__main__":
main()