home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Internet / NVU 0.50 for Windows / nvu-0.50-win32-installer-full.exe / {app} / chrome / comm.jar / content / editor / ftpDirParser.js < prev    next >
Encoding:
Text File  |  2004-02-09  |  9.3 KB  |  356 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Nvu.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Lindows.com.
  18.  * Portions created by the Initial Developer are Copyright (C) 2004
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *   Daniel Glazman (glazman@disruptive-innovations.com), on behalf of Lindows.com
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. const DI_CTRID              = "@mozilla.org/dirIndex;1";
  39. const cnsIDirIndex          = Components.interfaces.nsIDirIndex;
  40.  
  41. const FILENAME_ENTRY        = 1;
  42. const DESCRIPTION_ENTRY     = 2;
  43. const CONTENT_LENGTH_ENTRY  = 3;
  44. const LAST_MODIFIED_ENTRY   = 4;
  45. const CONTENT_TYPE_ENTRY    = 5;
  46. const FILE_TYPE_ENTRY       = 6;
  47. const UNKNOWN_ENTRY         = 7;
  48.  
  49. const UNKNOWN_TOKEN         = 0;
  50. const WS_TOKEN              = 1;
  51. const EOL_TOKEN             = 2;
  52.  
  53. // PUBLIC
  54. // this is the function you have to call to retrieve an FTP dir,
  55. // parse its contents and feed it to a callback; requestData
  56. // is your own data, the parser does not deal with it.
  57. // the callback takes 3 parameters : a string for the URL,
  58. // an nsIDirIndex and your requestData
  59.  
  60. function FTPDirParser(url, requestData,
  61.                       entryCallback, endCallback, errorCallback)
  62. {
  63.   this.url            = url;
  64.   this.callback       = entryCallback;
  65.   this.rqData         = requestData;
  66.   this.endCallback    = endCallback;
  67.   this.errorCallback  = errorCallback;
  68.  
  69.   this.comment = "";
  70.  
  71.   this.dataIndex = 0;
  72.   this.nextToken = UNKNOWN_TOKEN;
  73.  
  74.   loadURL(url, this);
  75.  
  76. }
  77.  
  78. // PUBLIC
  79. // unescapes all %xx contained into a string
  80. function ecmaUnescape(str)
  81. {
  82.     function replaceEscapes(seq)
  83.     {
  84.         var ary = seq.match(/([\da-f]{1,2})(.*)|u([\da-f]{1,4})/);
  85.         if (!ary)
  86.             return "<ERROR>";
  87.  
  88.         if (ary[1])
  89.         {
  90.             // two digit escape, possibly with cruft after
  91.             rv = String.fromCharCode(parseInt(ary[1], 16)) + ary[2];
  92.         }
  93.         else
  94.         {
  95.             // four digits, no cruft
  96.             rv = String.fromCharCode(parseInt(ary[3], 16));
  97.         }
  98.  
  99.         return rv;
  100.     };
  101.  
  102.     // Replace the escape sequences %X, %XX, %uX, %uXX, %uXXX, and %uXXXX with
  103.     // the characters they represent, where X is a hexadecimal digit.
  104.     // See section B.2.2 of ECMA-262 rev3 for more information.
  105.     return str.replace(/%u?([\da-f]{1,4})/ig, replaceEscapes);
  106. }
  107.  
  108.  
  109. function UnEscape(s)
  110. {
  111.   var u = "", l = s.length, i;
  112.   for (i = 0; i < l; i++)
  113.   {
  114.     var c = s[i];
  115.     if (c == "%")
  116.     {
  117.       c = String.fromCharCode(Number("0x" + s.substr(i+1, 2)));
  118.       i += 2;
  119.     }
  120.     u += c;
  121.   }
  122.   return u;
  123. }
  124.  
  125. // PRIVATE
  126. // parse the first 3 chars of a header line
  127. // returns the header code if ok or 0
  128.  
  129. FTPDirParser.prototype.getHeaderToken =
  130. function (data)
  131. {
  132.   if (this.dataIndex < data.length - 3)
  133.   {
  134.     var substr = data.substr(this.dataIndex, 3);
  135.  
  136.     if (data[this.dataIndex+3] == ":" &&
  137.         (substr == "100" ||
  138.          substr == "101" ||
  139.          substr == "102" ||
  140.          substr == "200" ||
  141.          substr == "201" ||
  142.          substr == "300" ||
  143.          substr == "301"))
  144.     {
  145.       this.dataIndex += 4;
  146.       return Number(substr);
  147.     }
  148.   }
  149.   this.dataIndex++;
  150.   return 0;
  151. }
  152.  
  153. // PRIVATE
  154. // skip whitespaces
  155.  
  156. FTPDirParser.prototype.skipWS =
  157. function (data)
  158. {
  159.   while (this.dataIndex < data.length &&
  160.          data[this.dataIndex] == " ")
  161.     this.dataIndex++
  162. }
  163.  
  164. // PRIVATE
  165. // skip everything until end of line
  166.  
  167. FTPDirParser.prototype.skipEndOfLine =
  168. function (data)
  169. {
  170.   while (this.dataIndex < data.length &&
  171.          data[this.dataIndex] != "\r" &&
  172.          data[this.dataIndex] != "\n")
  173.     this.dataIndex++
  174.   while (this.dataIndex < data.length && (
  175.          data[this.dataIndex] == "\r" ||
  176.          data[this.dataIndex] == "\n"))
  177.     this.dataIndex++
  178. }
  179.  
  180. // PRIVATE
  181. // store everything until end of line into comment
  182.  
  183. FTPDirParser.prototype.getCommentLine =
  184. function (data)
  185. {
  186.   this.skipWS(data);
  187.   while (this.dataIndex < data.length &&
  188.          data[this.dataIndex] != "\r" &&
  189.          data[this.dataIndex] != "\n")
  190.   {
  191.     this.comment += data[this.dataIndex];
  192.     this.dataIndex++;
  193.   }
  194.   this.skipEndOfLine(data);
  195.  
  196. // PRIVATE
  197. // parse a 200 line containing the format of 201 lines
  198. // stores it into this.entries array
  199.  
  200. FTPDirParser.prototype.getFormat =
  201. function (data)
  202. {
  203.   var token;
  204.  
  205.   // in case of multiple 200 lines, keep only last one...
  206.   delete this.entries;
  207.   this.entries = new Array();
  208.  
  209.   while (data[this.dataIndex] != "\r" &&
  210.          data[this.dataIndex] != "\n")
  211.   {
  212.     this.skipWS(data);
  213.     token = "";
  214.     while (this.dataIndex < data.length &&
  215.            data[this.dataIndex] != " " &&
  216.            data[this.dataIndex] != "\r" &&
  217.            data[this.dataIndex] != "\n")
  218.     {
  219.       token += data[this.dataIndex];
  220.       this.dataIndex++;
  221.     }
  222.     token = token.toLowerCase();
  223.     if (token == "filename")
  224.       this.entries.push(FILENAME_ENTRY);
  225.     else if (token == "description")
  226.       this.entries.push(DESCRIPTION_ENTRY);
  227.     else if (token == "content-length")
  228.       this.entries.push(CONTENT_LENGTH_ENTRY);
  229.     else if (token == "description")
  230.       this.entries.push(LAST_MODIFIED_ENTRY);
  231.     else if (token == "last-modified")
  232.       this.entries.push(LAST_MODIFIED_ENTRY);
  233.     else if (token == "content-type")
  234.       this.entries.push(CONTENT_TYPE_ENTRY);
  235.     else if (token == "file-type")
  236.       this.entries.push(FILE_TYPE_ENTRY);
  237.     else 
  238.       this.entries.push(UNKNOWN_ENTRY);
  239.  
  240.   }
  241.   this.skipEndOfLine(data);
  242. }
  243.  
  244. // PRIVATE
  245. // parse a 201 line according to a previously parsed 200 line
  246. // returns an nsIDirIndex instance
  247.  
  248. FTPDirParser.prototype.getDataLine =
  249. function (data)
  250. {
  251.   var numberFields = this.entries.length;
  252.   var l = data.length;
  253.   var i;
  254.   var dirIndex = 
  255.     Components.classes[DI_CTRID].createInstance(cnsIDirIndex);
  256.  
  257.   for (i = 0; i < numberFields; i++)
  258.   {
  259.     this.skipWS(data);
  260.     var token = "";
  261.     if (data[this.dataIndex] == '"')
  262.     {
  263.       this.dataIndex++;
  264.       while (this.dataIndex < l &&
  265.              data[this.dataIndex] != '"')
  266.       {
  267.         token += data[this.dataIndex];
  268.         this.dataIndex++;
  269.       }
  270.       this.dataIndex++;
  271.     }
  272.     else
  273.     {
  274.       while (this.dataIndex < l &&
  275.              data[this.dataIndex] != " ")
  276.       {
  277.         token += data[this.dataIndex];
  278.         this.dataIndex++;
  279.       }
  280.     }
  281.  
  282.     switch (this.entries[i])
  283.     {
  284.       case FILENAME_ENTRY:
  285.         dirIndex.location = UnEscape(token);
  286.         break;
  287.       case DESCRIPTION_ENTRY:
  288.         // we do nothing here, we use the nsIDirIndex description attribute
  289.         // for the last-modified date
  290.         break;
  291.       case CONTENT_LENGTH_ENTRY:
  292.         dirIndex.size = Number(token);
  293.         break;
  294.       case LAST_MODIFIED_ENTRY:
  295.         dirIndex.description = UnEscape(token);
  296.         break;
  297.       case CONTENT_TYPE_ENTRY:
  298.         dirIndex.contentType = UnEscape(token);
  299.         break;
  300.       case FILE_TYPE_ENTRY:
  301.         if (token == "FILE")
  302.           dirIndex.type = cnsIDirIndex.TYPE_FILE;
  303.         else if (token == "DIRECTORY")
  304.           dirIndex.type = cnsIDirIndex.TYPE_DIRECTORY;
  305.         else if (token == "SYMBOLIC-LINK")
  306.           dirIndex.type = cnsIDirIndex.TYPE_SYMLINK;
  307.         else
  308.           dirIndex.type = cnsIDirIndex.TYPE_UNKNOWN; // XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
  309.         break;
  310.       default:
  311.         break;      
  312.     }
  313.   }
  314.   this.skipEndOfLine(data);
  315.   return dirIndex;
  316. }
  317.  
  318. // PRIVATE
  319. // parses all the data coming from an async list of an FTP dir
  320. // calls the provided callback on entries
  321.  
  322. FTPDirParser.prototype.parseData =
  323. function (data, requestData)
  324. {
  325.    var token;
  326.    while (this.dataIndex < data.length)
  327.    {
  328.      token = this.getHeaderToken(data);
  329.      switch (token)
  330.      {
  331.      case 100:
  332.      case 300:
  333.        this.skipEndOfLine(data);
  334.        break;
  335.      case 101:
  336.      case 102:
  337.        this.getCommentLine(data);
  338.        breal;
  339.      case 200:
  340.        this.getFormat(data);
  341.        break;
  342.      case 201:
  343.        var dirEntry = this.getDataLine(data);
  344.  
  345.        if (this.callback)
  346.          this.callback(this.url, dirEntry, this.rqData);
  347.        break;
  348.      default:
  349.        // error, but are we supposed to run this?
  350.        break
  351.      }
  352.    }
  353. }
  354.  
  355.