001/*
002 * Copyright (c) 2007-2017 Xplenty, Inc. All Rights Reserved.
003 *
004 * Project and contact information: http://www.cascading.org/
005 *
006 * This file is part of the Cascading project.
007 *
008 * Licensed under the Apache License, Version 2.0 (the "License");
009 * you may not use this file except in compliance with the License.
010 * You may obtain a copy of the License at
011 *
012 *     http://www.apache.org/licenses/LICENSE-2.0
013 *
014 * Unless required by applicable law or agreed to in writing, software
015 * distributed under the License is distributed on an "AS IS" BASIS,
016 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
017 * See the License for the specific language governing permissions and
018 * limitations under the License.
019 */
020
021package cascading.flow.local.planner;
022
023import cascading.flow.planner.rule.RuleRegistry;
024import cascading.flow.planner.rule.annotator.BlockingHashJoinAnnotator;
025import cascading.flow.planner.rule.annotator.HashJoinBlockingHashJoinAnnotator;
026import cascading.flow.planner.rule.assertion.BufferAfterEveryAssert;
027import cascading.flow.planner.rule.assertion.EveryAfterBufferAssert;
028import cascading.flow.planner.rule.assertion.LoneGroupAssert;
029import cascading.flow.planner.rule.assertion.MissingGroupAssert;
030import cascading.flow.planner.rule.assertion.SplitBeforeEveryAssert;
031import cascading.flow.planner.rule.partitioner.WholeGraphNodePartitioner;
032import cascading.flow.planner.rule.partitioner.WholeGraphStepPartitioner;
033import cascading.flow.planner.rule.transformer.ApplyAssertionLevelTransformer;
034import cascading.flow.planner.rule.transformer.ApplyDebugLevelTransformer;
035import cascading.flow.planner.rule.transformer.RemoveNoOpPipeTransformer;
036
037/**
038 *
039 */
040public class LocalRuleRegistry extends RuleRegistry
041  {
042  public LocalRuleRegistry()
043    {
044    addRule( new LoneGroupAssert() );
045    addRule( new MissingGroupAssert() );
046
047    addRule( new BufferAfterEveryAssert() );
048    addRule( new EveryAfterBufferAssert() );
049    addRule( new SplitBeforeEveryAssert() );
050
051    addRule( new RemoveNoOpPipeTransformer() );
052
053    addRule( new ApplyAssertionLevelTransformer() );
054    addRule( new ApplyDebugLevelTransformer() );
055
056    addRule( new BlockingHashJoinAnnotator() );
057    addRule( new HashJoinBlockingHashJoinAnnotator() );
058
059    addRule( new WholeGraphStepPartitioner() );
060
061    addRule( new WholeGraphNodePartitioner() );
062    }
063  }