Initialize Tizen 2.3
[framework/web/wrt-plugins-common.git] / src_mobile / modules / API / Filesystem / IManager.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 <Filesystem/Manager.h>
17 #include <Commons/ThreadPool.h>
18 #include "IManager.h"
19
20 namespace WrtDeviceApis {
21 namespace Filesystem {
22 namespace Api {
23 IManager& IManager::getInstance()
24 {
25     static Manager instance;
26     return instance;
27 }
28
29 bool IManager::fileExists(const std::string &file)
30 {
31     return WrtDeviceApis::Filesystem::Manager::fileExists(file);
32 }
33
34 IManager::IManager() :
35     Commons::EventRequestReceiver<EventResolve>(
36         Commons::ThreadEnum::FILESYSTEM_THREAD),
37     Commons::EventRequestReceiver<EventCopy>(
38         Commons::ThreadEnum::FILESYSTEM_THREAD),
39     Commons::EventRequestReceiver<EventMove>(
40         Commons::ThreadEnum::FILESYSTEM_THREAD),
41     Commons::EventRequestReceiver<EventRemove>(
42         Commons::ThreadEnum::FILESYSTEM_THREAD),
43     Commons::EventRequestReceiver<EventFind>(
44         Commons::ThreadEnum::FILESYSTEM_THREAD)
45 {}
46
47 IManager::~IManager()
48 {}
49 } // API
50 } // Filesystem
51 } // WrtDeviceApis