]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/Python/Ecc/Exception.py
BaseTools: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / BaseTools / Source / Python / Ecc / Exception.py
index bde41c3a4b570931d9b2cc2336b483d1800c5b75..9251b8d7c47fed634bd1343b6f27edeb6ef97741 100644 (file)
@@ -1,21 +1,16 @@
 ## @file\r
 # This file is used to parse exception items found by ECC tool\r
 #\r
-# Copyright (c) 2009 - 2017, 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) 2009 - 2018, Intel Corporation. All rights reserved.<BR>\r
+# SPDX-License-Identifier: BSD-2-Clause-Patent\r
 #\r
 \r
 ##\r
 # Import Modules\r
 #\r
 from __future__ import print_function\r
-from Xml.XmlRoutines import *\r
+from __future__ import absolute_import\r
+from Ecc.Xml.XmlRoutines import *\r
 import Common.LongFilePathOs as os\r
 \r
 # ExceptionXml to parse Exception Node of XML file\r
@@ -24,12 +19,12 @@ class ExceptionXml(object):
         self.KeyWord = ''\r
         self.ErrorID = ''\r
         self.FilePath = ''\r
-        \r
+\r
     def FromXml(self, Item, Key):\r
         self.KeyWord = XmlElement(Item, '%s/KeyWord' % Key)\r
         self.ErrorID = XmlElement(Item, '%s/ErrorID' % Key)\r
         self.FilePath = os.path.normpath(XmlElement(Item, '%s/FilePath' % Key))\r
-        \r
+\r
     def __str__(self):\r
         return 'ErrorID = %s KeyWord = %s FilePath = %s' %(self.ErrorID, self.KeyWord, self.FilePath)\r
 \r
@@ -37,22 +32,22 @@ class ExceptionXml(object):
 class ExceptionListXml(object):\r
     def __init__(self):\r
         self.List = []\r
-    \r
+\r
     def FromXmlFile(self, FilePath):\r
         XmlContent = XmlParseFile(FilePath)\r
         for Item in XmlList(XmlContent, '/ExceptionList/Exception'):\r
             Exp = ExceptionXml()\r
             Exp.FromXml(Item, 'Exception')\r
             self.List.append(Exp)\r
-    \r
+\r
     def ToList(self):\r
         RtnList = []\r
         for Item in self.List:\r
             #RtnList.append((Item.ErrorID, Item.KeyWord, Item.FilePath))\r
             RtnList.append((Item.ErrorID, Item.KeyWord))\r
-    \r
+\r
         return RtnList\r
-        \r
+\r
     def __str__(self):\r
         RtnStr = ''\r
         if self.List:\r
@@ -71,7 +66,7 @@ class ExceptionCheck(object):
         if FilePath and os.path.isfile(FilePath):\r
             self.ExceptionListXml.FromXmlFile(FilePath)\r
             self.ExceptionList = self.ExceptionListXml.ToList()\r
-    \r
+\r
     def IsException(self, ErrorID, KeyWord, FileID=-1):\r
         if (str(ErrorID), KeyWord.replace('\r\n', '\n')) in self.ExceptionList:\r
             return True\r