00001 /* 00002 // $Id: //open/dev/fennel/exec/ConduitExecStream.cpp#10 $ 00003 // Fennel is a library of data storage and processing components. 00004 // Copyright (C) 2005-2009 The Eigenbase Project 00005 // Copyright (C) 2005-2009 SQLstream, Inc. 00006 // Copyright (C) 2005-2009 LucidEra, Inc. 00007 // Portions Copyright (C) 2004-2009 John V. Sichi 00008 // 00009 // This program is free software; you can redistribute it and/or modify it 00010 // under the terms of the GNU General Public License as published by the Free 00011 // Software Foundation; either version 2 of the License, or (at your option) 00012 // any later version approved by The Eigenbase Project. 00013 // 00014 // This program is distributed in the hope that it will be useful, 00015 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 // GNU General Public License for more details. 00018 // 00019 // You should have received a copy of the GNU General Public License 00020 // along with this program; if not, write to the Free Software 00021 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00022 */ 00023 00024 #include "fennel/common/CommonPreamble.h" 00025 #include "fennel/exec/ConduitExecStream.h" 00026 #include "fennel/exec/ExecStreamBufAccessor.h" 00027 #include "fennel/exec/ExecStreamGraph.h" 00028 00029 FENNEL_BEGIN_CPPFILE("$Id: //open/dev/fennel/exec/ConduitExecStream.cpp#10 $"); 00030 void ConduitExecStream::setInputBufAccessors( 00031 std::vector<SharedExecStreamBufAccessor> const &inAccessors) 00032 { 00033 SingleInputExecStream::setInputBufAccessors(inAccessors); 00034 } 00035 00036 void ConduitExecStream::setOutputBufAccessors( 00037 std::vector<SharedExecStreamBufAccessor> const &outAccessors) 00038 { 00039 SingleOutputExecStream::setOutputBufAccessors(outAccessors); 00040 } 00041 00042 void ConduitExecStream::prepare(ConduitExecStreamParams const ¶ms) 00043 { 00044 SingleInputExecStream::prepare(params); 00045 00046 if (params.outputTupleDesc.empty()) { 00047 pOutAccessor->setTupleShape( 00048 pInAccessor->getTupleDesc(), 00049 pInAccessor->getTupleFormat()); 00050 } 00051 00052 SingleOutputExecStream::prepare(params); 00053 } 00054 00055 void ConduitExecStream::open(bool restart) 00056 { 00057 SingleOutputExecStream::open(restart); 00058 SingleInputExecStream::open(restart); 00059 } 00060 00061 ExecStreamResult ConduitExecStream::precheckConduitBuffers() 00062 { 00063 switch (pInAccessor->getState()) { 00064 case EXECBUF_EMPTY: 00065 pInAccessor->requestProduction(); 00066 return EXECRC_BUF_UNDERFLOW; 00067 case EXECBUF_UNDERFLOW: 00068 return EXECRC_BUF_UNDERFLOW; 00069 case EXECBUF_EOS: 00070 pOutAccessor->markEOS(); 00071 return EXECRC_EOS; 00072 case EXECBUF_NONEMPTY: 00073 case EXECBUF_OVERFLOW: 00074 break; 00075 default: 00076 permAssert(false); 00077 } 00078 if (pOutAccessor->getState() == EXECBUF_OVERFLOW) { 00079 return EXECRC_BUF_OVERFLOW; 00080 } 00081 return EXECRC_YIELD; 00082 } 00083 00084 FENNEL_END_CPPFILE("$Id: //open/dev/fennel/exec/ConduitExecStream.cpp#10 $"); 00085 00086 // End ConduitExecStream.cpp