Add rule for 'All devices apps' when access rule is empty.
[platform/core/connectivity/smartcard-service.git] / common / GDBusHelper.cpp
1 /*
2  * Copyright (c) 2012, 2013 Samsung Electronics Co., Ltd.
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
17 #include "GDBusHelper.h"
18
19 namespace smartcard_service_api
20 {
21         void GDBusHelper::convertVariantToByteArray(GVariant *var,
22                 ByteArray &array)
23         {
24                 GVariantIter *iter;
25                 guint8 element;
26                 guint8 *buf = NULL;
27                 guint size = 0;
28                 guint i;
29
30                 g_variant_get(var, "a(y)", &iter);
31
32                 size = g_variant_iter_n_children(iter);
33                 buf  = g_new0(guint8, size);
34
35                 for (i = 0; g_variant_iter_loop(iter, "(y)", &element); i++)
36                 {
37                         buf[i] = element;
38                 }
39
40                 g_variant_iter_free(iter);
41
42                 array.assign((uint8_t *)buf, (uint32_t)i);
43
44                 g_free(buf);
45         }
46
47         GVariant *GDBusHelper::convertByteArrayToVariant(const ByteArray &array)
48         {
49                 GVariantBuilder builder;
50                 uint32_t i;
51
52                 g_variant_builder_init(&builder, G_VARIANT_TYPE("a(y)"));
53
54                 for (i = 0; i < array.size(); i++)
55                         g_variant_builder_add(&builder, "(y)", array[i]);
56
57                 return g_variant_builder_end(&builder);
58         }
59 } /* namespace smartcard_service_api */