summaryrefslogtreecommitdiff
path: root/lib/gras_impl
AgeCommit message (Collapse)Author
2013-07-07gras: restore property access w/ jsonJosh Blum
2013-07-05gras: pythonic work on callable interfaceJosh Blum
2013-07-05gras: begin replacing set/get with callableJosh Blum
2013-07-05gras: revert block changes, test w/ callable nowJosh Blum
2013-07-04gras: function registry is more flexibleJosh Blum
2013-07-03gras: use the base class settings calls to cleanup codeJosh Blum
2013-06-22gras: use inline queue for post output bufferJosh Blum
* simplifies logic * fixes bug #103 An assertion fires if multiple post output buffers are used per work(). This could be fixed in the future if its truely needed.
2013-06-20gras: work on goddamn done logicJosh Blum
How blocks mark themselves done has been one of the most annoying things in this development. This done logic is only valuable for QA tests, it doesnt even exist in the practical use case. How it works now: * blocks mark done when sync inputs are done or all inputs are done * removed the force_done input config, its no longer needed * the wait() implementation gives blocks a grace period between an input becoming done and the block itself becoming done. After the grace period, the block is forced done.
2013-06-15gras: dont update item counts until after workJosh Blum
This lets API calls like get_consumed/produced keep their values until after work is called. The propagate tags overload need this to work.
2013-06-12gras: moved debug prints to element base classJosh Blum
2013-06-11gras: added backup for failing clock_gettimeJosh Blum
2013-06-09gras: squashed changes to move buffer consumption to post-workJosh Blum
* post-work overhead now covers posting buffers downstream * tag handler hpp code now inside task main c++ file
2013-06-08gras: query changes from thread query branchJosh Blum
2013-06-06gras: BlockActor factory function w/ serious thread fixJosh Blum
2013-06-06gras: filled in code from top config changesJosh Blum
2013-06-06gras: moved block ptr into dataJosh Blum
2013-06-06gras: changes for actor in worker Apology commitJosh Blum
2013-06-05gras: compiles now with separate data structJosh Blum
2013-06-05gras: separate actor data to struct to aid migrationJosh Blum
2013-06-02props: began filling in pmc to/from ptreeJosh Blum
2013-06-01props: added query functionality to enumerate propertiesJosh Blum
2013-05-27gras: simplify registration object passingJosh Blum
2013-05-11gras: fix assert fail by setting time on fail conditionJosh Blum
2013-05-11gras: make output_buffer_queues match previous logicJosh Blum
2013-05-11gras: added port downtime measurementsJosh Blum
2013-05-06Merge branch 'theron6_work'Josh Blum
2013-05-06gras: leave assertions in, can help more than hurtJosh Blum
2013-05-05query: added bytes copied statJosh Blum
2013-05-05query: added actor depth statJosh Blum
2013-05-05Merge branch 'master' into theron6_workJosh Blum
2013-05-04gras: fix nasty little error possibility when not assertingJosh Blum
2013-05-04gras: implement force done input port optionJosh Blum
fixes #28
2013-04-29quick stashiesJosh Blum
2013-04-27gras: fixed buffer inlining with explicit support in buffer queueJosh Blum
Rather than push the inlined buffer into the BufferQueue, the output buffer queues wrapper explicitly supports holding onto the inlined buffer. This is because BufferQueue overloads generally do a token check so they only accept buffers that they are in charge of. fixes #79
2013-04-27gras: moved flush output to consume function in output queuesJosh Blum
This cleans up some code in block actor. The message sending code is now in task_main, and the consume routine is now the shared one.
2013-04-16gras: enable half consumed metric on pool buffersJosh Blum
2013-04-16gras: isolate this callback to only the source fileJosh Blum
2013-04-15gras: forgotten change from last commitJosh Blum
2013-04-15gras: assign a few more missing UNLIKELYsJosh Blum
2013-04-14Merge branch 'benchmark_work'Josh Blum
2013-04-14gras: move code into component filesJosh Blum
2013-04-13gras: minor tweaks while benchmarkingJosh Blum
2013-04-10gras: switched to using token for prio messagesJosh Blum
See #70 for more details
2013-04-06gras: cleaner way for msgs to override item reserveJosh Blum
2013-04-06gras: split register property into two callsJosh Blum
2013-03-31gras: fix #60 by checking done logic after handlerJosh Blum
2013-03-29gras: reuse inputs_available for done logicJosh Blum
2013-03-29Merge branch 'master' into query_workJosh Blum
2013-03-29gras: fix #66 with less lazy flush_all for input queueJosh Blum
2013-03-29gras: added hooks to query instantaneous stateJosh Blum