diff options
author | Josh Blum | 2012-09-06 20:11:56 -0700 |
---|---|---|
committer | Josh Blum | 2012-09-06 20:11:56 -0700 |
commit | f84970693f4e1c9919e139c1d99daa74691b5a46 (patch) | |
tree | 39f9c7c387d99d99b08fc996b1ab302083454de7 /lib/block_task.cpp | |
parent | 1a571058645c49d4edf303051b754f8f93c5f76c (diff) | |
download | sandhi-f84970693f4e1c9919e139c1d99daa74691b5a46.tar.gz sandhi-f84970693f4e1c9919e139c1d99daa74691b5a46.tar.bz2 sandhi-f84970693f4e1c9919e139c1d99daa74691b5a46.zip |
debug prints, minor fixes, unfinished input queue work
Diffstat (limited to 'lib/block_task.cpp')
-rw-r--r-- | lib/block_task.cpp | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/lib/block_task.cpp b/lib/block_task.cpp index a5dccbe..318b7b0 100644 --- a/lib/block_task.cpp +++ b/lib/block_task.cpp @@ -63,13 +63,11 @@ void ElementImpl::mark_done(const tsbe::TaskInterface &task_iface) task_iface.post_downstream(i, CheckTokensMessage()); } - /* - std::cout + if (ARMAGEDDON) std::cout << "==================================================\n" << "== The " << name << " is done...\n" << "==================================================\n" << std::flush; - //*/ } void ElementImpl::handle_task(const tsbe::TaskInterface &task_iface) @@ -84,7 +82,7 @@ void ElementImpl::handle_task(const tsbe::TaskInterface &task_iface) this->input_queues.all_ready() and this->output_queues.all_ready() )) return; - std::cout << "=== calling work on " << name << " ===" << std::endl; + //std::cout << "=== calling work on " << name << " ===" << std::endl; const size_t num_inputs = task_iface.get_num_inputs(); const size_t num_outputs = task_iface.get_num_outputs(); @@ -136,9 +134,7 @@ void ElementImpl::handle_task(const tsbe::TaskInterface &task_iface) const tsbe::Buffer &buff = this->output_queues.front(i); char *mem = ((char *)buff.get_memory()) + this->output_bytes_offset[i]; const size_t bytes = buff.get_length() - this->output_bytes_offset[i]; - size_t items = bytes/this->output_items_sizes[i]; - ASSERT(items >= this->output_multiple_items[i]); - items = this->output_multiple_items[i]*(items/this->output_multiple_items[i]); + const size_t items = bytes/this->output_items_sizes[i]; this->work_io_ptr_mask |= ptrdiff_t(mem); this->output_items[i]._mem = mem; @@ -187,7 +183,7 @@ void ElementImpl::handle_task(const tsbe::TaskInterface &task_iface) this->items_consumed[i] += items; const size_t bytes = items*this->input_items_sizes[i]; - input_allows_flush = input_allows_flush and this->input_queues.pop(i, bytes); + input_allows_flush = input_allows_flush and this->input_queues.consume(i, bytes); } //------------------------------------------------------------------ @@ -273,10 +269,11 @@ void ElementImpl::handle_task(const tsbe::TaskInterface &task_iface) this->output_tags[i].clear(); } - //if there are inputs, and not all are provided for, and we have an empty queue, mark done - if (num_inputs != 0 and input_tokens_count == num_inputs and not this->input_queues.all_ready()) + //if there are inputs, and not all are provided for, + //tell the block to check input queues and handle done + if (num_inputs != 0 and input_tokens_count == num_inputs) { - this->mark_done(task_iface); + this->block.post_msg(CheckTokensMessage()); return; } |