summaryrefslogtreecommitdiff
path: root/src/ngspice_ghdl.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/ngspice_ghdl.py')
-rwxr-xr-xsrc/ngspice_ghdl.py198
1 files changed, 169 insertions, 29 deletions
diff --git a/src/ngspice_ghdl.py b/src/ngspice_ghdl.py
index 9f88ce2..6791cc1 100755
--- a/src/ngspice_ghdl.py
+++ b/src/ngspice_ghdl.py
@@ -16,11 +16,19 @@ from ConfigParser import SafeConfigParser
class Mainwindow(QtGui.QWidget):
def __init__(self):
- super(Mainwindow, self).__init__()
+ #super(Mainwindow, self).__init__()
+ QtGui.QMainWindow.__init__(self)
print "Initializing.........."
+ cwd = os.getcwd()
+ path, file = os.path.split(cwd)
+ print "cwd n path------ >", cwd, path
+ licensefile = os.path.join(path, "LICENSE")
+ fileopen = open(licensefile, 'r')
+ print fileopen.read()
self.home = os.path.expanduser("~")
self.parser = SafeConfigParser()
self.parser.read(self.home+'/.FreeEDA/config.ini')
+ self.file_list = [] #to keep the supporting files
self.initUI()
def initUI(self):
@@ -30,30 +38,42 @@ class Mainwindow(QtGui.QWidget):
self.exitbtn.clicked.connect(self.closeWindow)
self.browsebtn = QtGui.QPushButton('Browse')
self.browsebtn.clicked.connect(self.browseFile)
+ self.addbtn = QtGui.QPushButton('Add Files')
+ self.addbtn.clicked.connect(self.addFiles)
+ self.removebtn = QtGui.QPushButton('Remove Files')
+ self.removebtn.clicked.connect(self.removeFiles)
self.ledit = QtGui.QLineEdit(self)
- self.tedit = QtGui.QTextEdit(self)
-
-
+ self.sedit = QtGui.QTextEdit(self)
+ self.process = QtCore.QProcess(self)
+ self.terminal = QtGui.QWidget(self)
+
+ self.process.start('xterm',['-into', str(self.terminal.winId())])
#Creating gridlayout
grid = QtGui.QGridLayout()
grid.setSpacing(5)
grid.addWidget(self.ledit, 1, 0)
grid.addWidget(self.browsebtn, 1, 1)
- grid.addWidget(self.uploadbtn,2,0)
- grid.addWidget(self.exitbtn,2,1)
- grid.addWidget(self.tedit,3,0)
+ grid.addWidget(self.sedit, 2, 0, 4, 1)
+ grid.addWidget(self.addbtn, 2, 1)
+ grid.addWidget(self.removebtn, 3, 1)
+ grid.addWidget(self.terminal, 6, 0,10,1)
+ grid.addWidget(self.uploadbtn, 17, 0)
+ grid.addWidget(self.exitbtn,17, 1)
self.setLayout(grid)
self.setGeometry(300, 300, 600,600)
self.setWindowTitle("Ngspice Digital Model Creator")
#self.setWindowIcon(QtGui.QIcon('logo.png'))
- self.tedit.setReadOnly(True)
self.show()
def closeWindow(self):
+ try:
+ self.process.kill()
+ except:
+ pass
print "Close button clicked"
quit()
@@ -63,6 +83,32 @@ class Mainwindow(QtGui.QWidget):
print "Path file :", self.filename
self.ledit.setText(self.filename)
+ def addFiles(self):
+ print "Add Files button clicked"
+ title = self.addbtn.text()
+ for file in QtGui.QFileDialog.getOpenFileNames(self, title):
+ print "Supporting file :", file
+ self.sedit.append(str(file))
+ self.file_list.append(file)
+
+
+ def removeFiles(self):
+ self.fileRemover = FileRemover(self)
+
+
+ #check extensions of all supporting files
+ def checkSupportFiles(self):
+ nonvhdl_count = 0
+ for file in self.file_list:
+ extension = os.path.splitext(str(file))[1]
+ if extension != ".vhdl":
+ nonvhdl_count += 1
+ self.file_list.remove(file)
+
+ if nonvhdl_count > 0:
+ QtGui.QMessageBox.about(self,'Message','''<b>Important Message.</b><br/><br/>This accepts only <b>.vhdl</b> file ''')
+
+
def createModelDirectory(self):
print "Create Model Directory Called"
self.digital_home=self.parser.get('NGSPICE','DIGITAL_MODEL')
@@ -119,7 +165,7 @@ class Mainwindow(QtGui.QWidget):
print "Current Working directory changed to ",self.cur_dir
cmd = "python ~/.FreeEDA/model_generation.py "+str(self.ledit.text())
stdouterr = os.popen4(cmd)[1].read()
- self.tedit.append(stdouterr)
+ print stdouterr
#Moving file to model directory
path=self.digital_home+"/"+self.modelname
shutil.move("cfunc.mod",path)
@@ -138,6 +184,9 @@ class Mainwindow(QtGui.QWidget):
shutil.copy(self.home+"/.FreeEDA/ghdlserver/ghdlserver.h",path+"/DUTghdl/")
shutil.copy(self.home+"/.FreeEDA/ghdlserver/Utility_Package.vhdl",path+"/DUTghdl/")
shutil.copy(self.home+"/.FreeEDA/ghdlserver/Vhpi_Package.vhdl",path+"/DUTghdl/")
+
+ for file in self.file_list:
+ shutil.copy(str(file), path+"/DUTghdl/")
os.chdir(path+"/DUTghdl")
subprocess.call("bash "+path+"/DUTghdl/compile.sh", shell=True)
@@ -159,9 +208,15 @@ class Mainwindow(QtGui.QWidget):
self.release_home=self.parser.get('NGSPICE','RELEASE')
os.chdir(self.release_home)
try:
- cmd = "make"
- self.tedit.append("Running Make")
- subprocess.call(cmd,shell=True)
+ cmd = " make"
+ print "Running Make"
+ path = os.getcwd()
+ #subprocess.call(cmd,shell=True)
+ command = "cd "+path +";"+cmd +";"+"make install"
+ self.args = ['-into', str(self.terminal.winId()),'-hold','+s','-e', command]
+ self.process.start('xterm', self.args)
+ print "pid ------ >",self.process.pid()
+
#stdouterr = os.popen4(cmd)[1].read()
#self.tedit.append(stdouterr)
except:
@@ -171,9 +226,15 @@ class Mainwindow(QtGui.QWidget):
def runMakeInstall(self):
print "run Make Install Called"
try:
- cmd = "make install"
- self.tedit.append("Running Make Install")
- subprocess.call(cmd,shell=True)
+ cmd = " make install"
+ print "Running Make Install"
+ path = os.getcwd()
+ print "cwd------------>", path
+ #subprocess.call(cmd,shell=True)
+ command = "cd "+path+ ";"+cmd
+ self.args = ['-into', str(self.terminal.winId()),'-hold','-e', command]
+ #self.process.start('xterm', self.args)
+ #self.process.waitForFinished(-1)
#stdouterr = os.popen4(cmd)[1].read()
#self.tedit.append(stdouterr)
except:
@@ -182,22 +243,101 @@ class Mainwindow(QtGui.QWidget):
def uploadModle(self):
print "Upload button clicked"
- self.file_extension = os.path.splitext(str(self.filename))[1]
- print "File extension",self.file_extension
- print "Parser Content:",self.parser.get('NGSPICE', 'NGSPICE_HOME')
- self.cur_dir = os.getcwd()
- print "My Current Working Directory",self.cur_dir
- if self.file_extension == ".vhdl":
- self.createModelDirectory()
- self.addingModelInModpath()
- self.createModelFiles()
- self.runMake()
- self.runMakeInstall()
- else:
- QtGui.QMessageBox.about(self,'Message','''<b>Important Message.</b><br/><br/>This accepts only <b>.vhdl</b> file ''')
+ try:
+ self.process.kill()
+ except:
+ pass
+ try:
+ self.file_extension = os.path.splitext(str(self.filename))[1]
+ print "File extension",self.file_extension
+ print "Parser Content:",self.parser.get('NGSPICE', 'NGSPICE_HOME')
+ self.cur_dir = os.getcwd()
+ print "My Current Working Directory",self.cur_dir
+ self.checkSupportFiles()
+ if self.file_extension == ".vhdl":
+ self.createModelDirectory()
+ self.addingModelInModpath()
+ self.createModelFiles()
+ self.runMake()
+ self.runMakeInstall()
+ else:
+ QtGui.QMessageBox.about(self,'Message','''<b>Important Message.</b><br/><br/>This accepts only <b>.vhdl</b> file ''')
+ except:
+ QtGui.QMessageBox.about(self, 'Message','''<b>Error</b><br/><br/> select a <b>.vhdl</b> file ''')
+
+class FileRemover(QtGui.QWidget):
+
+ def __init__(self, main_obj):
+ super(FileRemover, self).__init__()
+ self.row = 0
+ self.col = 0
+ self.cb_dict = {}
+ self.marked_list = []
+ self.files = main_obj.file_list
+ self.sedit = main_obj.sedit
+
+ print self.files
+
+ self.grid = QtGui.QGridLayout()
+ removebtn = QtGui.QPushButton('Remove', self)
+ removebtn.clicked.connect(self.removeFiles)
+
+ self.grid.addWidget(self.createCheckBox(), 0, 0)
+ self.grid.addWidget(removebtn, 1, 1)
+
+ self.setLayout(self.grid)
+ self.show()
+
+ def createCheckBox(self):
+
+ self.checkbox = QtGui.QGroupBox()
+ self.checkbox.setTitle('Remove Files')
+ self.checkgrid = QtGui.QGridLayout()
+
+ self.checkgroupbtn = QtGui.QButtonGroup()
+
+ for path in self.files:
+
+ print path
+
+ self.cb_dict[path] = QtGui.QCheckBox(path)
+ self.checkgroupbtn.addButton(self.cb_dict[path])
+ self.checkgrid.addWidget(self.cb_dict[path], self.row, self.col)
+ self.row += 1
+
+ self.checkgroupbtn.setExclusive(False)
+ self.checkgroupbtn.buttonClicked.connect(self.mark_file)
+ self.checkbox.setLayout(self.checkgrid)
+
+ return self.checkbox
+
+ def mark_file(self):
+
+ for path in self.cb_dict:
+ if self.cb_dict[path].isChecked():
+ if path not in self.marked_list:
+ self.marked_list.append(path)
+
+ else:
+ if path in self.marked_list:
+ self.marked_list.remove(path)
+
+ def removeFiles(self):
+
+ for path in self.marked_list:
+ print path, "is removed"
+ self.sedit.append(path + " removed")
+ self.files.remove(path)
+
+ self.sedit.clear()
+ for path in self.files:
+ self.sedit.append(path)
+
+ self.marked_list[:] = []
+ self.files[:] = []
+ self.close()
-
def main():
app = QtGui.QApplication(sys.argv)