]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/Python/Common/LongFilePathSupport.py
BaseTools: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / BaseTools / Source / Python / Common / LongFilePathSupport.py
index 72dde20503ead3aac229091b857553c2f207b1f8..38c4396544cc0be37da2178e6d74f361457567e5 100644 (file)
@@ -1,19 +1,14 @@
 ## @file\r
 # Override built in function file.open to provide support for long file path\r
 #\r
-# Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>\r
-# This program and the accompanying materials\r
-# are licensed and made available under the terms and conditions of the BSD License\r
-# which accompanies this distribution.  The full text of the license may be found at\r
-# http://opensource.org/licenses/bsd-license.php\r
-#\r
-# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+# Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.<BR>\r
+# SPDX-License-Identifier: BSD-2-Clause-Patent\r
 #\r
 \r
 import os\r
 import platform\r
 import shutil\r
+import codecs\r
 \r
 ##\r
 # OpenLongPath\r
@@ -37,6 +32,9 @@ def LongFilePath(FileName):
 def OpenLongFilePath(FileName, Mode='r', Buffer= -1):\r
     return open(LongFilePath(FileName), Mode, Buffer)\r
 \r
+def CodecOpenLongFilePath(Filename, Mode='rb', Encoding=None, Errors='strict', Buffering=1):\r
+    return codecs.open(LongFilePath(Filename), Mode, Encoding, Errors, Buffering)\r
+\r
 ##\r
 # CopyLongFilePath\r
 # wrap copyfile to support copy a long file path\r
@@ -45,15 +43,3 @@ def CopyLongFilePath(src, dst):
     with open(LongFilePath(src), 'rb') as fsrc:\r
         with open(LongFilePath(dst), 'wb') as fdst:\r
             shutil.copyfileobj(fsrc, fdst)\r
-\r
-## Convert a python unicode string to a normal string\r
-#\r
-# Convert a python unicode string to a normal string\r
-# UniToStr(u'I am a string') is 'I am a string'\r
-#\r
-# @param Uni:  The python unicode string\r
-#\r
-# @retval:     The formatted normal string\r
-#\r
-def UniToStr(Uni):\r
-    return repr(Uni)[2:-1]\r