Files
@ edf46615712a
Branch filter:
Location: light9/bin/effecteval
edf46615712a
9.5 KiB
text/plain
don't write extra precision in curve data. keep curvecalc rows sorted
Ignore-this: 71794339abfd347ccd3c0d99be635457
Ignore-this: 71794339abfd347ccd3c0d99be635457
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 | #!bin/python
from run_local import log
from twisted.internet import reactor, task
from twisted.internet.defer import inlineCallbacks
import cyclone.web, cyclone.websocket, cyclone.httpclient
import sys, optparse, logging, subprocess, json, re, time, traceback
from rdflib import URIRef, RDF, Literal
sys.path.append(".")
from light9 import networking, showconfig, Submaster, dmxclient
from light9.rdfdb.syncedgraph import SyncedGraph
from light9.curvecalc.curve import Curve
from light9.namespaces import L9, DCTERMS, RDF
from light9.rdfdb.patch import Patch
sys.path.append("/my/proj/homeauto/lib")
sys.path.append("/home/drewp/projects/homeauto/lib")
from cycloneerr import PrettyErrorHandler
class EffectEdit(cyclone.web.RequestHandler):
def get(self):
self.write(open("light9/effecteval/effect.html").read())
class SongEffects(PrettyErrorHandler, cyclone.web.RequestHandler):
def post(self):
song = URIRef(self.get_argument('uri'))
drop = URIRef(self.get_argument('drop'))
ctx = song
now = time.time()
effect = song + "/effect/e-%f" % now
curve = song + "/curve/c-%f" % now
self.settings.graph.patch(Patch(addQuads=[
(song, L9['effect'], effect, ctx),
(effect, RDF.type, L9['Effect'], ctx),
(effect, L9['code'],
Literal('out = sub(%s, intensity=%s)' % (drop.n3(), curve.n3())),
ctx),
(curve, RDF.type, L9['Curve'], ctx),
(curve, L9['points'], Literal('0 0'), ctx),
]))
class SongEffectsUpdates(cyclone.websocket.WebSocketHandler):
def connectionMade(self, *args, **kwargs):
self.graph = self.settings.graph
self.graph.addHandler(self.updateClient)
def updateClient(self):
# todo: abort if client is gone
playlist = self.graph.value(showconfig.showUri(), L9['playList'])
songs = list(self.graph.items(playlist))
out = []
for s in songs:
out.append({'uri': s, 'label': self.graph.label(s)})
out[-1]['effects'] = sorted(self.graph.objects(s, L9['effect']))
self.sendMessage({'songs': out})
class EffectUpdates(cyclone.websocket.WebSocketHandler):
"""
stays alive for the life of the effect page
"""
def connectionMade(self, *args, **kwargs):
log.info("websocket opened")
self.uri = URIRef(self.get_argument('uri'))
self.sendMessage({'hello': repr(self)})
self.graph = self.settings.graph
self.graph.addHandler(self.updateClient)
def updateClient(self):
# todo: if client has dropped, abort and don't get any more
# graph updates
self.sendMessage({'code': self.graph.value(self.uri, L9['code'])})
def connectionLost(self, reason):
log.info("websocket closed")
def messageReceived(self, message):
log.info("got message %s" % message)
# write a patch back to the graph
def uriFromCode(s):
# i thought this was something a graph could do with its namespace manager
if s.startswith('sub:'):
return URIRef('http://light9.bigasterisk.com/show/dance2014/sub/' + s[4:])
if s.startswith('song1:'):
return URIRef('http://ex/effect/song1/' + s[6:])
if (s[0], s[-1]) == ('<', '>'):
return URIRef(s[1:-1])
raise NotImplementedError
class EffectNode(object):
def __init__(self, graph, uri):
self.graph, self.uri = graph, uri
self.graph.addHandler(self.prepare)
def prepare(self):
self.code = self.graph.value(self.uri, L9['code'])
m = re.match(r'^out = sub\((.*?), intensity=(.*?)\)', self.code)
if not m:
raise NotImplementedError
subUri = uriFromCode(m.group(1))
subs = Submaster.get_global_submasters(self.graph)
self.sub = subs.get_sub_by_uri(subUri)
intensityCurve = uriFromCode(m.group(2))
self.curve = Curve()
# read from disk ok? how do we know to reread? start with
# mtime. the mtime check could be done occasionally so on
# average we read at most one curve's mtime per effectLoop.
pts = self.graph.value(intensityCurve, L9['points'])
if pts is None:
log.info("curve %r has no points" % intensityCurve)
else:
self.curve.set_from_string(pts)
def eval(self, songTime):
# consider http://waxeye.org/ for a parser that can be used in py and js
level = self.curve.eval(songTime)
scaledSubs = self.sub * level
return scaledSubs
class EffectEval(PrettyErrorHandler, cyclone.web.RequestHandler):
@inlineCallbacks
def get(self):
# return dmx list for that effect
uri = URIRef(self.get_argument('uri'))
response = yield cyclone.httpclient.fetch(
networking.musicPlayer.path('time'))
songTime = json.loads(response.body)['t']
node = EffectNode(self.settings.graph, uri)
outSub = node.eval(songTime)
self.write(json.dumps(outSub.get_dmx_list()))
# Completely not sure where the effect background loop should
# go. Another process could own it, and get this request repeatedly:
class SongEffectsEval(PrettyErrorHandler, cyclone.web.RequestHandler):
def get(self):
song = URIRef(self.get_argument('song'))
effects = effectsForSong(self.settings.graph, song)
raise NotImplementedError
self.write(maxDict(effectDmxDict(e) for e in effects))
# return dmx dict for all effects in the song, already combined
# Or, we could own that loop, like this:
@inlineCallbacks
def effectLoop(graph):
t1 = time.time()
try:
response = json.loads((yield cyclone.httpclient.fetch(
networking.musicPlayer.path('time'))).body)
if response['song'] is not None:
song = URIRef(response['song'])
songTime = response['t']
# Possibilities to make this shut up about graph copies:
# - implement the cheap readonly currentState response
# - do multiple little currentState calls (in this code) over just
# the required triples
# - use addHandler instead and only fire dmx when there is a data
# change (and also somehow call it when there is a time change)
outSubs = []
with graph.currentState(tripleFilter=(song, L9['effect'], None)) as g:
for effectUri in g.objects(song, L9['effect']):
# these should be built once, not per (frequent) update
node = EffectNode(graph, effectUri)
outSubs.append(node.eval(songTime))
out = Submaster.sub_maxes(*outSubs)
# out.get_levels() for a more readable view
dmx = out.get_dmx_list()
if log.isEnabledFor(logging.DEBUG):
log.debug("send dmx: %r", out.get_levels())
yield dmxclient.outputlevels(dmx, twisted=True)
except Exception:
traceback.print_exc()
time.sleep(1)
loopTime = time.time() - t1
log.debug('loopTime %.1f ms', 1000 * loopTime)
class App(object):
def __init__(self, show):
self.show = show
self.graph = SyncedGraph("effectEval")
self.graph.initiallySynced.addCallback(self.launch)
def launch(self, *args):
task.LoopingCall(effectLoop, self.graph).start(1)
SFH = cyclone.web.StaticFileHandler
self.cycloneApp = cyclone.web.Application(handlers=[
(r'/()', SFH,
{'path': 'light9/effecteval', 'default_filename': 'index.html'}),
(r'/effect', EffectEdit),
(r'/(websocket\.js)', SFH, {'path': 'light9/rdfdb/web/'}),
(r'/effect\.js', StaticCoffee, {'src': 'light9/effecteval/effect.coffee'}),
(r'/index\.js', StaticCoffee, {'src': 'light9/effecteval/index.coffee'}),
(r'/effectUpdates', EffectUpdates),
(r'/songEffectsUpdates', SongEffectsUpdates),
(r'/static/(.*)', SFH, {'path': 'static/'}),
(r'/effect/eval', EffectEval),
(r'/songEffects', SongEffects),
(r'/songEffects/eval', SongEffectsEval),
], debug=True, graph=self.graph)
reactor.listenTCP(networking.effectEval.port, self.cycloneApp)
log.info("listening on %s" % networking.effectEval.port)
class StaticCoffee(PrettyErrorHandler, cyclone.web.RequestHandler):
def initialize(self, src):
super(StaticCoffee, self).initialize()
self.src = src
def get(self):
self.set_header('Content-Type', 'application/javascript')
self.write(subprocess.check_output([
'/usr/bin/coffee', '--compile', '--print', self.src]))
if __name__ == "__main__":
parser = optparse.OptionParser()
parser.add_option('--show',
help='show URI, like http://light9.bigasterisk.com/show/dance2008',
default=showconfig.showUri())
parser.add_option("-v", "--verbose", action="store_true",
help="logging.DEBUG")
parser.add_option("--twistedlog", action="store_true",
help="twisted logging")
(options, args) = parser.parse_args()
log.setLevel(logging.DEBUG if options.verbose else logging.INFO)
if not options.show:
raise ValueError("missing --show http://...")
app = App(URIRef(options.show))
if options.twistedlog:
from twisted.python import log as twlog
twlog.startLogging(sys.stderr)
reactor.run()
|