From WikiChip
Editing mirc/thread

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

This page supports semantic in-text annotations (e.g. "[[Is specified as::World Heritage Site]]") to build structured and queryable content provided by Semantic MediaWiki. For a comprehensive description on how to use annotations or the #ask parser function, please have a look at the getting started, in-text annotation, or inline queries help pages.

Latest revision Your text
Line 1: Line 1:
{{mirc title|Thread}}This page aims to discuss threads in mIRC, delayed execution and non blocking while loop.
+
This page aims to discuss threads in mIRC, delayed execution and non blocking while loop.
  
 
== Thread ==
 
== Thread ==
  
mIRC is single threaded, only {{mIRC|$comcall}} and {{mIRC|$dllcall}} (and multimedia timer) are creating a new thread to execute, and then call a callback alias.
+
There are no thread in mIRC, mIRC is single threaded, always.
  
 
Sometimes it looks like mIRC can do multiple things at the same time without freezing, this is never the case, below we will discuss the different illusions that can occur.
 
Sometimes it looks like mIRC can do multiple things at the same time without freezing, this is never the case, below we will discuss the different illusions that can occur.
Line 12: Line 12:
 
For each iteration of the loop, one message only is processed and then the loop repeats.
 
For each iteration of the loop, one message only is processed and then the loop repeats.
  
This approach is what allows mIRC, or scripters to create the thread illusions.
+
This approach is what allows different parties to create illusions.
  
 
== Nested call to the message loop ==
 
== Nested call to the message loop ==
  
The trick is to "call" the message loop yourself (you or mIRC, typically), handling one more message while the current one is running (nested execution) before returning to handling this current message
+
The trick is to "call" the message loop yourself, handling one more message before returning to handling the current message
  
 
=== $input ===
 
=== $input ===
Line 22: Line 22:
 
mIRC itself, with $input, does this:
 
mIRC itself, with $input, does this:
  
<source lang="mIRC">
+
<source>
 
alias test {
 
alias test {
  set %test 1
+
echo -a 1
  noop $input(text,e)
+
noop $input(text,e)
  echo -a %test
+
echo -a 2
 
}
 
}
 
</source>
 
</source>
  
When you call /test, the scripting engine has to wait for your input before processing the rest of the code, represented by an infinite while loop.
+
When you call /test, the scripting engine has to wait for your input before processing the rest of the code, just waiting for your input would freeze mirc since no others messages are processed while one message is processed, in normal time, so mIRC itself call the message loop and process some of the messages,
 
 
Just waiting for your input would freeze mirc since no others messages would be processed (how things usually works), so mIRC itself call the message loop once per iteration of that infinite while loop, and process more messages.
 
 
 
This can be demonstrated by running /test above, from a desktop window, (possibly with the 'u' switch of $input?) and then going back to mIRC and executing /set %test 2, when $input returns, 2 will be displayed, showing that $input allowed you to click back to mirc and running the scripting engine with /set, all of which are the result of handling the message loop
 
 
 
=== Whilefix Dll ===
 
 
 
For a very long time, a dll called whilefix.dll exists which will 'fix' your while loop in mIRC (pretty catchy isn't it?).
 
 
 
What this dll does is exactly what $input does, it calls the message loop and allow more message to be processed:
 
 
 
<source lang="mIRC">
 
while (condition) {
 
  ;call the WhileFix routine
 
  dll path\to\whilefix.dll WhileFix
 
  your code here
 
}
 
</source>
 
 
 
And this loop will never freeze mIRC.
 
 
 
=== /pause /sleep COM delayed script ===
 
 
 
Since a very long time as well, {{mIRC|COM|COM}} script to pause the execution of your script exist (pausing can be done with timers, just not as handy):
 
 
 
<source lang="mIRC">
 
alias pause {
 
  if ($1 !isnum 1-) return
 
  var %a = $ticks $+ .vbs
 
  write %a wscript.sleep $1
 
  .comopen %a wscript.shell
 
  if (!$comerr) .comclose %a $com(%a,Run,3,bstr,%a,uint,0,bool,true)
 
  .remove %a
 
}
 
alias mycode {
 
  do something
 
  ;wait 5 millisecond before continuing
 
  pause 5
 
  do something else
 
}
 
</source>
 
 
 
This time it's Windows which is calling the message loop, mIRC does not know in advance which kind of COM you're using or most likely does not want to deal with this itself.
 
 
 
== Critical and non critical events ==
 
 
 
Ever wondered why you can't call $input from an on text event? This is related to the message loop.
 
 
 
All messages from the message loop which are related to sockets (mIRC's internal socket used for IRC, not socket created from {{mIRC|/sockopen}} or {{mIRC|/sockudp}}) can be called critical events whereas any other message (clicking on a nick in the nicklist for example) is considered a non critical event.
 
 
 
Socket related messages are called critical because mIRC cannot handle these messages if they are to be handled from a nested call of the message loop.
 
 
 
Indeed, imagine if mIRC allowed the usage of $input in critical event and allowed the processing of socket messages in nested call:
 
<source lang="mIRC">
 
on *:text:!test:#test:noop $input(test,e)
 
on *:text:*:#test:do stuff
 
</source>
 
If someone says !test on the channel, $input is called and as we saw above, mIRC will call the message loop until $input returns, now suppose a new message "test" is sent on the channel while your $input is running, since mIRC is processing the message loop, it would process this channel message and the second on text would trigger, this is not wanted, the first on text has to finish first to guarantee correct order of execution, this is why $input is not allowed in critical event, you can try to use $input inside mIRC's event to see if they are critical (as said only socket related events should return an error).
 
 
 
'''Note''': mIRC could totally allow $input to be used from critical events while not allowing the processing of socket messages in nested call, it's a bad idea because it would wait for your reply before processing these socket messages, meaning that a ping messages sent by the IRC server would not be handled until you provide an input, effectively disconnecting you from the IRC server just like an infinite while loop.
 
 
 
== Watch out ==
 
 
 
As we have seen, mIRC prevents you from using $input from critical event, but mIRC can't prevent you from using a dll which call the message loop (whilefix) or from using a COM delaying script, resulting in Windows calling the message loop.
 
 
 
Consider this:
 
<source lang="mIRC">on *:text:!mytrigger:#:{
 
  while (condition) {
 
    dll whilefix.dll Whilefix
 
    ;rest of your code here
 
  }
 
}</source>
 
You are using whilefix because you are doing a loop that is processing a lot of things, or well, because the loop is long enough to freeze your mIRC.
 
What happens here is that whilefix calls the message loop, but from a critical event: socket messages are not processed, on text won't be processed again while your loop is running.
 
 
 
Note that this is in theory not a problem because your while loop is freezing mIRC to begin with, meaning that, to begin with, the on text event won't ever be triggered again before the loop finishes.
 
 
 
If whilefix isn't much a problem given the nature of situation (you can't get critical event (or non critical event in this case) to be processed if you are in a while loop without whilefix), COM delaying scripts are more problematic:
 
<source lang="mIRC">on *:text:!mytrigger:#:{
 
  ;something
 
  pause 5
 
  ;rest of your code here
 
}</source>
 
If you do that, nested call to the message loop occurs and it's the same idea as above: your on text event is not processed until the pause finishes.
 
 
 
However this time, not using a pause script doesn't create any freeze (compared to a while loop not using whilefix). And pausing event like that is not something you want to do.
 
 
 
Delaying the execution can be done with {{mIRC|/timer}}, all the time, and this solution does not cause any problem so should be the preferred solution.
 
That being said /timer are not handy, they make you lose the 'scope':
 
 
 
<source lang="mIRC">on *:text:!mytrigger:#:{
 
  noop
 
  pause 5
 
  echo -a $nick
 
}</source>
 
vs
 
<source lang="mIRC">on *:text:!mytrigger:#:{
 
  noop
 
  .timer 1 5 more
 
}
 
alias more echo -a $nick</source>
 
 
 
In the second example $nick simply does not have a value, mIRC left the on text event 5 seconds ago, $nick is meaningless, you have to pass $nick to the "more" alias, and timers are problematic that way, see the {{mIRC|msl_injection#The_.2Ftimer_command|injection}} page about timers.
 
 
 
 
 
'''Note''': Thanks to Saturn and www.xise.nl/mirc/ for the orignal idea and documentations
 

Please note that all contributions to WikiChip may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see WikiChip:Copyrights for details). Do not submit copyrighted work without permission!

Cancel | Editing help (opens in new window)