diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
commit | 19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch) | |
tree | 42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/dokan/ceph_dokan.h | |
parent | Initial commit. (diff) | |
download | ceph-6d07fdb6bb33b1af39833b850bb6cf8af79fe293.tar.xz ceph-6d07fdb6bb33b1af39833b850bb6cf8af79fe293.zip |
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/dokan/ceph_dokan.h')
-rw-r--r-- | src/dokan/ceph_dokan.h | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/src/dokan/ceph_dokan.h b/src/dokan/ceph_dokan.h new file mode 100644 index 000000000..acc50c01e --- /dev/null +++ b/src/dokan/ceph_dokan.h @@ -0,0 +1,56 @@ +/* + * Copyright (C) 2021 SUSE LINUX GmbH + * + * This is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License version 2.1, as published by the Free Software + * Foundation. See file COPYING. + * +*/ + +#pragma once + +#define CEPH_DOKAN_IO_DEFAULT_TIMEOUT 60 * 5 // Seconds +#define CEPH_DOKAN_DEFAULT_THREAD_COUNT 10 + +typedef DWORD NTSTATUS; +// Avoid conflicting COM types, exposed when using C++. +#define _OLE2_H_ + +#include <dokan.h> + +struct Config { + bool removable = false; + bool readonly = false; + bool use_win_mount_mgr = false; + bool current_session_only = false; + bool debug = false; + bool dokan_stderr = false; + + int operation_timeout = CEPH_DOKAN_IO_DEFAULT_TIMEOUT; + int thread_count = CEPH_DOKAN_DEFAULT_THREAD_COUNT; + + std::wstring mountpoint = L""; + std::string root_path = "/"; + + std::wstring win_vol_name = L""; + unsigned long win_vol_serial = 0; +}; + +extern Config *g_cfg; + +// TODO: list and service commands. +enum class Command { + None, + Version, + Help, + Map, + Unmap, +}; + +void print_usage(); +int parse_args( + std::vector<const char*>& args, + std::ostream *err_msg, + Command *command, Config *cfg); +int set_dokan_options(Config *cfg, PDOKAN_OPTIONS dokan_options); |