Rev 35 | Rev 39 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
3 | luk | 1 | |
2 | /// inotify C++ interface implementation |
||
3 | /** |
||
4 | * \file inotify-cxx.cpp |
||
5 | * |
||
6 | * inotify C++ interface |
||
7 | * |
||
35 | luk | 8 | * Copyright (C) 2006, 2007 Lukas Jelinek <lukas@aiken.cz> |
3 | luk | 9 | * |
10 | * This program is free software; you can redistribute it and/or |
||
11 | * modify it under the terms of one of the following licenses: |
||
12 | * |
||
13 | * \li 1. X11-style license (see LICENSE-X11) |
||
14 | * \li 2. GNU Lesser General Public License, version 2.1 (see LICENSE-LGPL) |
||
15 | * \li 3. GNU General Public License, version 2 (see LICENSE-GPL) |
||
16 | * |
||
17 | * If you want to help with choosing the best license for you, |
||
18 | * please visit http://www.gnu.org/licenses/license-list.html. |
||
19 | * |
||
20 | */ |
||
21 | |||
22 | |||
23 | #include <errno.h> |
||
24 | #include <unistd.h> |
||
13 | luk | 25 | #include <fcntl.h> |
3 | luk | 26 | |
27 | #include "inotify-cxx.h" |
||
28 | |||
29 | luk | 29 | /// procfs inotify base path |
30 | #define PROCFS_INOTIFY_BASE "/proc/sys/fs/inotify/" |
||
31 | |||
13 | luk | 32 | /// dump separator (between particular entries) |
3 | luk | 33 | #define DUMP_SEP \ |
34 | ({ \ |
||
35 | if (!rStr.empty()) { \ |
||
11 | luk | 36 | rStr.append(","); \ |
3 | luk | 37 | } \ |
38 | }) |
||
39 | |||
13 | luk | 40 | |
23 | luk | 41 | |
13 | luk | 42 | int32_t InotifyEvent::GetDescriptor() const |
43 | { |
||
44 | return m_pWatch != NULL // if watch exists |
||
45 | ? m_pWatch->GetDescriptor() // return its descriptor |
||
46 | : -1; // else return -1 |
||
47 | } |
||
48 | |||
11 | luk | 49 | uint32_t InotifyEvent::GetMaskByName(const std::string& rName) |
50 | { |
||
51 | if (rName == "IN_ACCESS") |
||
52 | return IN_ACCESS; |
||
53 | else if (rName == "IN_MODIFY") |
||
54 | return IN_MODIFY; |
||
55 | else if (rName == "IN_ATTRIB") |
||
56 | return IN_ATTRIB; |
||
57 | else if (rName == "IN_CLOSE_WRITE") |
||
58 | return IN_CLOSE_WRITE; |
||
59 | else if (rName == "IN_CLOSE_NOWRITE") |
||
60 | return IN_CLOSE_NOWRITE; |
||
25 | luk | 61 | else if (rName == "IN_OPEN") |
62 | return IN_OPEN; |
||
11 | luk | 63 | else if (rName == "IN_MOVED_FROM") |
64 | return IN_MOVED_FROM; |
||
65 | else if (rName == "IN_MOVED_TO") |
||
66 | return IN_MOVED_TO; |
||
67 | else if (rName == "IN_CREATE") |
||
68 | return IN_CREATE; |
||
69 | else if (rName == "IN_DELETE") |
||
70 | return IN_DELETE; |
||
71 | else if (rName == "IN_DELETE_SELF") |
||
72 | return IN_DELETE_SELF; |
||
73 | else if (rName == "IN_UNMOUNT") |
||
74 | return IN_UNMOUNT; |
||
75 | else if (rName == "IN_Q_OVERFLOW") |
||
76 | return IN_Q_OVERFLOW; |
||
77 | else if (rName == "IN_IGNORED") |
||
78 | return IN_IGNORED; |
||
79 | else if (rName == "IN_CLOSE") |
||
80 | return IN_CLOSE; |
||
81 | else if (rName == "IN_MOVE") |
||
82 | return IN_MOVE; |
||
83 | else if (rName == "IN_ISDIR") |
||
84 | return IN_ISDIR; |
||
85 | else if (rName == "IN_ONESHOT") |
||
86 | return IN_ONESHOT; |
||
87 | else if (rName == "IN_ALL_EVENTS") |
||
88 | return IN_ALL_EVENTS; |
||
89 | |||
17 | luk | 90 | #ifdef IN_DONT_FOLLOW |
91 | else if (rName == "IN_DONT_FOLLOW") |
||
92 | return IN_DONT_FOLLOW; |
||
93 | #endif // IN_DONT_FOLLOW |
||
94 | |||
95 | #ifdef IN_ONLYDIR |
||
96 | else if (rName == "IN_ONLYDIR") |
||
97 | return IN_ONLYDIR; |
||
98 | #endif // IN_ONLYDIR |
||
29 | luk | 99 | |
100 | #ifdef IN_MOVE_SELF |
||
101 | else if (rName == "IN_MOVE_SELF") |
||
102 | return IN_MOVE_SELF; |
||
103 | #endif // IN_MOVE_SELF |
||
17 | luk | 104 | |
11 | luk | 105 | return (uint32_t) 0; |
106 | } |
||
3 | luk | 107 | |
11 | luk | 108 | void InotifyEvent::DumpTypes(uint32_t uValue, std::string& rStr) |
3 | luk | 109 | { |
110 | rStr = ""; |
||
111 | |||
11 | luk | 112 | if (IsType(uValue, IN_ALL_EVENTS)) { |
113 | rStr.append("IN_ALL_EVENTS"); |
||
3 | luk | 114 | } |
11 | luk | 115 | else { |
116 | if (IsType(uValue, IN_ACCESS)) { |
||
117 | DUMP_SEP; |
||
118 | rStr.append("IN_ACCESS"); |
||
119 | } |
||
120 | if (IsType(uValue, IN_MODIFY)) { |
||
121 | DUMP_SEP; |
||
122 | rStr.append("IN_MODIFY"); |
||
123 | } |
||
124 | if (IsType(uValue, IN_ATTRIB)) { |
||
125 | DUMP_SEP; |
||
126 | rStr.append("IN_ATTRIB"); |
||
127 | } |
||
128 | if (IsType(uValue, IN_CREATE)) { |
||
129 | DUMP_SEP; |
||
130 | rStr.append("IN_CREATE"); |
||
131 | } |
||
132 | if (IsType(uValue, IN_DELETE)) { |
||
133 | DUMP_SEP; |
||
134 | rStr.append("IN_DELETE"); |
||
135 | } |
||
136 | if (IsType(uValue, IN_DELETE_SELF)) { |
||
137 | DUMP_SEP; |
||
138 | rStr.append("IN_DELETE_SELF"); |
||
139 | } |
||
140 | if (IsType(uValue, IN_OPEN)) { |
||
141 | DUMP_SEP; |
||
142 | rStr.append("IN_OPEN"); |
||
143 | } |
||
144 | if (IsType(uValue, IN_CLOSE)) { |
||
145 | DUMP_SEP; |
||
146 | rStr.append("IN_CLOSE"); |
||
147 | } |
||
35 | luk | 148 | |
149 | #ifdef IN_MOVE_SELF |
||
150 | if (IsType(uValue, IN_MOVE_SELF)) { |
||
151 | DUMP_SEP; |
||
152 | rStr.append("IN_MOVE_SELF"); |
||
153 | } |
||
154 | #endif // IN_MOVE_SELF |
||
155 | |||
11 | luk | 156 | else { |
157 | if (IsType(uValue, IN_CLOSE_WRITE)) { |
||
158 | DUMP_SEP; |
||
159 | rStr.append("IN_CLOSE_WRITE"); |
||
160 | } |
||
161 | if (IsType(uValue, IN_CLOSE_NOWRITE)) { |
||
162 | DUMP_SEP; |
||
163 | rStr.append("IN_CLOSE_NOWRITE"); |
||
164 | } |
||
165 | } |
||
166 | if (IsType(uValue, IN_MOVE)) { |
||
167 | DUMP_SEP; |
||
168 | rStr.append("IN_MOVE"); |
||
169 | } |
||
170 | else { |
||
171 | if (IsType(uValue, IN_MOVED_FROM)) { |
||
172 | DUMP_SEP; |
||
173 | rStr.append("IN_MOVED_FROM"); |
||
174 | } |
||
175 | if (IsType(uValue, IN_MOVED_TO)) { |
||
176 | DUMP_SEP; |
||
177 | rStr.append("IN_MOVED_TO"); |
||
178 | } |
||
179 | } |
||
3 | luk | 180 | } |
11 | luk | 181 | if (IsType(uValue, IN_UNMOUNT)) { |
3 | luk | 182 | DUMP_SEP; |
183 | rStr.append("IN_UNMOUNT"); |
||
184 | } |
||
11 | luk | 185 | if (IsType(uValue, IN_Q_OVERFLOW)) { |
3 | luk | 186 | DUMP_SEP; |
187 | rStr.append("IN_Q_OVERFLOW"); |
||
188 | } |
||
11 | luk | 189 | if (IsType(uValue, IN_IGNORED)) { |
3 | luk | 190 | DUMP_SEP; |
191 | rStr.append("IN_IGNORED"); |
||
192 | } |
||
11 | luk | 193 | if (IsType(uValue, IN_ISDIR)) { |
3 | luk | 194 | DUMP_SEP; |
195 | rStr.append("IN_ISDIR"); |
||
196 | } |
||
11 | luk | 197 | if (IsType(uValue, IN_ONESHOT)) { |
3 | luk | 198 | DUMP_SEP; |
199 | rStr.append("IN_ONESHOT"); |
||
200 | } |
||
17 | luk | 201 | |
202 | #ifdef IN_DONT_FOLLOW |
||
203 | if (IsType(uValue, IN_DONT_FOLLOW)) { |
||
204 | DUMP_SEP; |
||
205 | rStr.append("IN_DONT_FOLLOW"); |
||
206 | } |
||
207 | #endif // IN_DONT_FOLLOW |
||
208 | |||
209 | #ifdef IN_ONLYDIR |
||
210 | if (IsType(uValue, IN_ONLYDIR)) { |
||
211 | DUMP_SEP; |
||
212 | rStr.append("IN_ONLYDIR"); |
||
213 | } |
||
214 | #endif // IN_ONLYDIR |
||
3 | luk | 215 | } |
216 | |||
11 | luk | 217 | void InotifyEvent::DumpTypes(std::string& rStr) const |
218 | { |
||
13 | luk | 219 | DumpTypes(m_uMask, rStr); |
11 | luk | 220 | } |
3 | luk | 221 | |
11 | luk | 222 | |
17 | luk | 223 | void InotifyWatch::SetMask(uint32_t uMask) throw (InotifyException) |
224 | { |
||
21 | luk | 225 | IN_WRITE_BEGIN |
226 | |||
17 | luk | 227 | if (m_wd != -1) { |
228 | int wd = inotify_add_watch(m_pInotify->GetDescriptor(), m_path.c_str(), uMask); |
||
21 | luk | 229 | if (wd != m_wd) { |
230 | IN_WRITE_END_NOTHROW |
||
17 | luk | 231 | throw InotifyException(IN_EXC_MSG("changing mask failed"), wd == -1 ? errno : EINVAL, this); |
21 | luk | 232 | } |
17 | luk | 233 | } |
234 | |||
235 | m_uMask = uMask; |
||
21 | luk | 236 | |
237 | IN_WRITE_END |
||
17 | luk | 238 | } |
239 | |||
240 | void InotifyWatch::SetEnabled(bool fEnabled) throw (InotifyException) |
||
241 | { |
||
21 | luk | 242 | IN_WRITE_BEGIN |
243 | |||
244 | if (fEnabled == m_fEnabled) { |
||
245 | IN_WRITE_END_NOTHROW |
||
17 | luk | 246 | return; |
21 | luk | 247 | } |
17 | luk | 248 | |
249 | if (m_pInotify != NULL) { |
||
250 | if (fEnabled) { |
||
251 | m_wd = inotify_add_watch(m_pInotify->GetDescriptor(), m_path.c_str(), m_uMask); |
||
21 | luk | 252 | if (m_wd == -1) { |
253 | IN_WRITE_END_NOTHROW |
||
17 | luk | 254 | throw InotifyException(IN_EXC_MSG("enabling watch failed"), errno, this); |
21 | luk | 255 | } |
17 | luk | 256 | m_pInotify->m_watches.insert(IN_WATCH_MAP::value_type(m_wd, this)); |
257 | } |
||
258 | else { |
||
21 | luk | 259 | if (inotify_rm_watch(m_pInotify->GetDescriptor(), m_wd) != 0) { |
260 | IN_WRITE_END_NOTHROW |
||
17 | luk | 261 | throw InotifyException(IN_EXC_MSG("disabling watch failed"), errno, this); |
21 | luk | 262 | } |
17 | luk | 263 | m_pInotify->m_watches.erase(m_wd); |
264 | m_wd = -1; |
||
265 | } |
||
266 | } |
||
267 | |||
268 | m_fEnabled = fEnabled; |
||
21 | luk | 269 | |
270 | IN_WRITE_END |
||
17 | luk | 271 | } |
272 | |||
37 | luk | 273 | void InotifyWatch::__Disable() |
33 | luk | 274 | { |
275 | IN_WRITE_BEGIN |
||
276 | |||
277 | if (!m_fEnabled) { |
||
278 | IN_WRITE_END_NOTHROW |
||
279 | throw InotifyException(IN_EXC_MSG("event cannot occur on disabled watch"), EINVAL, this); |
||
280 | } |
||
281 | |||
282 | if (m_pInotify != NULL) { |
||
283 | m_pInotify->m_watches.erase(m_wd); |
||
284 | m_wd = -1; |
||
285 | } |
||
286 | |||
287 | m_fEnabled = false; |
||
288 | |||
289 | IN_WRITE_END |
||
290 | } |
||
17 | luk | 291 | |
33 | luk | 292 | |
13 | luk | 293 | Inotify::Inotify() throw (InotifyException) |
3 | luk | 294 | { |
21 | luk | 295 | IN_LOCK_INIT |
296 | |||
13 | luk | 297 | m_fd = inotify_init(); |
21 | luk | 298 | if (m_fd == -1) { |
299 | IN_LOCK_DONE |
||
17 | luk | 300 | throw InotifyException(IN_EXC_MSG("inotify init failed"), errno, NULL); |
21 | luk | 301 | } |
3 | luk | 302 | } |
303 | |||
304 | Inotify::~Inotify() |
||
305 | { |
||
306 | Close(); |
||
21 | luk | 307 | |
308 | IN_LOCK_DONE |
||
3 | luk | 309 | } |
310 | |||
311 | void Inotify::Close() |
||
312 | { |
||
21 | luk | 313 | IN_WRITE_BEGIN |
314 | |||
3 | luk | 315 | if (m_fd != -1) { |
316 | RemoveAll(); |
||
317 | close(m_fd); |
||
318 | m_fd = -1; |
||
319 | } |
||
21 | luk | 320 | |
321 | IN_WRITE_END |
||
3 | luk | 322 | } |
323 | |||
13 | luk | 324 | void Inotify::Add(InotifyWatch* pWatch) throw (InotifyException) |
3 | luk | 325 | { |
21 | luk | 326 | IN_WRITE_BEGIN |
327 | |||
17 | luk | 328 | // invalid descriptor - this case shouldn't occur - go away |
21 | luk | 329 | if (m_fd == -1) { |
330 | IN_WRITE_END_NOTHROW |
||
13 | luk | 331 | throw InotifyException(IN_EXC_MSG("invalid file descriptor"), EBUSY, this); |
21 | luk | 332 | } |
17 | luk | 333 | |
334 | // this path already watched - go away |
||
21 | luk | 335 | if (FindWatch(pWatch->GetPath()) != NULL) { |
336 | IN_WRITE_END_NOTHROW |
||
17 | luk | 337 | throw InotifyException(IN_EXC_MSG("path already watched"), EBUSY, this); |
21 | luk | 338 | } |
17 | luk | 339 | |
340 | // for enabled watch |
||
341 | if (pWatch->IsEnabled()) { |
||
3 | luk | 342 | |
17 | luk | 343 | // try to add watch to kernel |
344 | int wd = inotify_add_watch(m_fd, pWatch->GetPath().c_str(), pWatch->GetMask()); |
||
345 | |||
346 | // adding failed - go away |
||
21 | luk | 347 | if (wd == -1) { |
348 | IN_WRITE_END_NOTHROW |
||
17 | luk | 349 | throw InotifyException(IN_EXC_MSG("adding watch failed"), errno, this); |
21 | luk | 350 | } |
17 | luk | 351 | |
352 | // this path already watched (but defined another way) |
||
353 | InotifyWatch* pW = FindWatch(wd); |
||
354 | if (pW != NULL) { |
||
355 | |||
356 | // try to recover old watch because it may be modified - then go away |
||
357 | if (inotify_add_watch(m_fd, pW->GetPath().c_str(), pW->GetMask()) < 0) { |
||
21 | luk | 358 | IN_WRITE_END_NOTHROW |
17 | luk | 359 | throw InotifyException(IN_EXC_MSG("watch collision detected and recovery failed"), errno, this); |
360 | } |
||
361 | else { |
||
362 | // recovery failed - go away |
||
21 | luk | 363 | IN_WRITE_END_NOTHROW |
17 | luk | 364 | throw InotifyException(IN_EXC_MSG("path already watched (but defined another way)"), EBUSY, this); |
365 | } |
||
366 | } |
||
367 | |||
368 | pWatch->m_wd = wd; |
||
369 | m_watches.insert(IN_WATCH_MAP::value_type(pWatch->m_wd, pWatch)); |
||
370 | } |
||
371 | |||
372 | m_paths.insert(IN_WP_MAP::value_type(pWatch->m_path, pWatch)); |
||
13 | luk | 373 | pWatch->m_pInotify = this; |
21 | luk | 374 | |
375 | IN_WRITE_END |
||
3 | luk | 376 | } |
377 | |||
13 | luk | 378 | void Inotify::Remove(InotifyWatch* pWatch) throw (InotifyException) |
3 | luk | 379 | { |
21 | luk | 380 | IN_WRITE_BEGIN |
381 | |||
17 | luk | 382 | // invalid descriptor - this case shouldn't occur - go away |
21 | luk | 383 | if (m_fd == -1) { |
384 | IN_WRITE_END_NOTHROW |
||
13 | luk | 385 | throw InotifyException(IN_EXC_MSG("invalid file descriptor"), EBUSY, this); |
21 | luk | 386 | } |
17 | luk | 387 | |
388 | // for enabled watch |
||
389 | if (pWatch->m_wd != -1) { |
||
3 | luk | 390 | |
17 | luk | 391 | // removing watch failed - go away |
21 | luk | 392 | if (inotify_rm_watch(m_fd, pWatch->m_wd) == -1) { |
393 | IN_WRITE_END_NOTHROW |
||
17 | luk | 394 | throw InotifyException(IN_EXC_MSG("removing watch failed"), errno, this); |
21 | luk | 395 | } |
17 | luk | 396 | m_watches.erase(pWatch->m_wd); |
397 | pWatch->m_wd = -1; |
||
398 | } |
||
399 | |||
400 | m_paths.erase(pWatch->m_path); |
||
13 | luk | 401 | pWatch->m_pInotify = NULL; |
21 | luk | 402 | |
403 | IN_WRITE_END |
||
3 | luk | 404 | } |
405 | |||
406 | void Inotify::RemoveAll() |
||
407 | { |
||
21 | luk | 408 | IN_WRITE_BEGIN |
409 | |||
17 | luk | 410 | IN_WP_MAP::iterator it = m_paths.begin(); |
411 | while (it != m_paths.end()) { |
||
11 | luk | 412 | InotifyWatch* pW = (*it).second; |
17 | luk | 413 | if (pW->m_wd != -1) { |
414 | inotify_rm_watch(m_fd, pW->m_wd); |
||
415 | pW->m_wd = -1; |
||
416 | } |
||
11 | luk | 417 | pW->m_pInotify = NULL; |
3 | luk | 418 | it++; |
419 | } |
||
420 | |||
421 | m_watches.clear(); |
||
17 | luk | 422 | m_paths.clear(); |
21 | luk | 423 | |
424 | IN_WRITE_END |
||
3 | luk | 425 | } |
426 | |||
13 | luk | 427 | void Inotify::WaitForEvents(bool fNoIntr) throw (InotifyException) |
3 | luk | 428 | { |
429 | ssize_t len = 0; |
||
430 | |||
431 | do { |
||
432 | len = read(m_fd, m_buf, INOTIFY_BUFLEN); |
||
433 | } while (fNoIntr && len == -1 && errno == EINTR); |
||
434 | |||
27 | luk | 435 | if (len == -1 && !(errno == EWOULDBLOCK || errno == EINTR)) |
436 | throw InotifyException(IN_EXC_MSG("reading events failed"), errno, this); |
||
437 | |||
438 | if (len == -1) |
||
15 | luk | 439 | return; |
440 | |||
21 | luk | 441 | IN_WRITE_BEGIN |
442 | |||
3 | luk | 443 | ssize_t i = 0; |
444 | while (i < len) { |
||
13 | luk | 445 | struct inotify_event* pEvt = (struct inotify_event*) &m_buf[i]; |
446 | InotifyWatch* pW = FindWatch(pEvt->wd); |
||
17 | luk | 447 | if (pW != NULL) { |
13 | luk | 448 | InotifyEvent evt(pEvt, pW); |
37 | luk | 449 | if ( InotifyEvent::IsType(pW->GetMask(), IN_ONESHOT) |
450 | || InotifyEvent::IsType(evt.GetMask(), IN_IGNORED)) |
||
451 | pW->__Disable(); |
||
13 | luk | 452 | m_events.push_back(evt); |
453 | } |
||
454 | i += INOTIFY_EVENT_SIZE + (ssize_t) pEvt->len; |
||
3 | luk | 455 | } |
456 | |||
21 | luk | 457 | IN_WRITE_END |
3 | luk | 458 | } |
459 | |||
13 | luk | 460 | bool Inotify::GetEvent(InotifyEvent* pEvt) throw (InotifyException) |
3 | luk | 461 | { |
21 | luk | 462 | if (pEvt == NULL) |
463 | throw InotifyException(IN_EXC_MSG("null pointer to event"), EINVAL, this); |
||
13 | luk | 464 | |
21 | luk | 465 | IN_WRITE_BEGIN |
466 | |||
467 | bool b = !m_events.empty(); |
||
468 | if (b) { |
||
469 | *pEvt = m_events.front(); |
||
3 | luk | 470 | m_events.pop_front(); |
21 | luk | 471 | } |
472 | |||
473 | IN_WRITE_END |
||
13 | luk | 474 | |
3 | luk | 475 | return b; |
476 | } |
||
477 | |||
13 | luk | 478 | bool Inotify::PeekEvent(InotifyEvent* pEvt) throw (InotifyException) |
3 | luk | 479 | { |
13 | luk | 480 | if (pEvt == NULL) |
481 | throw InotifyException(IN_EXC_MSG("null pointer to event"), EINVAL, this); |
||
3 | luk | 482 | |
21 | luk | 483 | IN_READ_BEGIN |
484 | |||
485 | bool b = !m_events.empty(); |
||
486 | if (b) { |
||
13 | luk | 487 | *pEvt = m_events.front(); |
488 | } |
||
489 | |||
21 | luk | 490 | IN_READ_END |
491 | |||
492 | return b; |
||
3 | luk | 493 | } |
494 | |||
495 | InotifyWatch* Inotify::FindWatch(int iDescriptor) |
||
496 | { |
||
21 | luk | 497 | IN_READ_BEGIN |
498 | |||
3 | luk | 499 | IN_WATCH_MAP::iterator it = m_watches.find(iDescriptor); |
21 | luk | 500 | InotifyWatch* pW = it == m_watches.end() ? NULL : (*it).second; |
501 | |||
502 | IN_READ_END |
||
503 | |||
504 | return pW; |
||
3 | luk | 505 | } |
17 | luk | 506 | |
507 | InotifyWatch* Inotify::FindWatch(const std::string& rPath) |
||
508 | { |
||
21 | luk | 509 | IN_READ_BEGIN |
510 | |||
17 | luk | 511 | IN_WP_MAP::iterator it = m_paths.find(rPath); |
21 | luk | 512 | InotifyWatch* pW = it == m_paths.end() ? NULL : (*it).second; |
513 | |||
514 | IN_READ_END |
||
17 | luk | 515 | |
21 | luk | 516 | return pW; |
17 | luk | 517 | } |
3 | luk | 518 | |
13 | luk | 519 | void Inotify::SetNonBlock(bool fNonBlock) throw (InotifyException) |
520 | { |
||
21 | luk | 521 | IN_WRITE_BEGIN |
522 | |||
523 | if (m_fd == -1) { |
||
524 | IN_WRITE_END_NOTHROW |
||
13 | luk | 525 | throw InotifyException(IN_EXC_MSG("invalid file descriptor"), EBUSY, this); |
21 | luk | 526 | } |
13 | luk | 527 | |
528 | int res = fcntl(m_fd, F_GETFL); |
||
21 | luk | 529 | if (res == -1) { |
530 | IN_WRITE_END_NOTHROW |
||
13 | luk | 531 | throw InotifyException(IN_EXC_MSG("cannot get inotify flags"), errno, this); |
21 | luk | 532 | } |
13 | luk | 533 | |
534 | if (fNonBlock) { |
||
535 | res |= O_NONBLOCK; |
||
536 | } |
||
537 | else { |
||
538 | res &= ~O_NONBLOCK; |
||
539 | } |
||
540 | |||
21 | luk | 541 | if (fcntl(m_fd, F_SETFL, res) == -1) { |
542 | IN_WRITE_END_NOTHROW |
||
13 | luk | 543 | throw InotifyException(IN_EXC_MSG("cannot set inotify flags"), errno, this); |
21 | luk | 544 | } |
545 | |||
546 | IN_WRITE_END |
||
29 | luk | 547 | } |
13 | luk | 548 | |
29 | luk | 549 | uint32_t Inotify::GetCapability(InotifyCapability_t cap) throw (InotifyException) |
550 | { |
||
551 | FILE* f = fopen(GetCapabilityPath(cap).c_str(), "r"); |
||
552 | if (f == NULL) |
||
553 | throw InotifyException(IN_EXC_MSG("cannot get capability"), errno, NULL); |
||
554 | |||
555 | unsigned int val = 0; |
||
556 | if (fscanf(f, "%u", &val) != 1) { |
||
557 | fclose(f); |
||
558 | throw InotifyException(IN_EXC_MSG("cannot get capability"), EIO, NULL); |
||
559 | } |
||
560 | |||
561 | fclose(f); |
||
562 | |||
563 | return (uint32_t) val; |
||
564 | } |
||
565 | |||
566 | void Inotify::SetCapability(InotifyCapability_t cap, uint32_t val) throw (InotifyException) |
||
567 | { |
||
568 | FILE* f = fopen(GetCapabilityPath(cap).c_str(), "w"); |
||
569 | if (f == NULL) |
||
570 | throw InotifyException(IN_EXC_MSG("cannot set capability"), errno, NULL); |
||
571 | |||
572 | if (fprintf(f, "%u", (unsigned int) val) <= 0) { |
||
573 | fclose(f); |
||
574 | throw InotifyException(IN_EXC_MSG("cannot set capability"), EIO, NULL); |
||
575 | } |
||
576 | |||
577 | fclose(f); |
||
578 | } |
||
579 | |||
580 | std::string Inotify::GetCapabilityPath(InotifyCapability_t cap) throw (InotifyException) |
||
581 | { |
||
582 | std::string path(PROCFS_INOTIFY_BASE); |
||
583 | |||
584 | switch (cap) { |
||
585 | case IN_MAX_EVENTS: |
||
586 | path.append("max_queued_events"); |
||
587 | break; |
||
588 | case IN_MAX_INSTANCES: |
||
589 | path.append("max_user_instances"); |
||
590 | break; |
||
591 | case IN_MAX_WATCHES: |
||
592 | path.append("max_user_watches"); |
||
593 | break; |
||
594 | default: |
||
595 | throw InotifyException(IN_EXC_MSG("unknown capability type"), EINVAL, NULL); |
||
596 | } |
||
597 | |||
598 | return path; |
||
599 | } |
||
600 |