From WikiChip
Editing mirc/file handling

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 10: Line 10:
 
{{mIRC|/fopen}} opens the filename and use the specified name to reference it.
 
{{mIRC|/fopen}} opens the filename and use the specified name to reference it.
  
The command fail by default if the file does not exist, the -n switch creates the file if it does not exist, but fails if it exists. The -o switch creates a new file if it does not exist but overwrites the file if it exists. The -x switch opens the file for exclusive access, others processus cannot access that file
+
The command fail by default if the file does not exists, the -n switch create the file if it does not exist, fails if it exists. The -o switch create a new file if it does not exist but overwrite the file if it exists. The -x switch opens the file for exclusive access, others processus cannot access that file
  
 
'''Note:''' if /fopen fails, it does not halt processing, you must check {{mIRC|$ferr}} to see if any error occured, see below.
 
'''Note:''' if /fopen fails, it does not halt processing, you must check {{mIRC|$ferr}} to see if any error occured, see below.
Line 24: Line 24:
 
* -l - sets the pointer to the beginning of the Nth line, use <position> to specify the Nth line
 
* -l - sets the pointer to the beginning of the Nth line, use <position> to specify the Nth line
 
* -n - sets the pointer to the beginning of the next line (from the current position of the read/write pointer), this does not take a parameter
 
* -n - sets the pointer to the beginning of the next line (from the current position of the read/write pointer), this does not take a parameter
* -w - sets the pointer to the beginning of the line matching the {{mirc|wildcard}} expression, use <position> to specify the {{mirc|wildcard}} expression
+
* -w - sets the pointer to the beginning of the line matching the wildcard expression, use <position> to specify the wildcard expression
 
* -r - sets the pointer to the beginning of the line matching the regular expression, use <position> to specify the regular expression
 
* -r - sets the pointer to the beginning of the line matching the regular expression, use <position> to specify the regular expression
  
If /fseek fails, it sets the pointer to the end of the file, you must check $fopen().eof or $feof to know if /fseek failed.
+
If /fseek fails, it sets the pointer to the end of the file.
  
 
== {{mIRC|/fwrite}} ==
 
== {{mIRC|/fwrite}} ==
Line 39: Line 39:
 
/fclose <name | wildcard>
 
/fclose <name | wildcard>
  
{{mIRC|/fclose}} closes all the matching name ({{mirc|wildcard}} expression allowed)
+
{{mIRC|/fclose}} closes all the matching name (wildcard expression allowed)
  
 
== {{mIRC|/flist}} ==
 
== {{mIRC|/flist}} ==
Line 102: Line 102:
  
 
Whenever you are going to use /write or $read in a loop to write/read a lot of things, if the loop isn't small and if the file isn't small, it might get slow very quickly, and you should consider using file handling.
 
Whenever you are going to use /write or $read in a loop to write/read a lot of things, if the loop isn't small and if the file isn't small, it might get slow very quickly, and you should consider using file handling.
 +
 +
== Example ==
 +
Here is a real-life example. I wanted to be able to get the associated country for an ip address. You may use socket but I wanted to get the result without leaving the current scope (having to wait for the socket), COM may have been used but that would limit the use under Wine, so I found www.IP2Location.com, which provides a small database, each line being a range of long ip address, here is the first line:
 +
 +
<pre>"16777216","16777471","AU","AUSTRALIA"</pre>
 +
 +
So you have to convert your ip to a long ip using $longip, and then start to look in which range your number belong.
 +
 +
The file is pretty big, you certainly don't want to look line by line, I did the following:
 +
 +
<source lang="mIRC">
 +
;$iptocountry(85.125.126.112)
 +
alias iptocountry {
 +
  ;convert to a long ip, get the length of the file, and prepare a wildcard expression for /fseek
 +
  var %n $longip($1),%a 1,%p,%l $lof(path\to\ip2country.txt),%v,%x *","*","??","*"
 +
  ;opens the file
 +
  .fopen ip2c path\to\ip2country.txt
 +
  ;depending on the length of the ip address, we can jump to a fixed line number, which is the start of ranges for that length
 +
  if ($len(%n) == 9) .fseek -l ip2c 2266
 +
  elseif ($v1 == 10) .fseek -l ip2c 11951
 +
  ;%a starts at 1, as long as we can find a matching line which start with the maximum number of character from the ip address
 +
  while $mid(%n,1,%a) {
 +
    .fseek -w ip2c $+(",$mid(%n,1,%a),%x)
 +
    ; if no match, we break
 +
    if ($fopen(ip2c).pos == %l) break
 +
    ;otherwise we keep the position in a variable to know which line we have the last match
 +
    var %p $v1,%a %a + 1
 +
  }
 +
  ;get to that line
 +
  .fseek ip2c %p
 +
  ;from here we must check if the line we are on is already the correct line
 +
  %v = $fread(ip2c)
 +
  ;if the right value of the range is bigger than our number, we must go upward in the file
 +
  if ($gettok(%v,3,34) > %n) {
 +
    ;well if the left value of the range is smaller than our number, we have our line!
 +
    if ($gettok(%v,1,34) < %n) {
 +
    ;if it is, we return
 +
      %v = $gettok(%v,7,34)
 +
      .fclose ip2c
 +
      return %v
 +
    }
 +
    ;otherwise we must go upward one line, they can't be more line to check (can't remember why though!)
 +
    .fseek ip2c $calc(%p - 3)
 +
    dec %p 3
 +
    while (1) {
 +
      if ($fgetc(ip2c) == 10)  {
 +
        %v = $fread(ip2c)
 +
        .fclose ip2c
 +
        return $gettok(%v,7,34)
 +
      }
 +
      dec %p
 +
      .fseek ip2c %p
 +
    }
 +
  }
 +
  ;otherwise, we must go downward in the file until the right value of the range is bigger than our number
 +
  while $fread(ip2c) {
 +
    %v = $v1
 +
    if ($gettok(%v,3,34) > %n) break
 +
  }
 +
  .fclose ip2c
 +
  return $gettok(%v,7,34)
 +
}
 +
</source>
 +
[[Category:mIRC]]

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)