summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucian Petrut <lpetrut@cloudbasesolutions.com>2020-05-05 12:20:46 +0200
committerLucian Petrut <lpetrut@cloudbasesolutions.com>2020-11-18 11:31:17 +0100
commit00a5cd1d43e485e9ced6789c041498f5785e58b4 (patch)
treebe8c1d93e2e6a43cc232612559d78f91edd53456
parentcommon: Add Windows service helpers (diff)
downloadceph-00a5cd1d43e485e9ced6789c041498f5785e58b4.tar.xz
ceph-00a5cd1d43e485e9ced6789c041498f5785e58b4.zip
common: move Windows files to a separate folder
We ended up with quite a few files having the "_win32" suffix. It's probably better if we move them to a separate folder and drop the suffix. Signed-off-by: Lucian Petrut <lpetrut@cloudbasesolutions.com>
Diffstat (limited to '')
-rw-r--r--src/common/CMakeLists.txt16
-rw-r--r--src/common/win32/SubProcess.cc (renamed from src/common/SubProcess_win32.cc)13
-rw-r--r--src/common/win32/blkdev.cc (renamed from src/common/blkdev_win32.cc)2
-rw-r--r--src/common/win32/dlfcn.cc (renamed from src/common/dlfcn_win32.cc)0
-rw-r--r--src/common/win32/dns_resolve.cc (renamed from src/common/dns_resolve_win32.cc)2
-rw-r--r--src/common/win32/errno.cc (renamed from src/common/win32_errno.cc)0
-rw-r--r--src/common/win32/ifaddrs.cc (renamed from src/common/ifaddrs_win32.cc)0
-rw-r--r--src/common/win32/registry.cc (renamed from src/common/registry_win32.cc)2
-rw-r--r--src/common/win32/registry.h (renamed from src/common/registry_win32.h)0
-rw-r--r--src/common/win32/service.cc (renamed from src/common/service_win32.cc)2
-rw-r--r--src/common/win32/service.h (renamed from src/common/service_win32.h)0
11 files changed, 24 insertions, 13 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt
index efd1b24440d..e9a732ba916 100644
--- a/src/common/CMakeLists.txt
+++ b/src/common/CMakeLists.txt
@@ -8,7 +8,7 @@ add_library(common_prioritycache_obj OBJECT
PriorityCache.cc)
if(WIN32)
- add_library(dlfcn_win32 STATIC dlfcn_win32.cc win32_errno.cc)
+ add_library(dlfcn_win32 STATIC win32/dlfcn.cc win32/errno.cc)
endif()
set(common_srcs
@@ -105,12 +105,12 @@ set(common_srcs
if(WIN32)
list(APPEND common_srcs
- blkdev_win32.cc
- dns_resolve_win32.cc
- SubProcess_win32.cc
- ifaddrs_win32.c
- registry_win32.cc
- service_win32.cc)
+ win32/blkdev.cc
+ win32/dns_resolve.cc
+ win32/ifaddrs.cc
+ win32/registry.cc
+ win32/service.cc
+ win32/SubProcess.cc)
else()
list(APPEND common_srcs
blkdev.cc
@@ -138,7 +138,7 @@ elseif(SUN)
elseif(AIX)
list(APPEND common_srcs aix_errno.cc)
elseif(WIN32)
- list(APPEND common_srcs win32_errno.cc)
+ list(APPEND common_srcs win32/errno.cc)
endif()
if(WITH_EVENTTRACE)
diff --git a/src/common/SubProcess_win32.cc b/src/common/win32/SubProcess.cc
index 0e4d13dd71a..565cb47f0fa 100644
--- a/src/common/SubProcess_win32.cc
+++ b/src/common/win32/SubProcess.cc
@@ -1,4 +1,14 @@
-#include "SubProcess.h"
+/*
+ * Ceph - scalable distributed file system
+ *
+ * Copyright (C) 2020 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.
+ *
+ */
#include <stdarg.h>
#include <fcntl.h>
@@ -6,6 +16,7 @@
#include <iostream>
#include <iomanip>
+#include "common/SubProcess.h"
#include "common/errno.h"
#include "include/ceph_assert.h"
#include "include/compat.h"
diff --git a/src/common/blkdev_win32.cc b/src/common/win32/blkdev.cc
index c3e28e343ff..bb815a044fc 100644
--- a/src/common/blkdev_win32.cc
+++ b/src/common/win32/blkdev.cc
@@ -13,7 +13,7 @@
*/
#include <errno.h>
-#include "blkdev.h"
+#include "common/blkdev.h"
int get_device_by_path(const char *path, char* partition, char* device,
size_t max)
diff --git a/src/common/dlfcn_win32.cc b/src/common/win32/dlfcn.cc
index 329d14677bd..329d14677bd 100644
--- a/src/common/dlfcn_win32.cc
+++ b/src/common/win32/dlfcn.cc
diff --git a/src/common/dns_resolve_win32.cc b/src/common/win32/dns_resolve.cc
index b7a888b30eb..8a7c80bff04 100644
--- a/src/common/dns_resolve_win32.cc
+++ b/src/common/win32/dns_resolve.cc
@@ -13,7 +13,7 @@
*/
#include "include/scope_guard.h"
-#include "dns_resolve.h"
+#include "common/dns_resolve.h"
#include "common/debug.h"
#define dout_subsys ceph_subsys_
diff --git a/src/common/win32_errno.cc b/src/common/win32/errno.cc
index 25753779d01..25753779d01 100644
--- a/src/common/win32_errno.cc
+++ b/src/common/win32/errno.cc
diff --git a/src/common/ifaddrs_win32.cc b/src/common/win32/ifaddrs.cc
index d7de4a5ff8a..d7de4a5ff8a 100644
--- a/src/common/ifaddrs_win32.cc
+++ b/src/common/win32/ifaddrs.cc
diff --git a/src/common/registry_win32.cc b/src/common/win32/registry.cc
index eb809a40f79..d032e3b602a 100644
--- a/src/common/registry_win32.cc
+++ b/src/common/win32/registry.cc
@@ -15,7 +15,7 @@
#include "common/debug.h"
#include "common/errno.h"
-#include "common/registry_win32.h"
+#include "common/win32/registry.h"
RegistryKey::RegistryKey(CephContext *cct_, HKEY hRootKey, LPCTSTR strKey,
bool create_value): cct(cct_)
diff --git a/src/common/registry_win32.h b/src/common/win32/registry.h
index 974d662de2d..974d662de2d 100644
--- a/src/common/registry_win32.h
+++ b/src/common/win32/registry.h
diff --git a/src/common/service_win32.cc b/src/common/win32/service.cc
index 6297531d3de..df0e834137c 100644
--- a/src/common/service_win32.cc
+++ b/src/common/win32/service.cc
@@ -15,7 +15,7 @@
#include "common/debug.h"
#include "common/errno.h"
-#include "common/service_win32.h"
+#include "common/win32/service.h"
// Initialize the singleton service instance.
ServiceBase *ServiceBase::s_service = NULL;
diff --git a/src/common/service_win32.h b/src/common/win32/service.h
index 5adcdea223f..5adcdea223f 100644
--- a/src/common/service_win32.h
+++ b/src/common/win32/service.h