INTERACT FORUM

More => Old Versions => Media Center 12 (Development Ended) => Topic started by: jgreen on November 10, 2006, 02:42:33 pm

Title: MC will freeze for 30 secs after startup
Post by: jgreen on November 10, 2006, 02:42:33 pm
I can reproduce this reliably, and only noticed it after startup times were optimized via serializing processes.  After a complete machine reboot, starting MC for the first time, even after an interval of several minutes after reboot will show this behavior: 

A quick start, 1 sec, a brief period with control of the GUI, maybe 3 secs, and then the GUI will freeze completely for 20-30 secs by my count, then control is restored and MC behaves normally.  Restart MC, and the events are similar, only the complete freeze will last maybe 3 secs, and then all is normal.

Reboot the PC, and the 20-30 sec freeze returns.
Title: Re: MC will freeze for 30 secs after startup
Post by: Matt on November 10, 2006, 02:47:54 pm
Perhaps a 3rd party interface plugin you have installed is using .NET or doing some other slow thing.

Interface plugins need to run in the main thread, so they can block the UI as they startup.
Title: Re: MC will freeze for 30 secs after startup
Post by: jgreen on November 10, 2006, 03:21:37 pm
Lyrics Editor, it appears.

Matt, once again, thank you for clearing this up.  I swear, unless I discover a severed horse's head or something, I'm going to lay off the bug reports.
Title: Re: MC will freeze for 30 secs after startup
Post by: Matt on November 10, 2006, 03:25:23 pm
It's best if interface plugins aren't "server" style.  That way, they're only started when you access them instead of loading them everytime the program starts.

Of course, that model doesn't work for all plugins.

As I mentioned, it's really tricky for us to move plugins to a background thread (UI in multiple threads is dicey) so there isn't a lot we can do.
Title: Re: MC will freeze for 30 secs after startup
Post by: KingSparta on November 10, 2006, 07:37:48 pm
Quote
Lyrics Editor, it appears.

I noticed that too, last week

I disabled each plug-in until I found the one, not sure what it is doing.
Title: Re: MC will freeze for 30 secs after startup
Post by: marko on November 10, 2006, 08:05:03 pm
I noticed that too, last week

I disabled each plug-in until I found the one, not sure what it is doing.
Doof has it set to "always run" to avoid this bug:
(http://www.theganghut.co.uk/pics/ia/c3k/1.jpg)
Title: Re: MC will freeze for 30 secs after startup
Post by: Doof on November 12, 2006, 10:43:01 am
Just noticed this thread.

The latest release of Lyrics Editor has the mode switched back to active when visible. Marko's correct in that the only reason I originally set it to be always active was as a work around to a bug in the SDK. Since MC12's arrival, I'm not sure the bug is still there, as I've switched the mode back to active when visible and so far haven't encountered the bug. Anybody else seeing it?
Title: Re: MC will freeze for 30 secs after startup
Post by: Magic_Randy on November 12, 2006, 11:12:51 am
Just noticed this thread.

The latest release of Lyrics Editor has the mode switched back to active when visible. Marko's correct in that the only reason I originally set it to be always active was as a work around to a bug in the SDK. Since MC12's arrival, I'm not sure the bug is still there, as I've switched the mode back to active when visible and so far haven't encountered the bug. Anybody else seeing it?

I'm using Lyrics Editor 2.14 - is the update you referred to in this version or the next version coming out?

I get some delay, but I think that is because of an external drive I use for all of my music files.  It looks like it is reading through he external drive for ~20 seconds, then everything settles down.
Title: Re: MC will freeze for 30 secs after startup
Post by: Mr ChriZ on November 12, 2006, 11:20:34 am
Matt any chance of implementing this idea
http://yabb.jriver.com/interact/index.php?topic=36572.0
It would really help alot with the .NET plugins.
Title: Re: MC will freeze for 30 secs after startup
Post by: KingSparta on November 12, 2006, 11:43:25 am
Quote
I originally set it to be always active was as a work around to a bug in the SDK

What Makes You Think is A Bug In The SDK?

What Is Used In The SDK To Cause This?
Title: Re: MC will freeze for 30 secs after startup
Post by: Doof on November 12, 2006, 05:51:24 pm
At the time that I was running into it, I wrote a plugin that did nothing but call the CreateFiles() routine. If you ran the plugin, then went to Playing Now, then back to the plugin, it would crash. Setting the mode to Always Active for some reason avoided this.
Title: Re: MC will freeze for 30 secs after startup
Post by: KingSparta on November 12, 2006, 07:03:24 pm
Recently I found out when using a trap like

On Error Resume Next

And When Doing Somethings In A Loop Would Cause MC To Crash

I Fixed The Problem By Using "On Error Goto"

In A Sub That Accessed The SDK.

I think The "Resume Next" was forcing the code to continue to run after it should have quit.