All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jp.co.yahoo.yosegi.binary.maker.BufferDirectDictionaryLinkCellManager Maven / Gradle / Ivy

/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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. */ package jp.co.yahoo.yosegi.binary.maker; import jp.co.yahoo.yosegi.inmemory.IMemoryAllocator; import jp.co.yahoo.yosegi.message.objects.PrimitiveObject; import jp.co.yahoo.yosegi.spread.column.CellMakerFactory; import jp.co.yahoo.yosegi.spread.column.ColumnType; import jp.co.yahoo.yosegi.spread.column.ICell; import jp.co.yahoo.yosegi.spread.column.ICellMaker; import jp.co.yahoo.yosegi.spread.column.IDictionaryCellManager; import jp.co.yahoo.yosegi.spread.column.PrimitiveCell; import jp.co.yahoo.yosegi.spread.column.PrimitiveColumn; import jp.co.yahoo.yosegi.spread.column.filter.IFilter; import jp.co.yahoo.yosegi.spread.column.filter.INullFilter; import jp.co.yahoo.yosegi.spread.column.index.DefaultCellIndex; import jp.co.yahoo.yosegi.spread.column.index.ICellIndex; import jp.co.yahoo.yosegi.spread.expression.IExpressionIndex; import java.io.IOException; import java.io.UncheckedIOException; import java.nio.IntBuffer; public class BufferDirectDictionaryLinkCellManager implements IDictionaryCellManager { private final ColumnType columnType; private final ICellMaker cellMaker; private final IDicManager dicManager; private final IntBuffer dicIndexIntBuffer; private final int indexSize; private ICellIndex index = new DefaultCellIndex(); /** * Object for managing cells from IntBuffer. */ public BufferDirectDictionaryLinkCellManager( final ColumnType columnType , final IDicManager dicManager , final IntBuffer dicIndexIntBuffer ) throws IOException { this.columnType = columnType; this.dicManager = dicManager; this.dicIndexIntBuffer = dicIndexIntBuffer; cellMaker = CellMakerFactory.getCellMaker( columnType ); indexSize = dicIndexIntBuffer.capacity(); } @Override public void add(final ICell cell , final int index ) { throw new UnsupportedOperationException( "read only." ); } @Override public ICell get( final int index , final ICell defaultCell ) { if ( indexSize <= index ) { return defaultCell; } int dicIndex = dicIndexIntBuffer.get( index ); if ( dicIndex == 0 ) { return defaultCell; } try { return cellMaker.create( dicManager.get( dicIndex ) ); } catch ( IOException ex ) { throw new RuntimeException( ex ); } } @Override public int size() { return indexSize; } @Override public void clear() {} @Override public void setIndex( final ICellIndex index ) { this.index = index; } @Override public boolean[] filter( final IFilter filter , final boolean[] filterArray ) throws IOException { switch ( filter.getFilterType() ) { case NOT_NULL: if ( columnType != ( (INullFilter)filter ).getTargetColumnType() ) { return null; } for ( int i = 0 ; i < filterArray.length ; i++ ) { if ( i < size() ) { if ( dicIndexIntBuffer.get(i) != 0 ) { filterArray[i] = true; } } else { filterArray[i] = false; } } return filterArray; case NULL: if ( columnType != ( (INullFilter)filter ).getTargetColumnType() ) { return null; } for ( int i = 0 ; i < filterArray.length ; i++ ) { if ( i < size() ) { if ( dicIndexIntBuffer.get(i) == 0 ) { filterArray[i] = true; } } else { filterArray[i] = true; } } return filterArray; default: return index.filter( filter , filterArray ); } } @Override public PrimitiveObject[] getPrimitiveObjectArray( final IExpressionIndex indexList , final int start , final int length ) { PrimitiveObject[] result = new PrimitiveObject[length]; int loopEnd = ( start + length ); if ( indexList.size() < loopEnd ) { loopEnd = indexList.size(); } for ( int i = start , index = 0 ; i < loopEnd ; i++,index++ ) { int targetIndex = indexList.get( i ); if ( indexSize <= targetIndex ) { break; } int dicIndex = dicIndexIntBuffer.get( targetIndex ); if ( dicIndex != 0 ) { try { result[index] = dicManager.get( dicIndex ); } catch ( IOException ex ) { throw new UncheckedIOException( ex ); } } } return result; } @Override public void setPrimitiveObjectArray( final IExpressionIndex indexList , final int start , final int length , final IMemoryAllocator allocator ) { int loopEnd = ( start + length ); if ( indexList.size() < loopEnd ) { loopEnd = indexList.size(); } int index = 0; for ( int i = start ; i < loopEnd ; i++,index++ ) { int targetIndex = indexList.get( i ); if ( indexSize <= targetIndex ) { break; } int dicIndex = dicIndexIntBuffer.get( targetIndex ); try { if ( dicIndex == 0 ) { allocator.setNull( index ); } else { allocator.setPrimitiveObject( index , dicManager.get( dicIndex ) ); } } catch ( IOException ex ) { throw new UncheckedIOException( ex ); } } for ( int i = index ; i < length ; i++ ) { allocator.setNull( i ); } } @Override public int[] getIndexArray( final IExpressionIndex indexList ) throws IOException { int[] result = new int[indexList.size()]; for ( int i = 0 ; i < indexList.size() && i < indexSize ; i++ ) { result[i] = dicIndexIntBuffer.get( indexList.get(i) ); } return result; } @Override public int[] getIndexArray() throws IOException { int[] result = new int[indexSize]; for ( int i = 0 ; i < indexSize ; i++ ) { result[i] = dicIndexIntBuffer.get( i ); } return result; } @Override public PrimitiveObject[] getDictionary() throws IOException { PrimitiveObject[] result = new PrimitiveObject[dicManager.getDicSize()]; result[0] = null; for ( int i = 1 ; i < result.length ; i++ ) { result[i] = dicManager.get(i); } return result; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy