Add skeleton codes for rsc-copy tool 24/261924/10
authorJunghyun Yeon <jungh.yeon@samsung.com>
Thu, 29 Jul 2021 02:31:43 +0000 (11:31 +0900)
committerJunghyun Yeon <jungh.yeon@samsung.com>
Thu, 5 Aug 2021 02:06:35 +0000 (11:06 +0900)
commit83e9c02a053933662a222ade1531496436c3bcbc
treeea83099aebcc5dacde9ac814e995c9657e311d79
parent521f68182367e840140c4ec3cf667af3c324e6cd
Add skeleton codes for rsc-copy tool

Change-Id: I3cdeb756b7acfc38b205cadb343312ac1e6ca553
Signed-off-by: Junghyun Yeon <jungh.yeon@samsung.com>
29 files changed:
CMakeLists.txt
packaging/pkgmgr-tool.spec
src/CMakeLists.txt
src/rsc-copy/CMakeLists.txt [new file with mode: 0644]
src/rsc-copy/include/abstract_request_handler.hh [new file with mode: 0644]
src/rsc-copy/include/condition_validator.hh [new file with mode: 0644]
src/rsc-copy/include/copy_request_handler.hh [new file with mode: 0644]
src/rsc-copy/include/error_type.hh [new file with mode: 0644]
src/rsc-copy/include/event_signal_sender.hh [new file with mode: 0644]
src/rsc-copy/include/logging.hh [new file with mode: 0644]
src/rsc-copy/include/param_checker.hh [new file with mode: 0644]
src/rsc-copy/include/remove_request_handler.hh [new file with mode: 0644]
src/rsc-copy/include/request_handler_invoker.hh [new file with mode: 0644]
src/rsc-copy/include/request_type.hh [new file with mode: 0644]
src/rsc-copy/include/rsc_handler.hh [new file with mode: 0644]
src/rsc-copy/include/rsc_path_info.hh [new file with mode: 0644]
src/rsc-copy/include/uninstall_request_handler.hh [new file with mode: 0644]
src/rsc-copy/src/abstract_request_handler.cc [new file with mode: 0644]
src/rsc-copy/src/condition_validator.cc [new file with mode: 0644]
src/rsc-copy/src/copy_request_handler.cc [new file with mode: 0644]
src/rsc-copy/src/event_signal_sender.cc [new file with mode: 0644]
src/rsc-copy/src/logging.cc [new file with mode: 0644]
src/rsc-copy/src/param_checker.cc [new file with mode: 0644]
src/rsc-copy/src/remove_request_handler.cc [new file with mode: 0644]
src/rsc-copy/src/request_handler_invoker.cc [new file with mode: 0644]
src/rsc-copy/src/rsc_copy_main.cc [new file with mode: 0644]
src/rsc-copy/src/rsc_handler.cc [new file with mode: 0644]
src/rsc-copy/src/rsc_path_info.cc [new file with mode: 0644]
src/rsc-copy/src/uninstall_request_handler.cc [new file with mode: 0644]