#include #include #include #include #include #include namespace DB { namespace { struct FilesystemAvailable { static constexpr auto name = "filesystemAvailable"; static std::uintmax_t get(const std::filesystem::space_info & spaceinfo) { return spaceinfo.available; } }; struct FilesystemFree { static constexpr auto name = "filesystemFree"; static std::uintmax_t get(const std::filesystem::space_info & spaceinfo) { return spaceinfo.free; } }; struct FilesystemCapacity { static constexpr auto name = "filesystemCapacity"; static std::uintmax_t get(const std::filesystem::space_info & spaceinfo) { return spaceinfo.capacity; } }; template class FilesystemImpl : public IFunction { public: static constexpr auto name = Impl::name; static FunctionPtr create(ContextPtr context) { return std::make_shared>(std::filesystem::space(context->getPath())); } bool isSuitableForShortCircuitArgumentsExecution(const DataTypesWithConstInfo & /*arguments*/) const override { return false; } explicit FilesystemImpl(std::filesystem::space_info spaceinfo_) : spaceinfo(spaceinfo_) { } String getName() const override { return name; } size_t getNumberOfArguments() const override { return 0; } bool isDeterministic() const override { return false; } DataTypePtr getReturnTypeImpl(const DataTypes & /*arguments*/) const override { return std::make_shared(); } ColumnPtr executeImpl(const ColumnsWithTypeAndName &, const DataTypePtr &, size_t input_rows_count) const override { return DataTypeUInt64().createColumnConst(input_rows_count, static_cast(Impl::get(spaceinfo))); } private: std::filesystem::space_info spaceinfo; }; } void registerFunctionFilesystem(FunctionFactory & factory) { factory.registerFunction>(); factory.registerFunction>(); factory.registerFunction>(); } }