7947c6b489d26717fbfc81e54333c4fffe1d9d92
[platform/core/security/krate.git] / module / krate-builder.h
1 /*
2  *  Copyright (c) 2015 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 #ifndef __KRATE_BUILDER_H__
17 #define __KRATE_BUILDER_H__
18
19 #include <string>
20 #include <vector>
21 #include <memory>
22
23 #include <klay/xml/parser.h>
24 #include <klay/xml/document.h>
25 #include <klay/auth/user.h>
26
27 class KrateBuilder final {
28 public:
29         KrateBuilder(const runtime::User& user, const std::string& manifestPath);
30         virtual ~KrateBuilder();
31
32         void mountOwnFilesystem();
33
34 protected:
35         void bindFilesystemNode(const std::string& source, const std::string& target,
36                                                         const std::string& type, const std::string& options,
37                                                         bool create = true);
38 private:
39         std::string name;
40         uid_t uid;
41         gid_t gid;
42         std::unique_ptr<xml::Document> manifest;
43 };
44
45 #endif //!__KRATE_BUILDER_H__