-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9ec6ce1
commit 677697a
Showing
8 changed files
with
190 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
...ile/src/main/java/org/apache/tsfile/read/common/block/column/DictionaryColumnEncoder.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
* 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 org.apache.tsfile.read.common.block.column; | ||
|
||
import org.apache.tsfile.block.column.Column; | ||
import org.apache.tsfile.block.column.ColumnEncoding; | ||
import org.apache.tsfile.enums.TSDataType; | ||
import org.apache.tsfile.utils.ReadWriteIOUtils; | ||
|
||
import java.io.DataOutputStream; | ||
import java.io.IOException; | ||
import java.nio.ByteBuffer; | ||
|
||
public class DictionaryColumnEncoder implements ColumnEncoder { | ||
|
||
@Override | ||
public Column readColumn(ByteBuffer input, TSDataType dataType, int positionCount) { | ||
// dictionary | ||
ColumnEncoder columnEncoder = ColumnEncoderFactory.get(ColumnEncoding.deserializeFrom(input)); | ||
Column dictionary = columnEncoder.readColumn(input, dataType, ReadWriteIOUtils.readInt(input)); | ||
|
||
// ids | ||
int[] ids = ReadWriteIOUtils.readInts(input); | ||
|
||
// flatten the dictionary | ||
return dictionary.copyPositions(ids, 0, positionCount); | ||
} | ||
|
||
@Override | ||
public void writeColumn(DataOutputStream output, Column column) throws IOException { | ||
DictionaryColumn dictionaryColumn = (DictionaryColumn) column; | ||
// compact before serialize | ||
dictionaryColumn = dictionaryColumn.compact(); | ||
|
||
Column dictionary = dictionaryColumn.getDictionary(); | ||
|
||
// dictionary | ||
dictionary.getEncoding().serializeTo(output); | ||
int positionCount = dictionary.getPositionCount(); | ||
ReadWriteIOUtils.write(positionCount, output); | ||
ColumnEncoder columnEncoder = ColumnEncoderFactory.get(dictionary.getEncoding()); | ||
columnEncoder.writeColumn(output, dictionary); | ||
|
||
// ids | ||
ReadWriteIOUtils.writeInts( | ||
dictionaryColumn.getRawIds(), | ||
dictionaryColumn.getRawIdsOffset(), | ||
dictionaryColumn.getPositionCount(), | ||
output); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
77 changes: 77 additions & 0 deletions
77
java/tsfile/src/test/java/org/apache/tsfile/common/block/DictionaryColumnEncodingTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* | ||
* 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 org.apache.tsfile.common.block; | ||
|
||
import org.apache.tsfile.block.column.Column; | ||
import org.apache.tsfile.block.column.ColumnBuilder; | ||
import org.apache.tsfile.block.column.ColumnEncoding; | ||
import org.apache.tsfile.enums.TSDataType; | ||
import org.apache.tsfile.read.common.block.column.ColumnEncoder; | ||
import org.apache.tsfile.read.common.block.column.ColumnEncoderFactory; | ||
import org.apache.tsfile.read.common.block.column.DictionaryColumn; | ||
import org.apache.tsfile.read.common.block.column.LongColumn; | ||
import org.apache.tsfile.read.common.block.column.LongColumnBuilder; | ||
|
||
import org.junit.Assert; | ||
import org.junit.Test; | ||
|
||
import java.io.ByteArrayOutputStream; | ||
import java.io.DataOutputStream; | ||
import java.io.IOException; | ||
import java.nio.ByteBuffer; | ||
|
||
public class DictionaryColumnEncodingTest { | ||
@Test | ||
public void testIntColumn() { | ||
ColumnBuilder columnBuilder = new LongColumnBuilder(null, 10); | ||
for (int i = 0; i < 10; i++) { | ||
if (i == 5) { | ||
columnBuilder.appendNull(); | ||
} else { | ||
columnBuilder.writeLong(i % 5); | ||
} | ||
} | ||
Column originalColumn = columnBuilder.build(); | ||
DictionaryColumn input = | ||
(DictionaryColumn) originalColumn.getPositions(new int[] {1, 3, 5, 8, 9}, 1, 4); | ||
|
||
ColumnEncoder encoder = ColumnEncoderFactory.get(ColumnEncoding.DICTIONARY); | ||
|
||
ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); | ||
DataOutputStream dos = new DataOutputStream(byteArrayOutputStream); | ||
try { | ||
encoder.writeColumn(dos, input); | ||
} catch (IOException e) { | ||
e.printStackTrace(); | ||
Assert.fail(); | ||
} | ||
|
||
ByteBuffer buffer = ByteBuffer.wrap(byteArrayOutputStream.toByteArray()); | ||
Column output = encoder.readColumn(buffer, TSDataType.INT64, input.getPositionCount()); | ||
Assert.assertTrue(output instanceof LongColumn); | ||
|
||
Assert.assertEquals(input.getPositionCount(), output.getPositionCount()); | ||
Assert.assertTrue(output.mayHaveNull()); | ||
Assert.assertEquals(3, output.getLong(0)); | ||
Assert.assertTrue(output.isNull(1)); | ||
Assert.assertEquals(3, output.getLong(2)); | ||
Assert.assertEquals(4, output.getLong(3)); | ||
} | ||
} |
Oops, something went wrong.