org.apache.iotdb.db.utils.CommonUtils 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 org.apache.iotdb.db.utils;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.stream.Stream;
import org.apache.iotdb.db.exception.query.QueryProcessException;
import org.apache.iotdb.db.qp.constant.SQLConstant;
import org.apache.iotdb.tsfile.file.metadata.enums.TSDataType;
import org.apache.iotdb.tsfile.fileSystem.FSFactoryProducer;
import org.apache.iotdb.tsfile.utils.Binary;
public class CommonUtils {
private static final int CPUS = Runtime.getRuntime().availableProcessors();
/**
* Default executor pool maximum size.
*/
public static final int MAX_EXECUTOR_POOL_SIZE = Math.max(100, getCpuCores() * 5);
private CommonUtils() {
}
/**
* get JDK version.
*
* @return JDK version (int type)
*/
public static int getJdkVersion() {
String[] javaVersionElements = System.getProperty("java.version").split("\\.");
if (Integer.parseInt(javaVersionElements[0]) == 1) {
return Integer.parseInt(javaVersionElements[1]);
} else {
return Integer.parseInt(javaVersionElements[0]);
}
}
/**
* NOTICE: This method is currently used only for data dir, thus using FSFactory to get file
*
* @param dir directory path
* @return
*/
public static long getUsableSpace(String dir) {
return FSFactoryProducer.getFSFactory().getFile(dir).getFreeSpace();
}
public static boolean hasSpace(String dir) {
return getUsableSpace(dir) > 0;
}
public static long getOccupiedSpace(String folderPath) throws IOException {
Path folder = Paths.get(folderPath);
try (Stream s = Files.walk(folder)) {
return s.filter(p -> p.toFile().isFile())
.mapToLong(p -> p.toFile().length()).sum();
}
}
public static Object parseValue(TSDataType dataType, String value) throws QueryProcessException {
try {
switch (dataType) {
case BOOLEAN:
return parseBoolean(value);
case INT32:
return Integer.parseInt(value);
case INT64:
return Long.parseLong(value);
case FLOAT:
return Float.parseFloat(value);
case DOUBLE:
return Double.parseDouble(value);
case TEXT:
if ((value.startsWith(SQLConstant.QUOTE) && value.endsWith(SQLConstant.QUOTE))
|| (value.startsWith(SQLConstant.DQUOTE) && value.endsWith(SQLConstant.DQUOTE))) {
if (value.length() == 1) {
return new Binary(value);
} else {
return new Binary(value.substring(1, value.length() - 1));
}
}
return new Binary(value);
default:
throw new QueryProcessException("Unsupported data type:" + dataType);
}
} catch (NumberFormatException e) {
throw new QueryProcessException(e.getMessage());
}
}
@TestOnly
public static Object parseValueForTest(TSDataType dataType, String value)
throws QueryProcessException {
try {
switch (dataType) {
case BOOLEAN:
return parseBoolean(value);
case INT32:
return Integer.parseInt(value);
case INT64:
return Long.parseLong(value);
case FLOAT:
return Float.parseFloat(value);
case DOUBLE:
return Double.parseDouble(value);
case TEXT:
return new Binary(value);
default:
throw new QueryProcessException("Unsupported data type:" + dataType);
}
} catch (NumberFormatException e) {
throw new QueryProcessException(e.getMessage());
}
}
private static boolean parseBoolean(String value) throws QueryProcessException {
value = value.toLowerCase();
if (SQLConstant.BOOLEAN_FALSE_NUM.equals(value) || SQLConstant.BOOLEAN_FALSE
.equals(value)) {
return false;
}
if (SQLConstant.BOOLEAN_TRUE_NUM.equals(value) || SQLConstant.BOOLEAN_TRUE.equals(value)) {
return true;
}
throw new QueryProcessException("The BOOLEAN should be true/TRUE, false/FALSE or 0/1");
}
public static int getCpuCores() {
return CPUS;
}
public static int getMaxExecutorPoolSize() {
return MAX_EXECUTOR_POOL_SIZE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy