00001 /* 00002 // $Id: //open/dev/fennel/device/ThreadPoolScheduler.cpp#9 $ 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) 1999-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/device/ThreadPoolScheduler.h" 00026 #include "fennel/synch/Thread.h" 00027 #include "fennel/synch/ThreadPool.h" 00028 #include "fennel/device/RandomAccessRequest.h" 00029 #include "fennel/device/RandomAccessDevice.h" 00030 #include "fennel/device/DeviceAccessSchedulerParams.h" 00031 00032 FENNEL_BEGIN_CPPFILE("$Id: //open/dev/fennel/device/ThreadPoolScheduler.cpp#9 $"); 00033 00034 ThreadPoolScheduler::ThreadPoolScheduler( 00035 DeviceAccessSchedulerParams const ¶ms) 00036 { 00037 // threads and requests are 1-to-1, but threads are expensive, 00038 // so arbitrarily cap at 10 00039 uint nThreads = std::min<uint>(10, params.maxRequests); 00040 pool.start(nThreads); 00041 } 00042 00043 ThreadPoolScheduler::~ThreadPoolScheduler() 00044 { 00045 } 00046 00047 bool ThreadPoolScheduler::schedule(RandomAccessRequest &request) 00048 { 00049 RandomAccessRequest::BindingListMutator bindingMutator(request.bindingList); 00050 FileSize cbOffset = request.cbOffset; 00051 // break up the request into one per binding 00052 // TODO: don't do this if device supports scatter/gather; and skip 00053 // breakup if only one binding in the first place 00054 while (bindingMutator) { 00055 RandomAccessRequestBinding *pBinding = bindingMutator.detach(); 00056 if (!pBinding) { 00057 break; 00058 } 00059 RandomAccessRequest subRequest; 00060 subRequest.pDevice = request.pDevice; 00061 subRequest.cbOffset = cbOffset; 00062 subRequest.cbTransfer = pBinding->getBufferSize(); 00063 cbOffset += subRequest.cbTransfer; 00064 subRequest.type = request.type; 00065 subRequest.bindingList.push_back(*pBinding); 00066 pool.submitTask(subRequest); 00067 } 00068 assert(cbOffset == request.cbOffset + request.cbTransfer); 00069 return true; 00070 } 00071 00072 void ThreadPoolScheduler::stop() 00073 { 00074 pool.stop(); 00075 } 00076 00077 FENNEL_END_CPPFILE("$Id: //open/dev/fennel/device/ThreadPoolScheduler.cpp#9 $"); 00078 00079 // End ThreadPoolScheduler.cpp