TemplateFactory.hh
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:3k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. #ifndef HADOOP_PIPES_TEMPLATE_FACTORY_HH
  19. #define HADOOP_PIPES_TEMPLATE_FACTORY_HH
  20. namespace HadoopPipes {
  21.   template <class mapper, class reducer>
  22.   class TemplateFactory2: public Factory {
  23.   public:
  24.     Mapper* createMapper(MapContext& context) const {
  25.       return new mapper(context);
  26.     }
  27.     Reducer* createReducer(ReduceContext& context) const {
  28.       return new reducer(context);
  29.     }
  30.   };
  31.   template <class mapper, class reducer, class partitioner>
  32.   class TemplateFactory3: public TemplateFactory2<mapper,reducer> {
  33.   public:
  34.     Partitioner* createPartitioner(MapContext& context) const {
  35.       return new partitioner(context);
  36.     }
  37.   };
  38.   template <class mapper, class reducer>
  39.   class TemplateFactory3<mapper, reducer, void>
  40.       : public TemplateFactory2<mapper,reducer> {
  41.   };
  42.   template <class mapper, class reducer, class partitioner, class combiner>
  43.   class TemplateFactory4
  44.    : public TemplateFactory3<mapper,reducer,partitioner>{
  45.   public:
  46.     Reducer* createCombiner(MapContext& context) const {
  47.       return new combiner(context);
  48.     }
  49.   };
  50.   template <class mapper, class reducer, class partitioner>
  51.   class TemplateFactory4<mapper,reducer,partitioner,void>
  52.    : public TemplateFactory3<mapper,reducer,partitioner>{
  53.   };
  54.   template <class mapper, class reducer, class partitioner, 
  55.             class combiner, class recordReader>
  56.   class TemplateFactory5
  57.    : public TemplateFactory4<mapper,reducer,partitioner,combiner>{
  58.   public:
  59.     RecordReader* createRecordReader(MapContext& context) const {
  60.       return new recordReader(context);
  61.     }
  62.   };
  63.   template <class mapper, class reducer, class partitioner,class combiner>
  64.   class TemplateFactory5<mapper,reducer,partitioner,combiner,void>
  65.    : public TemplateFactory4<mapper,reducer,partitioner,combiner>{
  66.   };
  67.   template <class mapper, class reducer, class partitioner=void, 
  68.             class combiner=void, class recordReader=void, 
  69.             class recordWriter=void> 
  70.   class TemplateFactory
  71.    : public TemplateFactory5<mapper,reducer,partitioner,combiner,recordReader>{
  72.   public:
  73.     RecordWriter* createRecordWriter(ReduceContext& context) const {
  74.       return new recordWriter(context);
  75.     }
  76.   };
  77.   template <class mapper, class reducer, class partitioner, 
  78.             class combiner, class recordReader>
  79.   class TemplateFactory<mapper, reducer, partitioner, combiner, recordReader, 
  80.                         void>
  81.    : public TemplateFactory5<mapper,reducer,partitioner,combiner,recordReader>{
  82.   };
  83. }
  84. #endif