home *** CD-ROM | disk | FTP | other *** search
/ Freelog 112 / FreelogNo112-NovembreDecembre2012.iso / Systeme / UpdateFreezer / UpdateFreezer_1.6.102.exe / Wrappers / Util.IO.js < prev    next >
Text File  |  2012-07-08  |  6KB  |  240 lines

  1. /************************************************************************ 
  2.   Copyright 2011-2012, IceJS Team. All rights reserved.
  3.   Redistribution and use in source and binary forms, with or without
  4.   modification, are permitted provided that the following conditions are
  5.   met:
  6.   
  7.       * Redistributions of source code must retain the above copyright
  8.         notice, this list of conditions and the following disclaimer.
  9.       * Redistributions in binary form must reproduce the above
  10.         copyright notice, this list of conditions and the following
  11.         disclaimer in the documentation and/or other materials provided
  12.         with the distribution.
  13.       * Neither the name of Update Freezer Team nor the names of its
  14.         contributors may be used to endorse or promote products derived
  15.         from this software without specific prior written permission.
  16.   
  17.   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  18.   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  19.   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  20.   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  21.   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  22.   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  23.   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  24.   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  25.   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26.   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  27.   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28.  ***********************************************************************/
  29.  
  30. if (typeof(Util) == "undefined")
  31.     Util = {};
  32.  
  33. Util.IO = 
  34. {
  35.     /**
  36.      * Return text contents of file with path equal to 'fileName'
  37.      */
  38.     ReadFile: function(fileName)
  39.     {
  40.         return _ReadFile(fileName);
  41.     },
  42.     
  43.     /**
  44.      * Return text contents of file with path equal to 'fileName' assuming it has UTF8 encoding
  45.      */
  46.     ReadFileUTF8: function(fileName)
  47.     {
  48.         return _ReadFileUTF8(fileName);    
  49.     },
  50.     
  51.     /**
  52.      * Write text contents to a file with path equal to 'fileName'
  53.      */
  54.     WriteFile: function(fileName, text)
  55.     {
  56.         return _WriteFile(fileName, text);
  57.     },
  58.     
  59.     /**
  60.      * Write text contents to a file with path equal to 'fileName' in UTF8 encoding
  61.      */
  62.     WriteFileUtf8: function(fileName, text)
  63.     {
  64.         return _WriteFileUTF8(fileName, text);
  65.     },
  66.  
  67.     /**
  68.      * Returns 'true' when file exists
  69.      */
  70.     CheckFileExists: function(fileName)
  71.     {
  72.         return _CheckFileExists(fileName);
  73.     },
  74.     
  75.     /**
  76.      * Delete a file with path specified by 'fileName'
  77.      */
  78.     DeleteFile: function(fileName)
  79.     {
  80.         return _DeleteFile(fileName);
  81.     },
  82.     
  83.     /**
  84.      * Copy a file with path specified by 'src' to a file specified by 'dst'
  85.      */
  86.     CopyFile: function(src, dst)
  87.     {
  88.         var dstParent = Util.IO.GetParentFolder(dst);
  89.         
  90.         if(dstParent&&!Util.IO.CheckFileExists(dstParent))
  91.         {
  92.             Util.IO.CreateDirectory( dstParent );
  93.         }
  94.     
  95.         return _CopyFile(src, dst);
  96.     },
  97.     
  98.     /**
  99.      * Move a file with path specified by 'src' to a file specified by 'dst'
  100.      */
  101.     MoveFile: function(src, dst)
  102.     {
  103.         return _MoveFile(src, dst);
  104.     },
  105.     
  106.     /**
  107.      * Create directory with specified path
  108.      */
  109.     CreateDirectory: function(path)
  110.     {
  111.         return _EnsureDirectoryExists(path);
  112.     },
  113.     
  114.     /**
  115.      * Delete directory with specified path
  116.      */
  117.     DeleteDirectory: function(path)
  118.     {
  119.         return _RemoveDirectoryWithContents(path);
  120.     },
  121.     
  122.     CombinePath: function(path1, path2)
  123.     {
  124.         // Trim trailing separators in path1
  125.         path1 = path1.replace(new RegExp("[\\/\\\\]+$", "g"), "");
  126.         return path1+"\\"+path2;
  127.     },
  128.         
  129.     /**
  130.      * Return folder name if 'path' represents a folder or file name if 'path' represents file.
  131.      */
  132.     GetLastPathComponent: function(/**String*/path)
  133.     {
  134.         // Trim trailing separators in path1
  135.         path = path.replace(new RegExp("[\\/\\\\]+$", "g"), "");
  136.         path = path.replace("/", "\\");
  137.         var parts = path.split("\\");
  138.         
  139.         if( parts && parts.length>0 )
  140.         {
  141.             return parts[parts.length-1];
  142.         }
  143.         return "";
  144.     },
  145.     
  146.     /**
  147.      * For path like c:\a/b/c/d return c:\a/b/c (without trailing separator)
  148.      * for 'd' being either folder or file.
  149.      */
  150.     GetParentFolder: function(/**String*/path)
  151.     {
  152.         path = path.replace(new RegExp("[\\/\\\\]+$", "g"), "");
  153.         
  154.         for(var li=path.length-1;li--;li>=0)
  155.         {
  156.             var c = path.charAt(li);
  157.             if(c=='\\'||c=='/')
  158.             {
  159.                 path = path.substr(0, li);
  160.                 path = path.replace(new RegExp("[\\/\\\\]+$", "g"), "");
  161.                 return path;
  162.             }
  163.         }
  164.         return "";
  165.     },
  166.     
  167.     ReadKey: function()
  168.     {
  169.         return _ReadKey();
  170.     },
  171.     
  172.     GetCurrentDirectory: function()
  173.     {
  174.         return _GetCurrentDirectory();
  175.     },
  176.     
  177.     SetCurrentDirectory: function(newDir)
  178.     {
  179.         return _SetCurrentDirectory(newDir);
  180.     },
  181.     
  182.     GetFileName: function(newDir)
  183.     {
  184.         return _GetFileName(newDir);
  185.     },
  186.     
  187.     GetFilePath: function(newDir)
  188.     {
  189.         return _GetFilePath(newDir);
  190.     },
  191.     
  192.     ReadJsonFromFile: function(fileName)
  193.     {
  194.         var text = Util.IO.ReadFile(fileName);
  195.         var obj = null;
  196.         try
  197.         {
  198.             obj = JSON.parse(text);
  199.         }
  200.         catch(e)
  201.         {
  202.         
  203.         }
  204.         return obj;
  205.     },
  206.     
  207.     WriteJsonToFile: function(fileName, obj)
  208.     {
  209.         var text = JSON.stringify(
  210.                         obj,
  211.                         function(key, value){
  212.                             if(typeof key==="string" && key.indexOf("parent")==0 || key=="rule") return undefined;
  213.                             return value;
  214.                         },
  215.                         "\t"
  216.                     );
  217.         this.WriteFile(fileName, text);
  218.     },
  219.     
  220.     GetFilesInFolder: function(path)
  221.     {
  222.         return _GetFilesInFolder(path);
  223.     },
  224.     
  225.     CreateShortcut: function(targetFile, arguments, workingDir, shortcutPath, shortcutComment, iconLocation, iconIndex)
  226.     {
  227.         return _CreateShortcut(targetFile, arguments, workingDir, shortcutPath, shortcutComment, iconLocation, iconIndex);
  228.     },
  229.     
  230.     ShiftBytes: function(str, shift)
  231.     {
  232.         return _ShiftBytes(str, shift);
  233.     },
  234.     
  235.     ShiftFileBytes: function(f1, f2, shift)
  236.     {
  237.         return _ShiftFileBytes(f1, f2, shift);
  238.     }
  239. }
  240.