Skip to content
Snippets Groups Projects
Commit 658acd8e authored by Eric Cano's avatar Eric Cano
Browse files

Further moved common structures out of the scheduler directory.

parent 660c89db
No related branches found
No related tags found
No related merge requests found
Showing
with 21 additions and 9 deletions
...@@ -10,24 +10,35 @@ set (COMMON_LIB_SRC_FILES ...@@ -10,24 +10,35 @@ set (COMMON_LIB_SRC_FILES
archiveNS/ArchiveDirEntry.cpp archiveNS/ArchiveDirEntry.cpp
archiveNS/ArchiveDirIterator.cpp archiveNS/ArchiveDirIterator.cpp
archiveNS/ArchiveFileStatus.cpp archiveNS/ArchiveFileStatus.cpp
archiveNS/StorageClass.cpp
archiveNS/Tape.cpp
archiveNS/TapeCopyLocation.cpp
archiveNS/TapeCopyLocationAndStatus.cpp archiveNS/TapeCopyLocationAndStatus.cpp
CreationLog.cpp CreationLog.cpp
checksum/ByteArray.cpp checksum/ByteArray.cpp
checksum/Checksum.cpp checksum/Checksum.cpp
exception/Backtrace.cpp exception/Backtrace.cpp
exception/DiskException.hpp
exception/Errnum.cpp exception/Errnum.cpp
exception/Exception.cpp exception/Exception.cpp
exception/Serrnum.cpp exception/Serrnum.cpp
exception/TapeException.cpp
priorities/DriveQuota.cpp
priorities/MountCriteria.cpp
priorities/UserGroup.cpp
remoteFS/RemoteFileStatus.cpp remoteFS/RemoteFileStatus.cpp
remoteFS/RemotePath.cpp remoteFS/RemotePath.cpp
remoteFS/RemotePathAndStatus.cpp remoteFS/RemotePathAndStatus.cpp
SecurityIdentity.cpp
strerror_r_wrapper.cpp strerror_r_wrapper.cpp
TapePool.cpp
Timer.cpp Timer.cpp
threading/ChildProcess.cpp threading/ChildProcess.cpp
threading/Mutex.cpp threading/Mutex.cpp
threading/Threading.cpp threading/Threading.cpp
UserIdentity.cpp UserIdentity.cpp
Utils.cpp) Utils.cpp
VO.cpp)
add_library (ctacommon SHARED add_library (ctacommon SHARED
${COMMON_LIB_SRC_FILES}) ${COMMON_LIB_SRC_FILES})
...@@ -42,6 +53,7 @@ set (COMMON_UNIT_TESTS_LIB_SRC_FILES ...@@ -42,6 +53,7 @@ set (COMMON_UNIT_TESTS_LIB_SRC_FILES
checksum/ByteArrayTest.cpp checksum/ByteArrayTest.cpp
checksum/ChecksumTest.cpp checksum/ChecksumTest.cpp
remoteFS/RemotePathTest.cpp remoteFS/RemotePathTest.cpp
UserIdentityTest.cpp
UtilsTest.cpp) UtilsTest.cpp)
add_library (ctacommonunittests SHARED add_library (ctacommonunittests SHARED
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "scheduler/SecurityIdentity.hpp" #include "common/SecurityIdentity.hpp"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// constructor // constructor
......
File moved
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "scheduler/TapePool.hpp" #include "common/TapePool.hpp"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// constructor // constructor
......
File moved
File moved
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "scheduler/VO.hpp" #include "common/VO.hpp"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// constructor // constructor
......
File moved
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "scheduler/StorageClass.hpp" #include "common/archiveNS/StorageClass.hpp"
#include "common/CreationLog.hpp" #include "common/CreationLog.hpp"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
......
File moved
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "scheduler/Tape.hpp" #include "common/archiveNS/Tape.hpp"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// constructor // constructor
......
File moved
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "scheduler/TapeCopyLocation.hpp" #include "common/archiveNS/TapeCopyLocation.hpp"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// constructor // constructor
......
File moved
File moved
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "scheduler/TapeException.hpp" #include "common/exception/TapeException.hpp"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// constructor // constructor
......
File moved
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "scheduler/DriveQuota.hpp" #include "common/priorities/DriveQuota.hpp"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// constructor // constructor
......
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment