2 * Copyright (c) 2000 - 2014 Samsung Electronics Co., Ltd All Rights Reserved
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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
18 * @author Krzysztof Jackiewicz (k.jackiewicz@samsung.com)
24 #include <unordered_set>
26 #include <ckm/ckm-type.h>
28 void switch_to_storage_user(const char* label);
29 void switch_to_storage_ocsp_user(const char* label);
32 // service lifecycle management
37 void start_service(ServiceIdx idx);
38 void stop_service(ServiceIdx idx);
41 // Class responsible for db cleanup after positive tests. Will remove all used aliases in destructor
47 const char* alias(const char* alias)
49 return m_aliases.insert(CKM::Alias(alias)).first->c_str();
55 std::unordered_set<CKM::Alias> m_aliases;
59 typedef std::unique_ptr<char, void (*)(void *)> CharPtr;
61 // returns process label
64 std::string aliasWithLabel(const char *label, const char *alias);
66 // changes process label
67 void change_label(const char* label);
69 // changes process label upon construction and restores it upon destruction
73 ScopedLabel(const char* label);
77 CharPtr m_original_label;