/** ------------------------------------------------ Copyright 2014 AT&T Intellectual Property Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ------------------------------------------- */ #ifndef GROUPBY_SLOWFLUSH_OPERATOR_H #define GROUPBY_OPERATOR_H #include "host_tuple.h" #include "base_operator.h" #include #include "hash_table.h" #define _HFTA_SLOW_FLUSH using namespace std; template class groupby_slowflush_operator : public base_operator { private : groupby_func func; hash_table group_table[2]; bool flush_finished; unsigned int curr_table; typename hash_table::iterator flush_pos; int n_patterns; int gb_per_flush; public: groupby_slowflush_operator(int schema_handle, const char* name) : base_operator(name), func(schema_handle) { flush_finished = true; curr_table = 0; flush_pos = group_table[1-curr_table].end(); n_patterns = func.n_groupby_patterns(); gb_per_flush = func.gb_flush_per_tuple(); } int accept_tuple(host_tuple& tup, list& result) { // Push out completed groups if(!flush_finished) partial_flush(result); // extract the key information from the tuple and // copy it into buffer group grp; if (!func.create_group(tup, (gs_sp_t)&grp)) { if(func.disordered()){ // fprintf(stderr,"Out of order record in %s\n",op_name); return 0; } if (func.flush_needed()){ flush_old(result); } if (func.temp_status_received()) { host_tuple temp_tup; if (!func.create_temp_status_tuple(temp_tup, flush_finished)) { temp_tup.channel = output_channel; result.push_back(temp_tup); } } tup.free_tuple(); return 0; } if(func.disordered()){ // fprintf(stderr,"Out of order record in %s\n",op_name); return 0; } typename hash_table::iterator iter; if ((iter = group_table[curr_table].find(grp)) != group_table[curr_table].end()) { // Temporal GBvar is part of the group so no flush is needed. func.update_aggregate(tup, grp, (*iter).second); }else{ if (func.flush_needed()) { flush_old(result); } if(n_patterns <= 1){ char aggr_buffer[sizeof(aggregate)]; // create an aggregate in preallocated buffer func.create_aggregate(tup, aggr_buffer); // neeed operator= doing a deep copy group_table[curr_table].insert(grp, (*(aggregate*)aggr_buffer)); }else{ int p; for(p=0;p& result) { host_tuple tup; unsigned int old_table = 1-curr_table; unsigned int i; // emit up to _GB_FLUSH_PER_TABLE_ output tuples. if (!group_table[old_table].empty()) { for (i=0; flush_pos != group_table[old_table].end() && i& result) { host_tuple tup; typename hash_table::iterator iter; unsigned int old_table = 1-curr_table; // If the old table isn't empty, flush it now. if (!group_table[old_table].empty()) { for (; flush_pos != group_table[old_table].end(); ++flush_pos) { bool failed = false; tup = func.create_output_tuple((*flush_pos).first,(*flush_pos).second, failed); if (!failed) { tup.channel = output_channel; result.push_back(tup); } // free((*flush_pos).second); } group_table[old_table].clear(); group_table[old_table].resize(); } flush_pos = group_table[curr_table].begin(); // If the table isn't empty, flush it now. if (!group_table[curr_table].empty()) { for (; flush_pos != group_table[curr_table].end(); ++flush_pos) { bool failed = false; tup = func.create_output_tuple((*flush_pos).first,(*flush_pos).second, failed); if (!failed) { tup.channel = output_channel; result.push_back(tup); } // free((*flush_pos).second); } group_table[curr_table].clear(); } flush_finished = true; return 0; } int flush_old(list& result) { host_tuple tup; typename hash_table::iterator iter; unsigned int old_table = 1-curr_table; // If the old table isn't empty, flush it now. if (!group_table[old_table].empty()) { for (; flush_pos != group_table[old_table].end(); ++flush_pos) { bool failed = false; tup = func.create_output_tuple((*flush_pos).first,(*flush_pos).second, failed); if (!failed) { tup.channel = output_channel; result.push_back(tup); } // free((*flush_pos).second); } //group_table[old_table].clear(); //group_table[old_table].resize(); } group_table[old_table].clear(); group_table[old_table].resize(); // swap tables, enable partial flush processing. flush_pos = group_table[curr_table].begin(); curr_table = old_table; flush_finished = false; return 0; } int set_param_block(int sz, void * value) { func.set_param_block(sz, value); return 0; } int get_temp_status(host_tuple& result) { result.channel = output_channel; return func.create_temp_status_tuple(result, flush_finished); } int get_blocked_status () { return -1; } unsigned int get_mem_footprint() { return group_table[0].get_mem_footprint() + group_table[1].get_mem_footprint(); } }; #endif // GROUPBY_OPERATOR_H