mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
296 lines
8.0 KiB
C++
296 lines
8.0 KiB
C++
/***************************************************************************
|
|
vhdlfile.cpp
|
|
--------------
|
|
begin : Sat Apr 15 2006
|
|
copyright : (C) 2006 by Michael Margraf
|
|
email : michael.margraf@alumni.tu-berlin.de
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include "vhdlfile.h"
|
|
#include "qucs.h"
|
|
#include "main.h"
|
|
#include "schematic.h"
|
|
|
|
#include <qregexp.h>
|
|
#include <qdir.h>
|
|
#include <qfileinfo.h>
|
|
|
|
|
|
VHDL_File::VHDL_File()
|
|
{
|
|
Type = isDigitalComponent;
|
|
Description = QObject::tr("VHDL file");
|
|
|
|
Props.append(new Property("File", "sub.vhdl", false,
|
|
QObject::tr("Name of VHDL file")));
|
|
|
|
Model = "VHDL";
|
|
Name = "X";
|
|
|
|
// Do NOT call createSymbol() here. But create port to let it rotate.
|
|
Ports.append(new Port(0, 0));
|
|
}
|
|
|
|
// -------------------------------------------------------
|
|
Component* VHDL_File::newOne()
|
|
{
|
|
VHDL_File *p = new VHDL_File();
|
|
p->Props.getFirst()->Value = Props.getFirst()->Value;
|
|
p->recreate(0);
|
|
return p;
|
|
}
|
|
|
|
// -------------------------------------------------------
|
|
Element* VHDL_File::info(QString& Name, char* &BitmapFile, bool getNewOne)
|
|
{
|
|
Name = QObject::tr("VHDL file");
|
|
BitmapFile = (char *) "vhdlfile";
|
|
|
|
if(getNewOne) {
|
|
VHDL_File *p = new VHDL_File();
|
|
p->recreate(0); // createSymbol() is NOT called in constructor !!!
|
|
return p;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
// -------------------------------------------------------
|
|
QString VHDL_File::vhdlCode(int)
|
|
{
|
|
QString s;
|
|
Port *pp = Ports.first();
|
|
if(pp) {
|
|
s = " " + Name + ": entity " + EntityName + " port map (";
|
|
|
|
// output all node names
|
|
if(pp) s += pp->Connection->Name;
|
|
for(pp = Ports.next(); pp != 0; pp = Ports.next())
|
|
s += ", "+pp->Connection->Name; // node names
|
|
|
|
s += ");\n";
|
|
}
|
|
return s;
|
|
}
|
|
|
|
// -------------------------------------------------------
|
|
// Returns a comma separated list of the port names of the last
|
|
// entity in this file.
|
|
QString VHDL_File::loadFile()
|
|
{
|
|
QString s, File(Props.getFirst()->Value);
|
|
QFileInfo Info(File);
|
|
if(Info.isRelative())
|
|
File = QucsWorkDir.filePath(File);
|
|
|
|
QFile f(File);
|
|
if(!f.open(IO_ReadOnly))
|
|
return QString("");
|
|
|
|
QTextStream stream(&f);
|
|
File = stream.read(); // QString is better for "find" function
|
|
f.close();
|
|
|
|
int i=0, p, j, l, k=0;
|
|
while((i=File.find("--", i)) >= 0) { // remove all VHDL comments
|
|
j = File.find('\n', i+2); // (This also finds "--" within a ...
|
|
if(j < 0) // string, but as no strings are ...
|
|
File = File.left(i); // allowed in entity headers, it ...
|
|
else // does not matter.)
|
|
File.remove(i, j-i);
|
|
}
|
|
|
|
QRegExp Expr;
|
|
Expr.setCaseSensitive(false);
|
|
for(;;) {
|
|
k--;
|
|
Expr.setPattern("\\bentity\\b"); // start of last entity
|
|
k = File.findRev(Expr, k);
|
|
if(k < 0)
|
|
return QString("");
|
|
|
|
Expr.setPattern("\\bend\\b"); // end of last entity
|
|
i = File.find(Expr, k+7);
|
|
if(i < 0)
|
|
return QString("");
|
|
s = File.mid(k+7, i-k-7); // cut out entity declaration
|
|
|
|
Expr.setPattern("\\b");
|
|
i = s.find(Expr);
|
|
if(i < 0)
|
|
return QString("");
|
|
j = s.find(Expr, i+1);
|
|
if(j < 0)
|
|
return QString("");
|
|
EntityName = s.mid(i, j-i); // save entity name
|
|
|
|
i = s.find(Expr, j+1);
|
|
if(i < 0)
|
|
return QString("");
|
|
j = s.find(Expr, i+1);
|
|
if(j < 0)
|
|
return QString("");
|
|
if(s.mid(i, j-i).lower() == "is") // really found start of entity ?
|
|
break;
|
|
|
|
if(k < 1) // already searched the whole text
|
|
return QString("");
|
|
}
|
|
|
|
Expr.setPattern("\\bport\\b"); // start of interface definition
|
|
i = s.find(Expr, j+1);
|
|
if(i < 0)
|
|
return QString("");
|
|
// find opening (
|
|
i = s.find('(', i+4) + 1;
|
|
if(i <= 0)
|
|
return QString("");
|
|
|
|
// find closing (
|
|
p = i;
|
|
j = i-1;
|
|
do {
|
|
j = s.find(')', j+1);
|
|
if(j < 0)
|
|
return QString("");
|
|
p = s.find('(', p+1);
|
|
} while (p >= 0);
|
|
|
|
s = s.mid(i, j-i);
|
|
s.remove('\n');
|
|
s.remove('\t');
|
|
|
|
// find port names and types in parameter specification
|
|
l = i = 0; // remove all VHDL identifiers (e.g. ": out bit;")
|
|
QString types = "", t;
|
|
while((i=s.find(':', i)) >= 0) {
|
|
j = s.find(';', i+2);
|
|
if(j < 0) {
|
|
t = s.mid(i+1);
|
|
t.remove(';');
|
|
t = t.simplifyWhiteSpace();
|
|
s = s.left(i);
|
|
} else {
|
|
t = s.mid(i+1, j-i);
|
|
t.remove(';');
|
|
t = t.simplifyWhiteSpace();
|
|
s.remove(i, j-i);
|
|
}
|
|
if ((k = t.find(' ')) >= 0)
|
|
t = t.mid(k+1);
|
|
t = t.simplifyWhiteSpace();
|
|
k = s.find(';',l+2);
|
|
k = s.mid(l,k-l).contains(',') + 1;
|
|
while (k-->0) types = types + t + ",";
|
|
i--;
|
|
l = i;
|
|
}
|
|
|
|
s.remove(' ');
|
|
s.replace(';', ',');
|
|
TypeNames=types=types.left(types.length()-1);
|
|
return s;
|
|
}
|
|
|
|
// -------------------------------------------------------
|
|
void VHDL_File::createSymbol()
|
|
{
|
|
QFontMetrics metrics(QucsSettings.font); // get size of text
|
|
int fHeight = metrics.lineSpacing();
|
|
|
|
int No = 0;
|
|
TypeNames = "";
|
|
QString tmp, PortNames = loadFile();
|
|
if(!PortNames.isEmpty())
|
|
No = PortNames.contains(',') + 1;
|
|
|
|
#define HALFWIDTH 17
|
|
int h = 30*((No-1)/2) + 15;
|
|
Lines.append(new Line(-HALFWIDTH, -h, HALFWIDTH, -h,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line( HALFWIDTH, -h, HALFWIDTH, h,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line(-HALFWIDTH, h, HALFWIDTH, h,QPen(QPen::darkBlue,2)));
|
|
Lines.append(new Line(-HALFWIDTH, -h,-HALFWIDTH, h,QPen(QPen::darkBlue,2)));
|
|
|
|
tmp = QObject::tr("vhdl");
|
|
int w = metrics.width(tmp);
|
|
Texts.append(new Text(w/-2, fHeight/-2, tmp));
|
|
|
|
|
|
int y = 15-h, i = 0;
|
|
Port *pp;
|
|
while(i<No) {
|
|
Lines.append(new Line(-30, y,-HALFWIDTH, y,QPen(QPen::darkBlue,2)));
|
|
pp = new Port(-30, y);
|
|
Ports.append(pp);
|
|
pp->Type = TypeNames.section(',', i, i);
|
|
tmp = PortNames.section(',', i, i);
|
|
w = metrics.width(tmp);
|
|
Texts.append(new Text(-19-w, y-fHeight-2, tmp));
|
|
i++;
|
|
|
|
if(i == No) break;
|
|
Lines.append(new Line(HALFWIDTH, y, 30, y,QPen(QPen::darkBlue,2)));
|
|
pp = new Port( 30, y);
|
|
Ports.append(pp);
|
|
pp->Type = TypeNames.section(',', i, i);
|
|
tmp = PortNames.section(',', i, i);
|
|
Texts.append(new Text( 20, y-fHeight-2, tmp));
|
|
y += 60;
|
|
i++;
|
|
}
|
|
|
|
x1 = -30; y1 = -h-2;
|
|
x2 = 30; y2 = h+2;
|
|
tx = x1+4;
|
|
ty = y2+4;
|
|
}
|
|
|
|
// -------------------------------------------------------
|
|
QString VHDL_File::getSubcircuitFile()
|
|
{
|
|
// construct full filename
|
|
QString FileName = Props.getFirst()->Value;
|
|
return properAbsFileName(FileName);
|
|
}
|
|
|
|
// -------------------------------------------------------
|
|
bool VHDL_File::createSubNetlist(QTextStream *stream)
|
|
{
|
|
ErrText = "";
|
|
|
|
// check filename
|
|
QString FileName = Props.getFirst()->Value;
|
|
if(FileName.isEmpty()) {
|
|
ErrText += QObject::tr("ERROR: No file name in %1 component \"%2\".").
|
|
arg(Model).arg(Name);
|
|
return false;
|
|
}
|
|
|
|
// construct full filename
|
|
FileName = getSubcircuitFile();
|
|
|
|
// open file for reading
|
|
QFile f(FileName);
|
|
if(!f.open(IO_ReadOnly)) {
|
|
ErrText += QObject::tr("ERROR: Cannot open %1 file \"%2\".").
|
|
arg(Model).arg(FileName);
|
|
return false;
|
|
}
|
|
|
|
// write the whole VHDL file into the netlist output
|
|
QByteArray FileContent = f.readAll();
|
|
f.close();
|
|
(*stream) << '\n';
|
|
stream->writeRawBytes(FileContent.data(), FileContent.size());
|
|
(*stream) << '\n';
|
|
return true;
|
|
}
|