5c189d3a7fc33bc7c91f3bb225b978038e4a2d6b
[framework/web/wrt-plugins-common.git] / src / modules / tizen / DEPRACATED / Camera / AttributeInfo.cpp
1 /*
2  * Copyright (c) 2011 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 /**
17  * @author          Zbigniew Kostrzewa (z.kostrzewa@samsung.com)
18  */
19
20 #include "AttributeInfo.h"
21 #include <commons/Exception.h>
22
23 namespace WrtPlugins {
24 namespace Platform {
25 namespace Camera {
26 namespace AttributeInfo {
27 ArrayOfInt toArrayOfInt(MMHandleType handle,
28         const char* name)
29 {
30     ArrayOfInt result;
31     MMCamAttrsInfo info = {};
32     if (mm_camcorder_get_attribute_info(handle, name, &info) < 0) {
33         ThrowMsg(Commons::PlatformException,
34                  "Error while reading attribute info.");
35     } else {
36         if ((MM_CAM_ATTRS_TYPE_INT != info.type) ||
37             (MM_CAM_ATTRS_VALID_TYPE_INT_ARRAY != info.validity_type)) {
38             ThrowMsg(Commons::ConversionException, "Unable to convert.");
39         }
40         result.assign(info.int_array.array,
41                       info.int_array.array + info.int_array.count);
42     }
43     return result;
44 }
45 } // AttributeInfo
46 } // Camera
47 } // Platform
48 } // WrtPlugins