-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTODO
33 lines (23 loc) · 1.57 KB
/
TODO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
High priority:
- thread pool (executor, futures?)
- Our own minimal thread-safe logging implementation (currently we are using qDebug() family).
Low priority:
- Our own implementation of synchronization primitives on Windows.
- Our own implementation of stack trace on Windows.
Replace third party StackWalker; maybe our implementation will use CaptureStackBackTrace() (RtlCaptureStackBackTrace()) instead of StackWalk64()
- Our own ON_BLOCK_EXIT (currently using boost only for this; headers only, but huge dependency anyway)
Android not ported (search for "TODO: Android port"):
- GetFileSystemSpaceInfo(): uses statvfs() that is available in Android 4.4W2 (API level 20)
- GetUserName(): uses getpwuid_r() that is available in Android 5.0.1 (API level 21)
- GetDeviceNameFromMountPoint(), GetMountPointsFromDeviceName(), GetMountPointsFromPath(), GetMountPoints(): uses setmntent() that is available in Android 5.0.1 (API level 21)
- GetDeviceName(): uses udev that is Linux specific
- IsCapsLockOn(), GetUserIdleTime(): uses X11 that is Linux specific. Checked and AFAIK there is no way to implement on Android
(it has no idle concept (only ACTION_SCREEN_OFF) and no way to detect caps lock)
- ComputerManager (ShutdownComputer/LockComputer/LogoutUser): uses DBus, KDE, Gnome that are Linux specific
iOS not ported (due to missing frameworks or fork/exec; search for "TODO: iOS port"):
- ComputerManager(ShutdownComputer/LogoutUser)
- IsCapsLockOn()
- GetUserIdleTime()
- GetMountPointsFromDeviceName()
- GetDeviceName()
- QtServiceController(install/start/), QtServiceBasePrivate::start()