Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*******************************************************************************
* ___ _ ____ ____
* / _ \ _ _ ___ ___| |_| _ \| __ )
* | | | | | | |/ _ \/ __| __| | | | _ \
* | |_| | |_| | __/\__ \ |_| |_| | |_) |
* \__\_\\__,_|\___||___/\__|____/|____/
*
* Copyright (c) 2014-2019 Appsicle
* Copyright (c) 2019-2020 QuestDB
*
* Licensed 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 io.questdb.cairo;
import io.questdb.cairo.vm.MappedReadOnlyMemory;
import io.questdb.cairo.vm.VmUtils;
import io.questdb.std.CharSequenceIntHashMap;
import io.questdb.std.Chars;
import io.questdb.std.FilesFacade;
import io.questdb.std.ObjList;
public class TableWriterMetadata extends BaseRecordMetadata {
private int symbolMapCount;
private int version;
private final int id;
private final int o3MaxUncommittedRows;
private final long o3CommitHysteresisInMicros;
public TableWriterMetadata(FilesFacade ff, MappedReadOnlyMemory metaMem) {
this.columnCount = metaMem.getInt(TableUtils.META_OFFSET_COUNT);
this.columnNameIndexMap = new CharSequenceIntHashMap(columnCount);
this.version = metaMem.getInt(TableUtils.META_OFFSET_VERSION);
this.id = metaMem.getInt(TableUtils.META_OFFSET_TABLE_ID);
this.o3MaxUncommittedRows = metaMem.getInt(TableUtils.META_OFFSET_O3_MAX_UNCOMMITTED_ROWS);
this.o3CommitHysteresisInMicros = metaMem.getLong(TableUtils.META_OFFSET_O3_COMMIT_HYSTERESIS_IN_MICROS);
TableUtils.validate(ff, metaMem, columnNameIndexMap);
this.timestampIndex = metaMem.getInt(TableUtils.META_OFFSET_TIMESTAMP_INDEX);
this.columnMetadata = new ObjList<>(this.columnCount);
long offset = TableUtils.getColumnNameOffset(columnCount);
this.symbolMapCount = 0;
// don't create strings in this loop, we already have them in columnNameIndexMap
for (int i = 0; i < columnCount; i++) {
CharSequence name = metaMem.getStr(offset);
assert name != null;
int type = TableUtils.getColumnType(metaMem, i);
columnMetadata.add(
new TableColumnMetadata(
Chars.toString(name),
type,
TableUtils.isColumnIndexed(metaMem, i),
TableUtils.getIndexBlockCapacity(metaMem, i),
true,
null
)
);
if (type == ColumnType.SYMBOL) {
symbolMapCount++;
}
offset += VmUtils.getStorageLength(name);
}
}
public int getSymbolMapCount() {
return symbolMapCount;
}
void addColumn(CharSequence name, int type, boolean indexFlag, int indexValueBlockCapacity) {
String str = name.toString();
columnNameIndexMap.put(str, columnMetadata.size());
columnMetadata.add(
new TableColumnMetadata(
str,
type,
indexFlag,
indexValueBlockCapacity,
true,
null
)
);
columnCount++;
if (type == ColumnType.SYMBOL) {
symbolMapCount++;
}
}
void removeColumn(CharSequence name) {
int index = columnNameIndexMap.keyIndex(name);
int columnIndex = columnNameIndexMap.valueAt(index);
if (columnMetadata.getQuick(columnIndex).getType() == ColumnType.SYMBOL) {
symbolMapCount--;
}
columnMetadata.remove(columnIndex);
columnNameIndexMap.removeAt(index);
columnCount--;
// enumerate columns that would have moved up after column deletion
for (int i = columnIndex; i < columnCount; i++) {
columnNameIndexMap.put(columnMetadata.getQuick(i).getName(), i);
}
}
void renameColumn(CharSequence name, CharSequence newName) {
int index = columnNameIndexMap.keyIndex(name);
int columnIndex = columnNameIndexMap.valueAt(index);
columnNameIndexMap.removeAt(index);
columnNameIndexMap.putAt(columnNameIndexMap.keyIndex(newName), newName, columnIndex);
//
TableColumnMetadata oldColumnMetadata = columnMetadata.get(columnIndex);
oldColumnMetadata.setName(Chars.toString(newName));
}
void setTimestampIndex(int index) {
this.timestampIndex = index;
}
public int getTableVersion() {
return version;
}
public void setTableVersion() {
version = ColumnType.VERSION;
}
public int getId() {
return id;
}
public int getO3MaxUncommittedRows() {
return o3MaxUncommittedRows;
}
public long getO3CommitHysteresisInMicros() {
return o3CommitHysteresisInMicros;
}
}