tizen beta release
[framework/web/wrt-plugins-common.git] / src / modules / tizen / Profile / Desktop.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 #include "Desktop.h"
17 #include <Filesystem/Path.h>
18 #include <vconf-keys.h>
19 #include <Commons/Exception.h>
20 #include <Filesystem/Manager.h>
21 #include <Profile/IManager.h>
22
23 namespace WrtDeviceApis {
24 namespace Profile {
25
26 Filesystem::Api::IPathPtr Desktop::getWallpaper() const
27 {
28     // TODO: conversion...?
29     return Filesystem::Api::IPath::create(m_wallpaperKey.getString());
30 }
31
32 void Desktop::setWallpaper(const Filesystem::Api::IPathPtr& path)
33 {
34     // TODO: probably we shouldn't expose full path
35     std::string p = path->getFullPath();
36     if (!Filesystem::Manager::fileExists(p)) {
37         LogError("Wallpaper not found. Path: " << p);
38         Throw(Commons::PlatformException);
39     }
40     m_wallpaperKey.setValue(p);
41 }
42
43 void Desktop::setWallpaper(const Api::EventSetWallpaperPtr& event)
44 {
45     EventSetWallpaperReqReceiver::PostRequest(event);
46 }
47
48 void Desktop::OnRequestReceived(const Api::EventSetWallpaperPtr& event)
49 {
50     Try
51     {
52         if (Api::IManager::getInstance().getDesktopCount() == 0) {
53             Throw(Commons::UnsupportedException);
54         }
55         Api::IDesktopPtr desktop = Api::IManager::getInstance().getDesktop(
56                 IDesktop::DEFAULT);
57         if (!desktop) {
58             LogError("No default desktop.");
59             Throw(Commons::UnsupportedException);
60         }
61
62         desktop->setWallpaper(Filesystem::Api::IPath::create(event->getPathRef()));
63     }
64     Catch(Commons::PlatformException) {
65         LogError("platform exception");
66         event->setExceptionCode(Commons::ExceptionCodes::PlatformException);
67     }
68     Catch(Commons::UnsupportedException) {
69         LogError("unsupported exception");
70         event->setExceptionCode(Commons::ExceptionCodes::UnsupportedException);
71     }
72     Catch(Commons::InvalidArgumentException) {
73         LogError("invalid argument exception");
74         event->setExceptionCode(
75             Commons::ExceptionCodes::InvalidArgumentException);
76     }
77 }
78
79 Desktop::Desktop() : EventSetWallpaperReqReceiver(Commons::ThreadEnum::PROFILE_THREAD),
80     m_wallpaperKey(VCONFKEY_BGSET)
81 {
82 }
83 } // Profile
84 } // WrtDeviceApis