SM : Add ScopedInstaller and ScopedPathRemover classes
[platform/core/test/security-tests.git] / src / security-manager-tests / common / scoped_path_remover.h
1 /*
2  * Copyright (c) 2014-2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License");
5  *    you may not use this file except in compliance with the License.
6  *    You may obtain a copy of the License at
7  *
8  *        http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS,
12  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *    See the License for the specific language governing permissions and
14  *    limitations under the License.
15  */
16 #pragma once
17
18 #include <vector>
19 #include <utility>
20
21 class ScopedPathRemover {
22 public:
23     ScopedPathRemover(std::initializer_list<std::string> &&vec)
24         : m_dirVec(std::move(vec))
25     {}
26
27     ~ScopedPathRemover() {
28         // FIXME : Properly remove files and not empty directories
29         for (const auto &dir : m_dirVec)
30             rmdir(dir.c_str());
31     }
32
33 protected:
34     std::vector<std::string> m_dirVec;
35 };