summaryrefslogtreecommitdiffstats
path: root/contrib/clickhouse/src/Functions/filesystem.cpp
diff options
context:
space:
mode:
authorvitalyisaev <[email protected]>2023-11-14 09:58:56 +0300
committervitalyisaev <[email protected]>2023-11-14 10:20:20 +0300
commitc2b2dfd9827a400a8495e172a56343462e3ceb82 (patch)
treecd4e4f597d01bede4c82dffeb2d780d0a9046bd0 /contrib/clickhouse/src/Functions/filesystem.cpp
parentd4ae8f119e67808cb0cf776ba6e0cf95296f2df7 (diff)
YQ Connector: move tests from yql to ydb (OSS)
Перенос папки с тестами на Коннектор из папки yql в папку ydb (синхронизируется с github).
Diffstat (limited to 'contrib/clickhouse/src/Functions/filesystem.cpp')
-rw-r--r--contrib/clickhouse/src/Functions/filesystem.cpp122
1 files changed, 122 insertions, 0 deletions
diff --git a/contrib/clickhouse/src/Functions/filesystem.cpp b/contrib/clickhouse/src/Functions/filesystem.cpp
new file mode 100644
index 00000000000..9fbf9b0cbe7
--- /dev/null
+++ b/contrib/clickhouse/src/Functions/filesystem.cpp
@@ -0,0 +1,122 @@
+#include <Columns/ColumnString.h>
+#include <Columns/ColumnVector.h>
+#include <DataTypes/DataTypesNumber.h>
+#include <Disks/IDisk.h>
+#include <Functions/FunctionFactory.h>
+#include <Functions/IFunction.h>
+#include <Interpreters/Context.h>
+#include <Poco/Util/AbstractConfiguration.h>
+
+namespace DB
+{
+namespace ErrorCodes
+{
+ extern const int ILLEGAL_COLUMN;
+ extern const int ILLEGAL_TYPE_OF_ARGUMENT;
+ extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH;
+ extern const int UNKNOWN_DISK;
+}
+namespace
+{
+
+struct FilesystemAvailable
+{
+ static constexpr auto name = "filesystemAvailable";
+ static UInt64 get(const DiskPtr & disk) { return disk->getAvailableSpace().value_or(std::numeric_limits<UInt64>::max()); }
+};
+
+struct FilesystemUnreserved
+{
+ static constexpr auto name = "filesystemUnreserved";
+ static UInt64 get(const DiskPtr & disk) { return disk->getUnreservedSpace().value_or(std::numeric_limits<UInt64>::max()); }
+};
+
+struct FilesystemCapacity
+{
+ static constexpr auto name = "filesystemCapacity";
+ static UInt64 get(const DiskPtr & disk) { return disk->getTotalSpace().value_or(std::numeric_limits<UInt64>::max()); }
+};
+
+template <typename Impl>
+class FilesystemImpl : public IFunction
+{
+public:
+ static constexpr auto name = Impl::name;
+
+ static FunctionPtr create(ContextPtr context_) { return std::make_shared<FilesystemImpl<Impl>>(context_); }
+
+ explicit FilesystemImpl(ContextPtr context_) : context(context_) { }
+
+ bool useDefaultImplementationForConstants() const override { return true; }
+
+ bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override
+ {
+ return false;
+ }
+
+ String getName() const override { return name; }
+
+ bool isVariadic() const override { return true; }
+
+ size_t getNumberOfArguments() const override { return 0; }
+ bool isDeterministic() const override { return false; }
+
+ DataTypePtr getReturnTypeImpl(const DataTypes & arguments) const override
+ {
+ if (arguments.size() > 1)
+ {
+ throw Exception(ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH, "Arguments size of function {} should be 0 or 1", getName());
+ }
+ if (arguments.size() == 1 && !isStringOrFixedString(arguments[0]))
+ {
+ throw Exception(ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT, "Arguments of function {} should be String or FixedString",
+ getName());
+ }
+ return std::make_shared<DataTypeUInt64>();
+ }
+
+ ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr &, size_t input_rows_count) const override
+ {
+ if (arguments.empty())
+ {
+ auto disk = context->getDisk("default");
+ return DataTypeUInt64().createColumnConst(input_rows_count, Impl::get(disk));
+ }
+ else
+ {
+ auto col = arguments[0].column;
+ if (const ColumnString * col_str = checkAndGetColumn<ColumnString>(col.get()))
+ {
+ auto disk_map = context->getDisksMap();
+
+ auto col_res = ColumnVector<UInt64>::create(col_str->size());
+ auto & data = col_res->getData();
+ for (size_t i = 0; i < col_str->size(); ++i)
+ {
+ auto disk_name = col_str->getDataAt(i).toString();
+ if (auto it = disk_map.find(disk_name); it != disk_map.end())
+ data[i] = Impl::get(it->second);
+ else
+ throw Exception(ErrorCodes::UNKNOWN_DISK, "Unknown disk name {} while execute function {}", disk_name, getName());
+ }
+ return col_res;
+ }
+ throw Exception(ErrorCodes::ILLEGAL_COLUMN, "Illegal column {} of argument of function {}",
+ arguments[0].column->getName(), getName());
+ }
+ }
+
+private:
+ ContextPtr context;
+};
+
+}
+
+REGISTER_FUNCTION(Filesystem)
+{
+ factory.registerFunction<FilesystemImpl<FilesystemAvailable>>();
+ factory.registerFunction<FilesystemImpl<FilesystemCapacity>>();
+ factory.registerFunction<FilesystemImpl<FilesystemUnreserved>>();
+}
+
+}