active questions tagged timers - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T10:25:23Z http://stackoverflow.com/feeds/tag/timers http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1832795/how-do-i-pause-my-app-until-a-crash-report-has-been-submitted 0 How do I pause my app until a crash report has been submitted? John Gallagher 2009-12-02T13:09:14Z 2009-12-03T08:08:17Z <p><strong>Background</strong></p> <ul> <li><p>I'm using UKCrashReporter in my app. </p></li> <li><p>I've installed my own Uncaught Exception Handler.</p></li> <li><p>I'm setting up the managedObjectContext of the object activeItemController in applicationDidFinishLaunching (1)</p></li> </ul> <p><strong>The Problem</strong></p> <p>If the managedObjectContext method throws an exception, the crash reporter dialog box only flashes up before the app crashes and so the user never gets to report the crash.</p> <p>I want my app to continue only <strong>after</strong> the crash has been reported, not whilst the window is showing.</p> <p><strong>What I've tried</strong></p> <ul> <li><p>If UKCrashReporterCheckForCrash() were an objective C method, I assume I could call performSelectorOnMainThread:waitUntilDone:YES but it's not.</p></li> <li><p>I've looked at some other Stack Overflow questions about <a href="http://stackoverflow.com/questions/1557070/how-to-pause-an-nsthread-until-notified">using Conditional Locks</a> to pause apps, but I can't understand how I'd use it for a C function.</p></li> </ul> <p>How would I go about doing this in a nice way? Do people have any advice for me? Any responses would be much appreciated.</p> <p><strong>The Code</strong></p> <pre><code>// In app delegate -(void)applicationWillFinishLaunching:(NSNotification *)aNotification { UKCrashReporterCheckForCrash(); // A C function which then creates a window if // it detects a crash has happened. } -(void)applicationDidFinishLaunching:(NSNotification *)aNotification { [activeItemController setMoContextDisk:[self managedObjectContext]]; [activeItemController setMoContextMemory:[self managedObjectContextMemory]]; } </code></pre> <p><strong>Update 1</strong></p> <p>I've been asked for more details on what I'm trying to do, so here goes.</p> <p>The bug that triggered this thinking was an exception when merging managedObjectModels. My app got caught in a loop printing "Uncaught exception" to the console every few milliseconds.</p> <p>And when I installed the uncaught exception handler before this exception happened, I'd get the described behaviour - my app would fire up, display the crash report dialog briefly, then continue to load and crash again.</p> <p>Summary - I want to be able to handle errors that happen on startup.</p> <p>(1) I'm not using bindings to do this, as I thought bindings would make testing the class more problematic.</p> http://stackoverflow.com/questions/28637/is-datetime-now-the-best-way-to-measure-a-functions-performance 79 Is DateTime.Now the best way to measure a function's performance? David Basarab 2008-08-26T17:09:45Z 2009-11-30T16:47:33Z <p>I need to find a bottleneck and need to accurately as possible measure time.</p> <p>Is the following Code Snippet the best way to measure the performance?</p> <pre><code>DateTime startTime = DateTime.Now; // Some Execution Process DateTime endTime = DateTime.Now; TimeSpan totalTimeTaken = endTime.Subtract(startTime); </code></pre> http://stackoverflow.com/questions/1805809/how-to-handle-mass-database-manipulation-every-second-threading 0 How to handle mass database manipulation every second - threading? Kovu 2009-11-26T21:44:23Z 2009-11-27T00:09:42Z <p>Hi guys,</p> <p>I have a very hard problem:</p> <p>I have round about 20-50 objects, which I MUST (that is given for the problem, please don't spend time in thinking around it) put througt a logic <b>EVERY SECOND</b>.</p> <p>The logic itself need round about <b>200-600 milliseconds</b> (90% it is 200ms - 10% it is 600ms).</p> <p>I try to find any solution how I can make is smaller, but there isn't. I must get an object from DB, I must have a lot of if-else and I must actual it. - Even if I reduce it to 50ms or smaller, to veriable rate of the object up to 50 will break my neck with the 1 second timer, because 50 x 50mx =2,5 second. So a tick needs longer then the tickrate should be.</p> <p>So, my only, not very smart I think, idea is to open for every object an own thread and lead a mainthread for handling. So the mainthread opens x other thread. So only this opening must take unter 1 second. After it logic is used, the thread can kill itself and we all are happy, aren't we?</p> <p><hr></p> <p>By given the last answers, I will explain my problem:</p> <p>I try to build an auctioneer site. So I have up to 50 auctions running at the same moment - nothing special. So I need to: every single second look to the auctionlist, see if the time is 00:00:01 and if it is, bid automaticly (it's a feature, that user can create).</p> <p>So: get 50 objects in a list, iterate through, check if a automatic bid is need, do it.</p> http://stackoverflow.com/questions/1801324/cancelling-a-timer 0 Cancelling a Timer whatnick 2009-11-26T03:03:32Z 2009-11-26T11:17:41Z <p>I have implemented a token system which assigns a fixed number of tokens. Each token on assignment starts up a Timer which expires after a few number of minutes and clears that token slot for reuse. If the user validates the token before the timer expires the Timer is supposed to be cancelled and reset with another token validity period. I seem to be unable to cancel the timer from outside the timer thread, is this behaviour expected. Snippets follow:</p> <pre><code>/** * Fills one of the available slots with a new session key * @param sessionKey * @return true on slot fill success - false on fail */ public boolean fillSlot(String sessionKey) { if(count&lt;MAXCOUNT) { //Add key to slot slots.add(sessionKey); //Up the key count upCount(); //Set up expiry timer Timer timer = new Timer(); timer.schedule(new ExpiringTokentask(timer,sessionKey), EXPIRY_TIME); timers.put(sessionKey, timer); return true; } return false; } /** * Check if a given key is stored in the slots * reset timer every time key is checked * @param sessionKey * @return true on key found false on not found */ public boolean checkSlot(String sessionKey) { //TODO: More efficient key search and storage for larger user sets //TODO: Upgrade from memory array to h2 embedded DB for(int i=0;i&lt;slots.size();i++) { if(sessionKey.equals(slots.get(i))) { //Reset timer Timer timer = timers.get(sessionKey); //Can't seem to do this // timer.cancel(); timer.schedule(new ExpiringTokentask(timer,sessionKey), EXPIRY_TIME); //Return token validation return true; } } return false; } private class ExpiringTokentask extends TimerTask { private Timer timer; private String expireToken; public ExpiringTokentask(Timer timer, String sessionKey) { this.timer = timer; this.expireToken = sessionKey; System.out.println(sessionKey); } public void run() { System.out.format("Time's up!%n"); clearSlot(expireToken); timer.cancel(); //Terminate the timer thread } } </code></pre> http://stackoverflow.com/questions/1799070/what-might-cause-opengl-to-behave-differently-under-the-start-debugging-versus 2 What might cause OpenGL to behave differently under the "Start Debugging" versus "Start without debugging" options? drknexus 2009-11-25T18:38:47Z 2009-11-25T19:23:18Z <p>I have written a 3D-Stereo OpenGL program in C++. I keep track of the position objects in my display should have using timeGetTime after a timeBeginPeriod(1). When I run the program with "Start Debugging" my objects move smoothly across the display (as they should). When I run the program with "Start without debugging" the objects occationally freeze for several screen refreshes then jump to a new position. Any ideas as to what may be causing this problem and how to fix it?</p> <p>Edit: It seems like the jerkiness can be resolved after a short delay when I run through "Start without debugging" if I click the mouse button. My application is a console application (I take in some parameters when the program first starts). Might there be a difference in window focus between these two options? Is there an explicit way to force the focus to the OpenGL window (in full screen through glutFullScreen();) when I'm done taking input from the console window?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1792754/keep-track-of-number-of-events-per-timespan 0 Keep track of number of events per timespan Gordon Carpenter-Thompson 2009-11-24T20:34:51Z 2009-11-24T20:51:54Z <p>What's the best way, in C# to keep track of the number of events per timespan?</p> <p>For example, I want to limit my TCP application to, say, a maximum of 10 requests per minute before setting a flag. The TCP application is intended to be as efficient as possible and runs as a windows service.</p> <p>Maybe I should work on it tomorrow when my brain is less tired...</p> <p>Thanks!</p> http://stackoverflow.com/questions/1790810/most-suitable-net-timer-for-a-scheduler 1 Most suitable .net Timer for a scheduler spender 2009-11-24T15:31:10Z 2009-11-24T15:53:36Z <p>We've identified a hotspot in our code using <a href="http://msdn.microsoft.com/en-us/library/microsoft.ccr.core.dispatcherqueue.enqueuetimer.aspx" rel="nofollow">CCR timers</a>. It appears that if we enqueue many thousands of timers that the code suffers terminal slowdown.</p> <p>The fix is to choose the soonest scheduled item and enqueue a timer for this event. When it fires, we repeat. In this way, we're only ever enqueueing one timer interval at a time.</p> <p>What we're finding now is that the SortedList instance which we're using to manage the scheduled items is burning with the weight of the removals from the list.</p> <p>Do all .net timers suffer from the problem of increased CPU usage with the number of items enqueued, or is there one that is more intelligently written.</p> <p>Alternatively, is there a better suited data structure for keeping our scheduled items in ordered fashion, that supports fast insertion and fast removal from the front of the list?</p> http://stackoverflow.com/questions/238920/quick-question-java-system-clock 4 Quick question: Java system clock kchau 2008-10-27T02:02:26Z 2009-11-23T20:37:13Z <p>What's a simple/easy way to access the system clock using Java, so that I can calculate the elapsed time of an event?</p> http://stackoverflow.com/questions/1779600/how-do-i-wait-for-a-ttimer-to-finish 1 How do I wait for a TTimer to finish? Svein Bringsli 2009-11-22T18:54:01Z 2009-11-23T08:17:13Z <p>I have a TFrame (fraDisplay) with a TTimer (timAnimateDataChange). The timer is used to control a small animation. In the form containing the frame I want to have a method that does something like this:</p> <pre><code>procedure TForm.DoStuff; begin DoSomeLogicStuff; fraDisplay.AnimateResult; WaitForAnimationToFinish; DoSomeOtherLogicStuff; fraDisplay.AnimateEndResult; WaitForAnimationToFinish; fraDisplay.Finalize; end; </code></pre> <p>The animations are basically redraws of a TImage32, timed by a timer. The timer will disable it self when finished, and the frame has a boolean property called AnimationRunning which will be set to false when the animation is finished.</p> <p>There are no threads or anything like that to complicate or help matters.</p> <p>The question is, how do I implement the WaitForAnimationToFinish-method?</p> <p>(Btw, this is not a good solution:</p> <pre><code>procedure TForm.WaitForAnimationToFinish; begin repeat Application.ProcessMessages; until not fraDisplay.AnimationRunning; end; </code></pre> <p>since the timer won't fire while the method is running :-( )</p> http://stackoverflow.com/questions/1775921/continuously-redraw-wxpython-element 1 Continuously redraw wxPython element Radek 2009-11-21T16:19:43Z 2009-11-21T16:24:00Z <p>Hi, I have a chat client that continuously polls a server and fetches new messages.</p> <p>From my <strong>def __init__()</strong> I have:</p> <pre><code>wx.CallAfter(self.pollServer) </code></pre> <p>Which is defined:</p> <pre><code>def pollServer(self): t = self.updateMessages() time.sleep(5) self.pollServer() </code></pre> <p>Now printing the messages into the Terminal shows that it works but the GUI is 'frozen' instead of being continuously refreshed and I thought CallAfter takes care of that. Could you help?</p> http://stackoverflow.com/questions/1051893/windows-service-and-timers-separate-processes 0 Windows Service and Timers - Separate Processes? Scott 2009-06-27T01:24:04Z 2009-11-20T09:00:02Z <p>What is the difference between having multiple Timers vs multiple Threads?</p> <p>I have a Windows service that runs in the background. There are about ten "Sites" in a database that get loaded on init. Each site gets initialized in its own Timer object, and then the Timer executes code on an interval for each site. The code executed is from a static method in the main service class.</p> <p>What happens when two timers are executing at the same time? Are they executing in the same process? Does a second timer have to wait for a first timer to exit the method before it can enter it? Is there any locking or race conditions to worry about?</p> <p>Thanks for the insight.</p> http://stackoverflow.com/questions/1755481/database-query-and-countdown-with-ajax-in-asp-net-hard-problem 0 Database query and countdown with Ajax in ASP.Net ~ Hard Problem Kovu 2009-11-18T11:49:41Z 2009-11-19T10:27:49Z <p>Hi guys,</p> <p>I asked a several time but must ask again, beacuse I don't know what to do: On my Page I have an auctioneer system.</p> <p>Every second I must:</p> <ul> <li>Get Information if any bidder bid on it -> Database Query</li> <li>Countdown the timer minus 1 second</li> <li>Update a few panel with information if there is a new bidder (history that is shown, bla) </li> </ul> <p>My (funny) problem is, that only a simple ASP.Net Ajax timer (which I must have I think because I need the DAL and so on) in an Updatepanel with only the Label-Timer and a countdown of that need more then 1 single second...</p> <p>That mean, when I run the timer, which only Converts the Label to DateTime, remove 1 second and update the label, in 10 normal seconds it not run 10 times, only 8 times.</p> <p>So in 10 Seconds I lose 2 seconds...</p> <p>I don't want to image when I begin to query the database within.... </p> <p>What to do?</p> <p><hr></p> <p>I found out that it isn't the Performence that is too slow. The timer does'nt start every second. </p> <p>I filled a Debug.Writeline with Millisecond start and end of the timer tick, here are 3 examples:</p> <ul> <li>2009.11.18 13:13:21:1821</li> <li>2009.11.18 13:13:21:1821</li> <li>2009.11.18 13:13:22:7021</li> <li>2009.11.18 13:13:22:7021</li> <li>2009.11.18 13:13:24:2421</li> <li>2009.11.18 13:13:24:2421</li> </ul> <p>So it end within milliseconds, but it start again not at the right intervall (1000 milliseconds should it be!)</p> <p><hr></p> <p>As wished the code:</p> <pre><code> protected void Timer1_Tick(object sender, EventArgs e) { System.Diagnostics.Debug.WriteLine(DateTime.Now.ToString("yyyy.MM.dd HH:mm:ss:ffff")); DateTime dt = DateTime.Parse(lblTimer.Text); dt = dt.AddSeconds(-1.0); lblTimer.Text = dt.ToString("HH:mm:ss"); System.Diagnostics.Debug.WriteLine(DateTime.Now.ToString("yyyy.MM.dd HH:mm:ss:ffff")); } </code></pre> <p>2) </p> <pre><code> &lt;asp:UpdatePanel ID="up1" UpdateMode="Conditional" runat="server"&gt; &lt;ContentTemplate&gt; &lt;asp:Timer ID="timeAD" Interval="1000" Enabled="true" runat="server" ontick="Timer1_Tick"&gt; &lt;/asp:Timer&gt; &lt;asp:Label ID="lblTimer" runat="server" Text="Label"&gt;&lt;/asp:Label&gt; &lt;/ContentTemplate&gt; &lt;/asp:UpdatePanel&gt; </code></pre> http://stackoverflow.com/questions/1747245/how-can-i-reveal-content-and-maintain-its-visibility-when-mousing-to-a-child-elem 1 How can I reveal content and maintain its visibility when mousing to a child element? Joshua Cody 2009-11-17T07:54:39Z 2009-11-19T09:09:26Z <p>I'm asking a question very similar to <a href="http://stackoverflow.com/questions/419218/jquery-hover-menu-when-hovering-over-child-menu-disappears">this one</a>—dare I say identical?</p> <p>An example is currently in the bottom navigation <a href="http://joshuacody.net/blog/the%5Fbest%5Fcustom%5Flettering%5Fof%5F2009s%5Ffirst%5Fhalf/" rel="nofollow">on this page</a>.</p> <p>I'm looking to display the name and link of the next and previous page when a user hovers over their respective icons. I'm pretty sure my solution will entail binding or timers, neither of which I'm seeming to understand very well at the moment.</p> <p>Currently, I have:</p> <pre><code>$(document).ready(function() { var dropdown = $('span.hide_me'); var navigator = $('a.paginate_link'); dropdown.hide(); $(navigator).hover(function(){ $(this).siblings(dropdown).fadeIn(); }, function(){ setTimeout(function(){ dropdown.fadeOut(); }, 3000); }); }); </code></pre> <p>with its respective HTML (some ExpressionEngine code included—apologies):</p> <pre><code> &lt;p class="older_entry"&gt;&lt;a href="{path='blog/'}" class="paginate_link page_back"&gt;Older&lt;/a&gt;&lt;span class="hide_me"&gt;Older entry: &lt;br /&gt; &lt;a href="{path='blog/'}" class="entry_text"&gt;{title}&lt;/a&gt;&lt;/span&gt;&lt;/p&gt; {/exp:weblog:next_entry} &lt;p class="blog_home"&gt;&lt;a href="http://joshuacody.net/blog" class="paginate_link page_home"&gt;Blog Main&lt;/a&gt;&lt;span class="hide_me"&gt;Back to the blog&lt;/span&gt;&lt;/p&gt; {exp:weblog:prev_entry weblog="blog"} &lt;p class="newer_entry"&gt;&lt;a href="{path='blog/'}" class="paginate_link page_forward"&gt;Newer&lt;/a&gt;&lt;span class="hide_me"&gt;Newer entry: &lt;br /&gt; &lt;a href="{path='blog/'}" class="entry_text"&gt;{title}&lt;/a&gt;&lt;/span&gt;&lt;/p&gt; </code></pre> <p>This is behaving pretty strangely at the moment. Sometimes it waits three seconds, sometimes it waits one second, sometimes it doesn't fade out altogether.</p> <p>Essentially, I'm looking to fade in 'span.hide_me' on hover of the icons ('a.paginate_link'), and I'd like it to remain visible when users mouse over the span.</p> <p>Think anyone could help walk me through this process and understand exactly how the timers and clearing of the timers is working?</p> <p>Thanks so much, Stack Overflow. You guys have been incredible as I walk down this road of learning to make the internet.</p> http://stackoverflow.com/questions/1750089/how-to-tell-if-an-ajax-timer-has-gone-off-at-pageload 0 How to tell if an ajax timer has gone off at page_load earlz 2009-11-17T16:32:00Z 2009-11-17T17:05:52Z <p>Hello, I have a web application and I'm attempting to put an ajax timer control in it to give me a post back every 10-20 seconds. (possibly longer depending on performance). I have a lot of dynamically created each with auto postback. These controls are inside of their own update panel. </p> <p>Well, whenever an AJAX timer <code>tick</code> happens, I want to be able to know this at page_load so that I can have some conditions off of this(such as not creating some controls or whatever).</p> <p>So how can I know at Page_Load time that the reason for the post back was a <code>tick</code> event? I have tried doing something like <code>if(Request.Form[mytimer.UniqueID]!=null)</code> but that is always a false condition(it is always null) </p> <p>Basically, I just want to know if an AJAX timer tick event will happen, before the event actually occurs(which is after page_load)</p> http://stackoverflow.com/questions/1746065/which-timer-object-should-i-use-in-long-running-processes-in-net 0 Which Timer object should I use in long running processes in .Net? Alexandre Brisebois 2009-11-17T01:40:28Z 2009-11-17T02:03:17Z <p>Which Timer object should I use in long running processes in .Net?</p> <p>The timer will be used in a Windows Service, and I wish to find the best fit performance wise.</p> http://stackoverflow.com/questions/1739259/how-to-use-queryperformancecounter 1 How to use QueryPerformanceCounter? Person 2009-11-15T23:22:22Z 2009-11-16T00:55:05Z <p>I recently decided that I needed to change from using milliseconds to microseconds for my Timer class, and after some research I've decided that QueryPerformanceCounter is probably my safest best. (The warning on Boost::Posix that it may not works on Win32 API put me off a bit). However, I'm not really sure how to implement it. </p> <p>What I'm doing is calling whatever GetTicks() esque function I'm using and assigning it to Timer's startingTicks variable. Then to find the amount of time passed I just subtract the function's return value from the startingTicks, and when I reset the timer I just call the function again and assign startingTicks to it. Unfortunately, from the code I've seen it isn't as simple as just calling <code>QueryPerformanceCounter()</code>, and I'm not sure what I'm supposed to pass as its argument.</p> <p>Any assistance is appreciated, thanks.</p> http://stackoverflow.com/questions/971459/wpf-button-single-click-double-click-problem 0 WPF: Button single click + double click problem Hunsoul 2009-06-09T17:33:54Z 2009-11-15T18:43:23Z <p>Hi All,</p> <p>I have to handle both the single click and the double click of a button in a WPF application with different reaction. Unfortunately, on a doubleclick, WPF fires two click event and a double click event, so it's hard to handle this situation. </p> <p>It tried to solve it using a timer but without success...I hope you can help me.</p> <p>Lets see the code:</p> <pre><code>private void delayedBtnClick(object statInfo) { if (doubleClickTimer != null) doubleClickTimer.Dispose(); doubleClickTimer = null; this.Dispatcher.Invoke(System.Windows.Threading.DispatcherPriority.Normal, new VoidDelegate(delegate() { // ... DO THE SINGLE CLICK ACTION })); } private void btn_Click(object sender, RoutedEventArgs e) { if (doubleClickTimer == null) doubleClickTimer = new Timer(delayedBtnClick, null, System.Windows.Forms.SystemInformation.DoubleClickTime, Timeout.Infinite); } } } private void btnNext_MouseDoubleClick(object sender, MouseButtonEventArgs e) { if (doubleClickTimer != null) doubleClickTimer.Change(Timeout.Infinite, Timeout.Infinite); // disable it - I've tried it with and without this line doubleClickTimer.Dispose(); doubleClickTimer = null; //.... DO THE DOUBLE CLICK ACTION } </code></pre> <p>The proble is that the 'SINGLE CLICK ACTION' called after the 'DOUBLE CLICK ACTION' on doubleclick. It's stange that I set the doubleClickTimer to null on double click but in the delayedBtnClick it's true :O </p> <p>I've already tried to use longer time, a bool flag and lock...</p> <p>Do you have any ideas?</p> <p>Best!</p> http://stackoverflow.com/questions/1730613/what-is-the-right-way-to-call-the-timer-elapsedeventhandler 1 what is the right way to call the Timer ElapsedEventHandler Karim 2009-11-13T17:05:54Z 2009-11-15T02:48:37Z <p>i have a timer that calls its even handler method every 30 seconds. but i want to initialy call this method. the signature of the event handler method is</p> <pre><code>void TimerElapsed_GenerateRunTimes(object sender, System.Timers.ElapsedEventArgs e) </code></pre> <p>so how should i call it right? i can do the following </p> <pre><code>TimerElapsed_GenerateRunTimes(timerGenerateRunTimes,null); </code></pre> <p>but i am not sure this is the right way to do it besides that way the event argument e will be null</p> http://stackoverflow.com/questions/1731484/what-is-the-clock-source-for-the-count-returned-by-queryperfomancecounter 0 What is the clock source for the count returned by QueryPerfomanceCounter pelesl 2009-11-13T19:49:02Z 2009-11-13T21:25:56Z <p>I was under the impression that QueryPerformanceCounter was actually accessing the counter that feeds the HPET (High Performance Event Timer)---the difference of course being that HPET is a timer which send an interrupt when the counter value matches the desired interval whereas to make a timer "out of" QueryPerformanceCounter you have to write your own loop in software.</p> <p>The only reason I had assumed the hardware behind the two was the same is because somewhere I had read that QueryPerformanceCounter was accessing a counter on the chipset.</p> <p><a href="http://www.gamedev.net/reference/programming/features/timing/" rel="nofollow">http://www.gamedev.net/reference/programming/features/timing/</a> claims that QueryPerformanceCounter use chipset timers which apparently have a specified clock rate. However, I can verify that QueryPerformanceFrequency returns wildly different numbers on different machines, and in fact, the number can change slightly from boot to boot.</p> <p>The numbers returned can sometimes be totally ridiculous---implying ticks in the nanosecond range. Of course when put together it all works; that is, writing timer software using QueryPerformanceCounter/QueryPerformanceFrequency allows you to get proper timing and latency is pretty low.</p> <p>A software timer using these functions can be pretty good. For example, with an interval of 1 millisecond, over 30 seconds it's easy to nearly 100% of ticks to fall within 10% of the intended interval. With an interval of 100 microseconds, you still get a high success rate (99.7%) but the worst ticks can be way off (200 microseconds).</p> <p>I'm wondering if the clock behind the HPET is the same. Supposedly HPET should still increase accuracy since it is a hardware timer, but as of yet I don't know how to access it in Windows.</p> http://stackoverflow.com/questions/786324/is-the-hpet-directly-accessible-in-windows 2 Is the HPET directly accessible in Windows? Promit 2009-04-24T15:20:47Z 2009-11-13T19:26:34Z <p>I would like to use the High Performance Event Timer (HPET) for an profiling tool to take very high precision measurements, quickly. timeGetTime does not provide sufficient resolution at 1ms, and QueryPerformanceCounter is much slower per read than I'd like. I came across the HPET while researching the problem, but I can't see any samples of how to actually get at it.</p> <p>So can I use it directly (assembly is fine), or do I have to rely on the multimedia/high performance timing tools already built into the Win32 API?</p> http://stackoverflow.com/questions/983540/why-will-this-timer-not-start-in-a-net-service-application 0 Why will this timer not start in a .net service application? kevin bailey 2009-06-11T20:42:35Z 2009-11-13T08:03:34Z <p>I have this code for a Windows service I am writing in .NET....However the TICK function never gets executed regardless of what interval I put in the tmrRun properties. What am I missing? I am sure its something stupid I am not seeing.</p> <p>Thank You</p> <pre><code> Imports System.IO Public Class HealthMonitor Protected Overrides Sub OnStart(ByVal args() As String) // Add code here to start your service. This method should set things // in motion so your service can do its work. tmrRun.Start() End Sub Protected Overrides Sub OnStop() // Add code here to perform any tear-down necessary to stop your service. tmrRun.Stop() End Sub Private Sub tmrRun_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles tmrRun.Tick //DO some stuff End Sub End Class </code> </pre> http://stackoverflow.com/questions/1680162/timer-queues-immediately-terminate-a-timer 0 Timer Queues, immediately terminate a timer? He Shiming 2009-11-05T12:09:13Z 2009-11-05T21:28:51Z <p>I'm trying to achieve high frame-per-second on Windows GDI by using Windows Timer Queues. The relevant APIs are <code>CreateTimerQueue, DeleteTimerQueueEx, CreateTimerQueueTimer,</code> and <code>DeleteTimerQueueTimer</code> .</p> <p>The timer is created using <code>CreateTimerQueueTimer(&amp;m_timer, m_timer_queue, TimerCallback, this, 0, 20, WT_EXECUTEINTIMERTHREAD);</code> to achieve some 50fps of speed. GDI operations (some painting in the backstore, plus InvalidateRect) cannot be asynchronous, therefore I can't choose other flags but WT_EXECUTEINTIMERTHREAD so that no extra sync op is required on the drawing code. The idea is to achieve 50fps when possible, and when it's not, just show each frame at the maximum possible speed.</p> <p>At the end of the animation (reached a total frame count), <code>DeleteTimerQueueTimer</code> is called to destroy the timer.</p> <p>The problem is that <code>DeleteTimerQueueTimer</code> doesn't immediately turn off the callings of the callback function. When it's not possible to achieve the 50fps requirement, the timer pumps the call into a queue. Calling <code>DeleteTimerQueueTimer</code> inside the callback function doesn't destroy the queue. As a result, the callback is still being called even though it decided to shutdown the timer.</p> <p>How do I deal with this problem?</p> <p>- On another note, the old <code>timeSetEvent / timeKillEvent</code> multimedia API doesn't seem to have this problem. There are no queues and the calling of the callback function is immediately stopped when I call timeKillEvent. Is it possible to achieve the same behavior with timer queues?</p> http://stackoverflow.com/questions/1659323/php-timer-based-on-typing 0 PHP Timer Based on Typing jfj3rd 2009-11-02T03:38:09Z 2009-11-02T20:46:30Z <p>Hello everyone,</p> <p>I'm trying to figure out the best way to create a timer that is associated with typing within a specified form field.</p> <p>Whenever someone starts typing the timer starts. When the person stops typing for a restroom break, phone call, etc. the timer pauses and continues where it left off when the person starts to type again. Once the person is done typing they hit the submit button and the time gets recorded.</p> <p>Someone had suggested a JS OnFocus but that won't stop the timer when someone leaves their desk for a minute or two. Someone else also suggested a time out limit but what happens if it times out and the person returns to finish their typing.</p> <p>Any suggestions on the coding or where to look would be appreciated.</p> <ul> <li>JJ</li> </ul> http://stackoverflow.com/questions/1641296/timers-tap-and-hold-gesture-problem-in-net-cf 0 Timers / Tap and Hold gesture problem in .NET CF Josh LOL 2009-10-29T02:24:53Z 2009-10-30T01:02:26Z <p>Hey,</p> <p>Ive encountered some strange behaviour in my .NET CF 2.0 application running on Windows CE 5.0.</p> <p>I have a timer updating a control periodically, that control can also receive Tap and Hold gestures from the user (in the mouse down handler). What I am finding is that when a TAH begins (but before it exits) a timer event can begin processing which is pre-empting the mouse down handler halfway through execution.</p> <p>As far as my research has told me, this isn't normal behaviour, am I simply misunderstanding timers / events? Could it just be that SHRecognizeGesture is calling an equivalent to Application.DoEvents?</p> <p>In any event, does anyone have a "nice" way of fixing this example so that when the app is checking for TAH, the timer delegate doesn't "tick". </p> <p>See below for a sample program which illustrates this problem (Tap and hold in the empty space below the listbox to generate the log messages).</p> <p>Thanks in advance.</p> <pre><code>using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using System.Runtime.InteropServices; namespace DeviceApplication1 { public class BugExample : Control { [Flags] internal enum SHRGFLags { SHRG_RETURNCMD = 0x00000001, SHRG_NOTIFYPARENT = 0x00000002, SHRG_LONGDELAY = 0x00000008, SHRG_NOANIMATION = 0x00000010, } [DllImport("aygshell.dll")] private extern static int SHRecognizeGesture(ref SHRGINFO shrg); private struct SHRGINFO { public int cbSize; public IntPtr hwndClient; public int ptDownx; public int ptDowny; public int dwFlags; } public bool TapAndHold(int x, int y) { SHRGINFO shrgi; shrgi.cbSize = 20; shrgi.hwndClient = this.Handle; shrgi.dwFlags = (int)(SHRGFLags.SHRG_RETURNCMD ); shrgi.ptDownx = x; shrgi.ptDowny = y; return (SHRecognizeGesture(ref shrgi) &gt; 0); } protected override void OnMouseDown(MouseEventArgs e) { base.OnMouseDown(e); BugExampleForm parent = (BugExampleForm)this.Parent; //The problem is that the parent tick event will fire whilst TapAndHold is running //Does TapAndHold perform an equivelant to Application.DoEvents? parent.AddLog("Tap Hold - Enter"); parent.AddLog(String.Format("Tap Hold - Exit - {0}", TapAndHold(e.X, e.Y))); } } public class BugExampleForm : Form { Timer _timer; BugExample _example; ListBox _logBox; public BugExampleForm() { _example = new BugExample(); _example.Dock = DockStyle.Fill; _logBox = new ListBox(); _logBox.Dock = DockStyle.Top; _timer = new Timer(); _timer.Interval = 1000; _timer.Enabled = true; _timer.Tick += new EventHandler(_timer_Tick); this.SuspendLayout(); this.Text = "Example"; this.Size = new System.Drawing.Size(200, 300); this.Controls.Add(_example); this.Controls.Add(_logBox); this.ResumeLayout(); } void _timer_Tick(object sender, EventArgs e) { AddLog("Tick"); } public void AddLog(string s) { _logBox.Items.Add(s); _logBox.SelectedIndex = _logBox.Items.Count - 1; } } } </code></pre> <p>I can't link images inline, so <a href="http://img42.imageshack.us/img42/3863/bugk.gif" rel="nofollow">here is a link</a> to a screenshot illustrating the behaviour</p> <p><strong>Edit:</strong> In my actual application, the timer tick is updating the control. So I'm limited to working within the one thread. (I can't really accomplish what I need with event handlers either).</p> http://stackoverflow.com/questions/1627764/calculating-number-of-seconds-between-two-points-in-time-in-cocoa-even-when-sys 4 Calculating number of seconds between two points in time, in Cocoa, even when system clock has changed mid-way. Dave 2009-10-26T22:42:33Z 2009-10-29T22:21:40Z <p>I'm writing a Cocoa OS X (Leopard 10.5+) end-user program that's using timestamps to calculate statistics for how long something is being displayed on the screen. Time is calculated periodically while the program runs using a repeating NSTimer. <code>[NSDate date]</code> is used to capture timestamps, <strong>Start</strong> and <strong>Finish</strong>. Calculating the difference between the two dates in seconds is trivial.</p> <p>A problem occurs if an end-user or ntp changes the system clock. <code>[NSDate date]</code> relies on the system clock, so if it's changed, the <strong>Finish</strong> variable will be skewed relative to the <strong>Start</strong>, messing up the time calculation significantly. My question:</p> <p><strong>1. How can I accurately calculate the time between <em>Start</em> and <em>Finish</em>, in seconds, even when the system clock is changed mid-way?</strong></p> <p>I'm thinking that I need a non-changing reference point in time so I can calculate how many seconds has passed since then. For example, system uptime. 10.6 has <code>- (NSTimeInterval)systemUptime</code>, part of <code>NSProcessInfo</code>, which provides system uptime. However, this won't work as my app must work in 10.5.</p> <p>I've tried creating a time counter using NSTimer, but this isn't accurate. NSTimer has several different run modes and can only run one at a time. NSTimer (by default) is put into the <em>default</em> run mode. If a user starts manipulating the UI for a long enough time, this will enter <em>NSEventTrackingRunLoopMode</em> and skip over the <em>default</em> run mode, which can lead to NSTimer firings being skipped, making it an inaccurate way of counting seconds.</p> <p>I've also thought about creating a separate thread (NSRunLoop) to run a NSTimer second-counter, keeping it away from UI interactions. But I'm very new to multi-threading and I'd like to stay away from that if possible. Also, I'm not sure if this would work accurately in the event the CPU gets pegged by another application (Photoshop rendering a large image, etc...), causing my NSRunLoop to be put on hold for long enough to mess up its NSTimer.</p> <p>I appreciate any help. :)</p> http://stackoverflow.com/questions/1624671/substitute-the-timer 0 Substitute the timer. Wilson 2009-10-26T13:06:09Z 2009-10-27T09:41:02Z <p>I want to call asynchronous methods, but I don't want use a timer. How can I substitute the timer? I need the invoker that substitute the timer.</p> http://stackoverflow.com/questions/1627575/stack-overflow-error-winforms-app-vs-winservice 0 Stack.Overflow error - WinForms App Vs. WinService ZokiManas 2009-10-26T21:59:35Z 2009-10-26T22:55:10Z <p>I have a small code sample:</p> <pre><code>private void MonitorItems() { if (someCondition) { dateSelected = DateTime.Now; GetAllItems(); } else { if(allItems.Count&gt;0) CheckAllItems(); } MonitorItems(); } </code></pre> <p>The Method GetAllItems goes to DB and get all new items for the collection -> allItems. Then, the CheckAllItems method:</p> <pre><code>private void CheckAllItems() { foreach (Item a in new List&lt;Item&gt;(allItems)) { switch (a.Status) { case 1: HandleStatus1(); break; case 2: HandleStatus2(a); break; case 0: HandleStatus0(a); break; default: break; } } } </code></pre> <p>In some cases (in HandleStatus1 and HandleStatus2) i need to go to the DB, make some updates, and then again populate the collection allItems with calling the method GetAllItems.</p> <p>This type of code is throwing Stack.Overflow exception in WinFormsApp. I have two questions:<br> 1. Is this type of exception will be thrown in WinService application, using the same code?<br> 2. What is your opinion of using timers instead of self-calling method?</p> http://stackoverflow.com/questions/1610433/visual-basic-2008-opacity-failure 0 Visual Basic 2008 Opacity Failure Kevin 2009-10-22T22:47:01Z 2009-10-22T23:01:35Z <p>Hey guys,</p> <p>I have a 2 files here. One is my main form, and the other is a dialog I made. Now I'm trying to get enter code here the dialog to gradually obtain its transparency from a timer which I have on the dialong form:</p> <pre><code>If Me.Opacity = "100" Then Timer1.Stop() Timer1.Enabled = False Else Me.Opacity = Me.Opacity + 1 End If </code></pre> <p>Then from my main form, if I push a button it would do this:</p> <pre><code>Dialog.Timer1.Enabled = True Dialog.Timer1.Start() </code></pre> <p>this does not seem to work. When I press the button, it does nothing.</p> <p>Can someone find a solution to this?</p> <p>Thanks,</p> <p>Kevin</p> http://stackoverflow.com/questions/1603123/how-to-avoid-leaking-handles-when-invoking-in-ui-from-system-threading-timer 3 How to avoid leaking handles when invoking in UI from System.Threading.Timer? Davy8 2009-10-21T19:39:13Z 2009-10-21T20:54:44Z <p>It seems like calling Invoke on a winforms control in a callback from a System.Threading.Timer leaks handles until the timer is disposed. Does anyone have an idea of how to work around this? I need to poll for a value every second and update the UI accordingly.</p> <p>I tried it in a test project to make sure that that was indeed the cause of the leak, which is simply the following:</p> <pre><code> System.Threading.Timer timer; public Form1() { InitializeComponent(); timer = new System.Threading.Timer(new System.Threading.TimerCallback(DoStuff), null, 0, 500); } void DoStuff(object o) { this.Invoke(new Action(() =&gt; this.Text = "hello world")); } </code></pre> <p>This will leak 2 handles/second if you watch in the windows task manager.</p> http://stackoverflow.com/questions/1516659/how-do-i-count-how-many-milliseconds-it-takes-my-program-to-run 1 How do I count how many milliseconds it takes my program to run? AndrewSmith 2009-10-04T15:24:26Z 2009-10-21T10:14:31Z <p>This will show how many seconds:</p> <pre><code>#include &lt;iostream&gt; #include &lt;time.h&gt; using namespace std; int main(void) { int times,timed; times=time(NULL); //CODE HERE timed=time(NULL); times=timed-times; cout &lt;&lt; "time from start to end" &lt;&lt; times; } </code></pre> <p>This will show how many ticks:</p> <pre><code>#include &lt;iostream&gt; #include &lt;time.h&gt; using namespace std; int main(void) { int times,timed; times=clock(); //CODE HERE timed=clock(); times=timed-times; cout &lt;&lt; "ticks from start to end" &lt;&lt; times; } </code></pre> <p>How do I get milliseconds?</p>