2 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
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
8 // http://www.apache.org/licenses/LICENSE-2.0
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.
18 * @file FIo_FileEventManager.cpp
19 * @brief This is the implementation file for _FileEventManager class.
22 #include <unique_ptr.h>
24 #include <sys/inotify.h>
27 #include <FBaseInteger.h>
28 #include <FBaseString.h>
29 #include <FBaseColAllElementsDeleter.h>
30 #include <FBaseColIMapEnumerator.h>
31 #include <FBaseSysLog.h>
33 #include <FIoFileEventManager.h>
34 #include <FIoIFileEventListener.h>
36 #include <FBase_StringConverter.h>
37 #include <FBase_NativeError.h>
38 #include "FIo_FileEventManagerImpl.h"
39 #include "FIo_FileEventDispatcher.h"
40 #include "FIo_FileEvent.h"
43 using namespace Tizen::Base;
44 using namespace Tizen::Base::Runtime;
45 using namespace Tizen::Base::Collection;
47 namespace Tizen { namespace Io
50 _FileEventManagerImpl::_FileEventManagerImpl(void)
57 _FileEventManagerImpl::~_FileEventManagerImpl(void)
59 SysLog(NID_IO, "_FileEventManagerImpl: 0x%x", this);
61 if (__pWatchList != null)
63 _FileEventDispatcher* pDispatcher = _FileEventDispatcher::GetInstance();
64 IMapEnumerator* pMapEnum = __pWatchList->GetMapEnumeratorN();
65 while (pMapEnum->MoveNext() == E_SUCCESS)
67 Integer* pWd = dynamic_cast< Integer* >(pMapEnum->GetValue());
70 SysLog(NID_IO, "inotify fd: %d, watch description: %d", __inotifyFd, pWd->ToInt());
71 int res = inotify_rm_watch(__inotifyFd, pWd->ToInt());
72 SysTryLog(NID_IO, res == 0, "inotify_rm_watch() failed, errno: %d (%s)", errno, strerror(errno));
73 pDispatcher->RemoveFileEventInfo(*pWd);
83 _FileEventManagerImpl::Construct(IFileEventListener& listener)
85 unique_ptr< HashMap > pWatchList(new (std::nothrow) HashMap(SingleObjectDeleter));
86 SysTryReturnResult(NID_IO, pWatchList != null, E_OUT_OF_MEMORY, "The memory is insufficient.");
87 pWatchList->Construct();
89 _FileEventDispatcher* pDispatcher = _FileEventDispatcher::GetInstance();
91 unique_ptr< _FileEvent > pEvent(new (std::nothrow) _FileEvent());
92 SysTryReturnResult(NID_IO, pEvent != null, E_OUT_OF_MEMORY, "The memory is insufficient.");
93 result r = pEvent->Construct();
94 SysTryReturn(NID_IO, !IsFailed(r), E_IO, r, "[%s] The caller is a worker thread.", GetErrorMessage(r));
96 r = pEvent->AddListener(listener, true);
97 SysTryReturn(NID_IO, r == E_SUCCESS || r == E_OBJ_ALREADY_EXIST, E_IO, r,
98 "[%s] The caller is a worker thread.", GetErrorMessage(r));
100 __inotifyFd = pDispatcher->GetInotifyFd();
101 __pWatchList = pWatchList.release();
102 __pEvent = pEvent.release();
104 SysLog(NID_IO, "_FileEventManagerImpl: 0x%x, _Event: 0x%x", this, __pEvent);
109 _FileEventManagerImpl::AddPath(const String& path, unsigned long eventsToMonitor)
111 SysSecureLog(NID_IO, "Add watch path: %ls, _FileEventManagerImpl: 0x%x", path.GetPointer(), this);
112 result r = E_SUCCESS;
114 SysTryReturnResult(NID_IO, File::IsFileExist(path) == true, E_FILE_NOT_FOUND,
115 "The path (%ls) dose not exist.", path.GetPointer());
117 unique_ptr< char[] > pPath(_StringConverter::CopyToCharArrayN(path));
118 SysTryReturnResult(NID_IO, pPath != null, GetLastResult(), "Propagating to caller...");
120 int watchDescription = inotify_add_watch(__inotifyFd, pPath.get(), eventsToMonitor & ~IN_IGNORED);
121 if (watchDescription == -1)
127 SysLogException(NID_IO, E_IO, "Read access to the given file (%s) is not permitted.", pPath.get());
128 r = E_ILLEGAL_ACCESS;
131 SysLogException(NID_IO, E_IO, "The path (%s) points outside of the process's accessible address space.", pPath.get());
132 r = E_ILLEGAL_ACCESS;
135 SysLogException(NID_IO, E_IO, "The given file descriptor is not valid.");
138 SysLogException(NID_IO, E_INVALID_ARG, "The given event mask contains no valid events; or fd is not an inotify file descriptor.");
142 SysLogException(NID_IO, E_IO, "Insufficient kernel memory was available.");
145 SysLogException(NID_IO, E_IO, "The user limit on the total number of inotify watches was reached or the kernel failed to allocate a needed resource");
154 Integer* pWatchDescription = new (std::nothrow) Integer(watchDescription);
155 _FileEventInfo* pFileEventInfo = new (std::nothrow) _FileEventInfo();
156 String* pWatchPath = new (std::nothrow) String(path);
157 Integer* pWd = new (std::nothrow) Integer(watchDescription);
158 SysTryCatch(NID_IO, pWatchDescription != null && pFileEventInfo != null && pWatchPath != null && pWd != null,
159 r = E_OUT_OF_MEMORY, E_OUT_OF_MEMORY, "The memory is insufficient.");
161 pFileEventInfo->pFileEventManagerImpl = this;
162 pFileEventInfo->path = path;
164 r = _FileEventDispatcher::GetInstance()->AddFileEventInfo(pWatchDescription, pFileEventInfo);
165 SysTryCatch(NID_IO, r == E_SUCCESS || r == E_OBJ_ALREADY_EXIST, r = E_IO, r,
166 "[%s] Failed to add file event info.", GetErrorMessage(r));
167 if (r == E_OBJ_ALREADY_EXIST)
169 SysLog(NID_IO, "FileEventInfo already exists.");
170 delete pWatchDescription;
171 delete pFileEventInfo;
177 SysLog(NID_IO, "Add to watch list");
178 __pWatchList->Add(pWatchPath, pWd);
184 delete pWatchDescription;
185 delete pFileEventInfo;
193 _FileEventManagerImpl::RemovePath(const String& path)
195 SysSecureLog(NID_IO, "Remove watch path (%ls), _FileEventManagerImpl: 0x%x", path.GetPointer(), this);
197 Integer* pWd = dynamic_cast< Integer* >(__pWatchList->GetValue(path));
198 SysTryReturnResult(NID_IO, pWd != null, E_IO, "The path (%ls) is not registered.", path.GetPointer());
200 SysTryReturnResult(NID_IO, inotify_rm_watch(__inotifyFd, pWd->ToInt()) == 0,
201 E_IO, "The path (%ls) is not registered.", path.GetPointer());
203 _FileEventDispatcher::GetInstance()->RemoveFileEventInfo(*pWd);
204 __pWatchList->Remove(path);
209 _FileEventManagerImpl*
210 _FileEventManagerImpl::GetInstance(FileEventManager& fileEventManager)
212 return fileEventManager.__pFileEventManagerImpl;
215 const _FileEventManagerImpl*
216 _FileEventManagerImpl::GetInstance(const FileEventManager& fileEventManager)
218 return fileEventManager.__pFileEventManagerImpl;