NABI issue 43925
[apps/osp/Camera.git] / src / CmUtility.cpp
1 //
2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 //
4 // Licensed under the Flora License, Version 1.1 (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://floralicense.org/license/
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 /**
18  * @file: MfUtility.cpp
19  * @brief: This file contains the implementation of MfUtility class, which is a common utility function class and
20  * contains helper functions which are used throughout the Application.
21  */
22
23 #include "CmUtility.h"
24
25 using namespace Tizen::App;
26 using namespace Tizen::Base;
27 using namespace Tizen::System;
28
29 long long
30 CmUtility::GetAvailableMemory(void)
31 {
32         result r = E_SUCCESS;
33
34         String key(L"http://tizen.org/runtime/storage.available.internal");
35         long long allocatedMemory = 0;
36
37         r = RuntimeInfo::GetValue(key, allocatedMemory);
38         TryCatch(r == E_SUCCESS, , "MyRuntimeInfo: Failed to get value");
39
40         return allocatedMemory;
41
42 CATCH:
43         return 0;
44 }