]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/Python/Table/TableDataModel.py
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / BaseTools / Source / Python / Table / TableDataModel.py
index 9c3d7bd9345f768ffe53516d7ba0fc4f1637222f..3855807452f79d382b8ff5a9a3b07dce2a570c3f 100644 (file)
@@ -1,28 +1,23 @@
 ## @file\r
 # This file is used to create/update/query/erase table for data models\r
 #\r
-# Copyright (c) 2008, 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) 2008 - 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 absolute_import\r
 import Common.EdkLogger as EdkLogger\r
 import CommonDataClass.DataClass as DataClass\r
-from Table import Table\r
-from Common.String import ConvertToSqlString\r
+from Table.Table import Table\r
+from Common.StringUtils import ConvertToSqlString\r
 \r
 ## TableDataModel\r
 #\r
 # This class defined a table used for data model\r
-# \r
+#\r
 # @param object:       Inherited from object class\r
 #\r
 #\r
@@ -30,7 +25,7 @@ class TableDataModel(Table):
     def __init__(self, Cursor):\r
         Table.__init__(self, Cursor)\r
         self.Table = 'DataModel'\r
-    \r
+\r
     ## Create table\r
     #\r
     # Create table DataModel\r
@@ -62,13 +57,13 @@ class TableDataModel(Table):
         (Name, Description) = ConvertToSqlString((Name, Description))\r
         SqlCommand = """insert into %s values(%s, %s, '%s', '%s')""" % (self.Table, self.ID, CrossIndex, Name, Description)\r
         Table.Insert(self, SqlCommand)\r
-        \r
+\r
         return self.ID\r
-    \r
+\r
     ## Init table\r
     #\r
     # Create all default records of table DataModel\r
-    #  \r
+    #\r
     def InitTable(self):\r
         EdkLogger.verbose("\nInitialize table DataModel started ...")\r
         for Item in DataClass.MODEL_LIST:\r
@@ -77,7 +72,7 @@ class TableDataModel(Table):
             Description = Item[0]\r
             self.Insert(CrossIndex, Name, Description)\r
         EdkLogger.verbose("Initialize table DataModel ... DONE!")\r
-    \r
+\r
     ## Get CrossIndex\r
     #\r
     # Get a model's cross index from its name\r
@@ -91,5 +86,5 @@ class TableDataModel(Table):
         self.Cur.execute(SqlCommand)\r
         for Item in self.Cur:\r
             CrossIndex = Item[0]\r
-        \r
+\r
         return CrossIndex\r