]> git.proxmox.com Git - mirror_edk2.git/blob - BaseTools/Source/Python/Table/TableDec.py
BaseTools: Use absolute import in Table
[mirror_edk2.git] / BaseTools / Source / Python / Table / TableDec.py
1 ## @file
2 # This file is used to create/update/query/erase table for dec datas
3 #
4 # Copyright (c) 2008 - 2018, Intel Corporation. All rights reserved.<BR>
5 # This program and the accompanying materials
6 # are licensed and made available under the terms and conditions of the BSD License
7 # which accompanies this distribution. The full text of the license may be found at
8 # http://opensource.org/licenses/bsd-license.php
9 #
10 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 #
13
14 ##
15 # Import Modules
16 #
17 from __future__ import absolute_import
18 import Common.EdkLogger as EdkLogger
19 import CommonDataClass.DataClass as DataClass
20 from .Table import Table
21 from Common.StringUtils import ConvertToSqlString
22
23 ## TableDec
24 #
25 # This class defined a table used for data model
26 #
27 # @param object: Inherited from object class
28 #
29 #
30 class TableDec(Table):
31 def __init__(self, Cursor):
32 Table.__init__(self, Cursor)
33 self.Table = 'Dec'
34
35 ## Create table
36 #
37 # Create table Dec
38 #
39 # @param ID: ID of a Dec item
40 # @param Model: Model of a Dec item
41 # @param Value1: Value1 of a Dec item
42 # @param Value2: Value2 of a Dec item
43 # @param Value3: Value3 of a Dec item
44 # @param Arch: Arch of a Dec item
45 # @param BelongsToItem: The item belongs to which another item
46 # @param BelongsToFile: The item belongs to which dsc file
47 # @param StartLine: StartLine of a Dec item
48 # @param StartColumn: StartColumn of a Dec item
49 # @param EndLine: EndLine of a Dec item
50 # @param EndColumn: EndColumn of a Dec item
51 # @param Enabled: If this item enabled
52 #
53 def Create(self):
54 SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY,
55 Model INTEGER NOT NULL,
56 Value1 VARCHAR NOT NULL,
57 Value2 VARCHAR,
58 Value3 VARCHAR,
59 Arch VarCHAR,
60 BelongsToItem SINGLE NOT NULL,
61 BelongsToFile SINGLE NOT NULL,
62 StartLine INTEGER NOT NULL,
63 StartColumn INTEGER NOT NULL,
64 EndLine INTEGER NOT NULL,
65 EndColumn INTEGER NOT NULL,
66 Enabled INTEGER DEFAULT 0
67 )""" % self.Table
68 Table.Create(self, SqlCommand)
69
70 ## Insert table
71 #
72 # Insert a record into table Dec
73 #
74 # @param ID: ID of a Dec item
75 # @param Model: Model of a Dec item
76 # @param Value1: Value1 of a Dec item
77 # @param Value2: Value2 of a Dec item
78 # @param Value3: Value3 of a Dec item
79 # @param Arch: Arch of a Dec item
80 # @param BelongsToItem: The item belongs to which another item
81 # @param BelongsToFile: The item belongs to which dsc file
82 # @param StartLine: StartLine of a Dec item
83 # @param StartColumn: StartColumn of a Dec item
84 # @param EndLine: EndLine of a Dec item
85 # @param EndColumn: EndColumn of a Dec item
86 # @param Enabled: If this item enabled
87 #
88 def Insert(self, Model, Value1, Value2, Value3, Value4, Value5, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled):
89 self.ID = self.ID + 1
90 (Value1, Value2, Value3, Arch) = ConvertToSqlString((Value1, Value2, Value3, Arch))
91 SqlCommand = """insert into %s values(%s, %s, '%s', '%s', '%s', '%s', %s, %s, %s, %s, %s, %s, %s)""" \
92 % (self.Table, self.ID, Model, Value1, Value2, Value3, Arch, BelongsToItem, BelongsToFile, StartLine, StartColumn, EndLine, EndColumn, Enabled)
93 Table.Insert(self, SqlCommand)
94
95 return self.ID
96
97 ## Query table
98 #
99 # @param Model: The Model of Record
100 #
101 # @retval: A recordSet of all found records
102 #
103 def Query(self, Model):
104 SqlCommand = """select ID, Value1, Value2, Value3, Arch, BelongsToItem, BelongsToFile, StartLine from %s
105 where Model = %s
106 and Enabled > -1""" % (self.Table, Model)
107 EdkLogger.debug(4, "SqlCommand: %s" % SqlCommand)
108 self.Cur.execute(SqlCommand)
109 return self.Cur.fetchall()