![]() |
2011-06-06
, 18:47
|
Posts: 82 |
Thanked: 214 times |
Joined on Jan 2010
@ Cape town
|
#32
|
The Following 8 Users Say Thank You to cb22 For This Useful Post: | ||
![]() |
2011-06-07
, 10:04
|
|
Posts: 92 |
Thanked: 92 times |
Joined on May 2011
@ Stellenbosch, South Africa
|
#33
|
![]() |
2011-06-07
, 17:23
|
Posts: 82 |
Thanked: 214 times |
Joined on Jan 2010
@ Cape town
|
#34
|
Hi,
Sounds like you're making some good progress, despite the scourge that is exams
What I understand with regards to threading (bear in mind this is coming off a Win32/C# background) is that the following happens: for each core in the device a single (not necessarily your application's thread) can be run at any one time. i.e. if you have a dual core processor then 2 threads can be run concurrently without blocking one another. What the OS/Kernel does is simply blocks threads as required to give the illusion that they are all running simultaneously.
So, on the N900 (with it's little single core processor) you can run at most 1 thread at any one time. The best way to allow a "multithreading" system to work then is to make sure that the operating system prioritises your UI threads and other such things above your worker threads, this will lead to your worker threads being blocked more often and a bit of a general slowdown in terms of processing speed BUT your UI should remain perfectly usable while that is happening. Another alternative, without dropping the priority of your worker threads, is to make use of Sleep() function calls within them whenever they are likely to have nothing to do for a bit. Those Sleep() calls will be intercepted by the kernel and it will block that thread's execution for as long as it needs to in order to allow other threads to get some work done.
Just another thing that you may not expect when coding a multithreaded app is that the user is likely to go "usable UI = can do stuff", which from a coding perspective isn't always the case. You may want to make sure that your app can handle multiple different operations at the same time, say the user opening one email, then deciding that actually that wasn't the one they wanted and clicking on a different one (while your background thread would be loading the email they clicked on).
Overall though, good luck and I really look forward to being able to test it out, it certainly sounds impressive
Best Regards,
SPARTAN563
![]() |
2011-06-08
, 08:58
|
|
Posts: 92 |
Thanked: 92 times |
Joined on May 2011
@ Stellenbosch, South Africa
|
#35
|
![]() |
2011-06-08
, 15:09
|
Posts: 82 |
Thanked: 214 times |
Joined on Jan 2010
@ Cape town
|
#36
|
![]() |
2011-06-08
, 15:28
|
|
Posts: 92 |
Thanked: 92 times |
Joined on May 2011
@ Stellenbosch, South Africa
|
#37
|
![]() |
2011-06-12
, 00:05
|
Posts: 284 |
Thanked: 74 times |
Joined on Mar 2010
@ Wigan, UK
|
#38
|
![]() |
2011-06-27
, 04:56
|
Posts: 82 |
Thanked: 214 times |
Joined on Jan 2010
@ Cape town
|
#39
|
Latest video looks awesome cb22.
Really looking forward to the alpha release
![]() |
2011-06-28
, 18:12
|
Posts: 6 |
Thanked: 8 times |
Joined on Oct 2010
|
#40
|
Not mentioning specifics or anything (*cough* Engineering faculty at the University of Cape Town *cough*) seem to get a sadistic pleasure out of having us write 3 tests and hand in 4 assignments in the same week.
/rant
So development has taken a bit of a back seat lately, but hopefully I'll carry on working on it soon enough, I'm pretty close to an alpha release
There are some little cool features too, like pull-to-sync, which I think is quite neat. The composer has a neat design too, I think.
At the moment, I'm busy implementing DBus support, for communication between the GUI and the daemon. Once that's done, I'll package up a deb and post it here.
At the moment only POP3 is supported (I've _just_ started on an IMAP plugin - OfflineIMAP is faaar to complex for my needs) and it currently doesn't have the ability to delete messages off the server. This is intentional, so you can test along without worrying about data loss. It does require a server that supports UIDs, but all modern ones should.