]> AND Private Git Repository - blast.git/blobdiff - MainWindow.cpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
finished testbench generation
[blast.git] / MainWindow.cpp
index 6afabcdcf21aabdb040159e13bec859acf1e6567..6f4716ad57dfe346ab2efb149a2848f3bf281e8a 100644 (file)
@@ -4,14 +4,14 @@
 #include "BlockLibraryWidget.h"
 #include "GroupWidget.h"
 #include "GroupScene.h"
-#include "BlockWidget.h"
-#include "AbstractBoxItem.h"
+#include "VHDLConverter.h"
 #include "Graph.h"
-#include "GroupItem.h"
+#include "FunctionalBlock.h"
 #include <QDomDocument>
 #include <QDomElement>
 #include <QDomText>
 #include <sstream>
+#include "NewProjectDialog.h"
 
 MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) {
 
@@ -24,6 +24,9 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) {
   try {    
     params->loadBlastConfiguration("blastconfig.xml");
 
+    // first load external sources
+    params->loadSources();
+
     if (!QFileInfo::exists(params->refLib)) {
       params->loadReferencesFromXml();
       int ret = QMessageBox::question(this,tr("Building references library"),tr("The reference block library does not exists.\n References have been read directly from the xml descriptions of blocks.\n It can be saved into a library in order to start application faster. "), QMessageBox::Ok | QMessageBox::Cancel, QMessageBox::Ok);
@@ -54,6 +57,8 @@ MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent) {
 
   cout << "all references and implementations are loaded" << endl;
 
+  params->createDelayBlock();
+
   // create the menu, action, ...
   dispatcher = new Dispatcher(params,this);
   params->setDispatcher(dispatcher);
@@ -86,9 +91,11 @@ MainWindow::~MainWindow() {}
 void MainWindow::initialize() {
 
   projectMenuEnb = 0;
+  analysisMenuEnb = 0;
 
   stackedWidget->setCurrentIndex(0);
   enableProjectActions(true,PROJECT_NEW | PROJECT_OPEN, OP_RAZ);
+  enableAnalysisActions(false);
 
   stackedWidget->setCurrentIndex(0);
 
@@ -195,11 +202,45 @@ void MainWindow::enableProjectActions(bool enbMenu, quint16 mask, quint8 op) {
   }
 }
 
+void MainWindow::enableAnalysisActions(bool enbMenu, quint16 mask, quint8 op) {
+  if (enbMenu) {
+    analysisMenu->setEnabled(true);
+  }
+  else {
+    analysisMenu->setEnabled(false);
+  }
+
+  if (op == OP_ADD) {
+    analysisMenuEnb = analysisMenuEnb | mask;
+  }
+  else if (op == OP_REM) {
+    analysisMenuEnb = (analysisMenuEnb | mask) ^ mask;
+  }
+  else if (op == OP_RAZ) {
+    analysisMenuEnb = mask;
+  }
+
+
+  if (analysisMenuEnb & ANALYSIS_ANALYZE) {
+    graphAnalysis->setEnabled(true);
+  }
+  else {
+    graphAnalysis->setEnabled(false);
+  }
+  if (analysisMenuEnb & ANALYSIS_GENERATE) {
+    generateVHDL->setEnabled(true);
+  }
+  else {
+    generateVHDL->setEnabled(false);
+  }
+}
+
 void MainWindow::createMenus(){
 
   allMenuBar = menuBar();
 
   projectMenu = allMenuBar->addMenu(tr("&Project"));
+  analysisMenu = allMenuBar->addMenu(tr("&Analysis"));
   toolsMenu = allMenuBar->addMenu(tr("&Tools"));
 
   projectMenu->addAction(newProject);
@@ -209,8 +250,11 @@ void MainWindow::createMenus(){
   projectMenu->addAction(closeProject);
   projectMenu->addAction(openLibrary);
 
-  toolsMenu->addAction(newBlockWidgetAct);
-  toolsMenu->addAction(graphValidation);
+  analysisMenu->addAction(graphAnalysis);
+  analysisMenu->addAction(generateVHDL);
+
+  toolsMenu->addAction(vhdlToXmlAct);
+
 
 }
 
@@ -246,33 +290,45 @@ void MainWindow::createActions() {
   openLibrary->setStatusTip(tr("Open block library window"));
   connect(openLibrary, SIGNAL(triggered()), this, SLOT(slotOpenBlockLibrary()));
 
-  newBlockWidgetAct = new QAction(tr("&XML generator"), this);
-  newBlockWidgetAct->setIcon(QPixmap::fromImage(QImage("icons/new.ico")));
-  newBlockWidgetAct->setStatusTip(tr("Create a new XML generator"));
-  connect(newBlockWidgetAct, SIGNAL(triggered()), this, SLOT(slotNewBlockWidget()));
+  vhdlToXmlAct = new QAction(tr("&XML generator"), this);
+  vhdlToXmlAct->setIcon(QPixmap::fromImage(QImage("icons/new.ico")));
+  vhdlToXmlAct->setStatusTip(tr("Create a new XML generator"));
+  connect(vhdlToXmlAct, SIGNAL(triggered()), this, SLOT(slotVHDLToXml()));
+
+  graphAnalysis = new QAction(tr("&graph analysis"), this);
+  graphAnalysis->setIcon(QPixmap::fromImage(QImage("icons/new.ico")));
+  graphAnalysis->setStatusTip(tr("validate the graph"));
+  connect(graphAnalysis, SIGNAL(triggered()), this, SLOT(slotGraphAnalysis()));
 
-  graphValidation = new QAction(tr("&graph validation"), this);
-  graphValidation->setIcon(QPixmap::fromImage(QImage("icons/new.ico")));
-  graphValidation->setStatusTip(tr("validate the graph"));
-  connect(graphValidation, SIGNAL(triggered()), this, SLOT(slotGraphValidation()));
+  generateVHDL = new QAction(tr("generate &VHDL"), this);
+  generateVHDL->setIcon(QPixmap::fromImage(QImage("icons/new.ico")));
+  generateVHDL->setStatusTip(tr("generate the VHDL code for the whole design"));
+  connect(generateVHDL, SIGNAL(triggered()), this, SLOT(slotGenerateVHDL()));
 
 }
 
-void MainWindow::save(QString absoluteFilename) {
-  params->save(absoluteFilename);
+void MainWindow::save(QString projectFile) {
+  params->save(projectFile);
 }
 
-void MainWindow::slotLoadProject(){
+void MainWindow::slotLoadProject(QString fileName){
 
-  absoluteFilename = QFileDialog::getOpenFileName(0, "select a project file", "save/",tr("sauvegardes (*.xml)"));
+  if (fileName == "") {
+    params->projectFile = QFileDialog::getOpenFileName(0, "select a project file", "save/",tr("sauvegardes (*.xml)"));
+  }
+  else {
+    params->projectFile = fileName;
+  }
 
-  if(! absoluteFilename.isEmpty()){
-    GroupWidget* topGroup = dispatcher->loadProject(absoluteFilename);
+  if(! params->projectFile.isEmpty()){
+    GroupWidget* topGroup = dispatcher->loadProject(params->projectFile);
     if (topGroup != NULL) {
       addTopGroup(topGroup);
       library->updateComboScene();
+      library->updateBoxConn();
       params->isCurrentProject = true;
       enableProjectActions(true, PROJECT_CLOSE | PROJECT_SAVE | PROJECT_SAVEAS | PROJECT_LIB, OP_RAZ);
+      enableAnalysisActions(true, ANALYSIS_ANALYZE | ANALYSIS_GENERATE, OP_RAZ);
     }
     else {
       QMessageBox msgBox;
@@ -280,7 +336,7 @@ void MainWindow::slotLoadProject(){
       msgBox.setStandardButtons(QMessageBox::Cancel);
       msgBox.setDefaultButton(QMessageBox::Cancel);
 
-      int ret = msgBox.exec();
+      msgBox.exec();
     }
   }
 }
@@ -288,11 +344,19 @@ void MainWindow::slotLoadProject(){
 
 void MainWindow::slotNewProject(){
 
-  enableProjectActions(true, PROJECT_CLOSE | PROJECT_SAVE | PROJECT_SAVEAS | PROJECT_LIB, OP_RAZ);
-  GroupWidget* topGroup = dispatcher->createTopScene();
-  addTopGroup(topGroup);
-  library->updateComboScene();
-  params->isCurrentProject = true;
+  NewProjectDialog* dialog = new NewProjectDialog(params);
+  int ret = dialog->exec();
+
+  if (ret == 1) {
+    enableProjectActions(true, PROJECT_CLOSE | PROJECT_SAVE | PROJECT_SAVEAS | PROJECT_LIB, OP_RAZ);
+    enableAnalysisActions(true, ANALYSIS_ANALYZE | ANALYSIS_GENERATE, OP_RAZ);
+    GroupWidget* topGroup = dispatcher->createTopScene(Dispatcher::Design, params->mainClock);
+    addTopGroup(topGroup);
+    library->updateComboScene();
+    library->updateBoxConn();
+    library->show();
+    params->isCurrentProject = true;
+  }
 }
 
 bool MainWindow::slotCloseProject(){
@@ -319,6 +383,9 @@ bool MainWindow::slotCloseProject(){
         break;
       }
     }
+    else {
+      doClose = true;
+    }
     if (doClose) {
       // removing the GroupWidget from stack
       QWidget *widget = stackedWidget->widget(1);
@@ -329,7 +396,7 @@ bool MainWindow::slotCloseProject(){
 
       params->isCurrentProject = false;
       params->unsaveModif = false;
-      absoluteFilename = QString();
+      params->projectFile = QString();
 
       initialize();
     }
@@ -338,13 +405,13 @@ bool MainWindow::slotCloseProject(){
 }
 
 
-void MainWindow::slotNewBlockWidget() {
-  new BlockWidget();
+void MainWindow::slotVHDLToXml() {
+  new VHDLConverter();
 }
 
 void MainWindow::slotSaveProject(){
-  if(absoluteFilename != QString()){
-    save(absoluteFilename);
+  if(params->projectFile != QString()){
+    save(params->projectFile);
   } else {
     slotSaveAsProject();
   }
@@ -356,9 +423,9 @@ void MainWindow::slotSaveAsProject(){
     dial.setDefaultSuffix(".xml");
     dial.setAcceptMode(QFileDialog::AcceptSave);
     if(dial.exec() == QFileDialog::AcceptSave){
-      absoluteFilename = dial.selectedFiles().at(0);
-      if(absoluteFilename != QString())
-        save(absoluteFilename);
+      params->projectFile = dial.selectedFiles().at(0);
+      if(params->projectFile != QString())
+        save(params->projectFile);
     }
   }
 }
@@ -368,8 +435,35 @@ void MainWindow::slotOpenBlockLibrary() {
 }
 
 
-void MainWindow::slotGraphValidation() {
-  params->parametersValidation();
+void MainWindow::slotGraphAnalysis() {
+  bool compat = true;
+  try {    
+    params->getGraph()->computeOutputPatterns(1);
+  }
+  catch(Exception e) {
+    cerr << qPrintable(e.getMessage()) << endl;
+    compat = false;
+    if (e.getType() == IP_AP_NOTCOMPAT) {
+      FunctionalBlock* toBlock = (FunctionalBlock*)(e.getSource());
+      QString msg = tr("");
+      msg.append(toBlock->getName());
+      msg += " is not compatible with its input pattern.\nDo you want to launch automatic modification process to ensure the compatibility ?";
+      int ret = QMessageBox::question(this,tr("Building references library"),msg, QMessageBox::Ok | QMessageBox::Cancel, QMessageBox::Ok);
+      if (ret == QMessageBox::Ok) {
+        dispatcher->findGraphModifications(Dispatcher::Design, toBlock);
+      }
+    }
+  }
+}
+
+void MainWindow::slotGenerateVHDL() {
+
+  try {
+    dispatcher->generateVHDL(Dispatcher::Design);
+  }
+  catch(Exception e) {
+    cerr << qPrintable(e.getMessage()) << endl;
+  }
 }
 
 void MainWindow::addTopGroup(GroupWidget *_topGroup) {
@@ -390,13 +484,16 @@ void MainWindow::closeEvent(QCloseEvent *event) {
     slotCloseProject();
     event->ignore();
   }
+  else {
+    library->deleteLater();
+  }
 
 }
 
 void MainWindow::mousePressEvent(QMouseEvent *e) {
 
   if (dispatcher->getCurrentGroup() != NULL) {
-    dispatcher->setCurrentGroupWidget(dispatcher->getCurrentGroup());
+    dispatcher->setCurrentGroupWidget(Dispatcher::Design, dispatcher->getCurrentGroup());
   }
   QMainWindow::mousePressEvent(e);
 }