Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vdt-plugin
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
vdt-plugin
Commits
d2d7c636
Commit
d2d7c636
authored
Jan 24, 2014
by
Andrey Filippov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Configuring tools for IVerilog & GTKWave + minor bug fixes
parent
ed18a78f
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
225 additions
and
109 deletions
+225
-109
CurrentFileBaseGenerator.java
...l/vdt/core/tools/generators/CurrentFileBaseGenerator.java
+7
-7
Parameter.java
src/com/elphel/vdt/core/tools/params/Parameter.java
+3
-3
SelectedResourceManager.java
src/com/elphel/vdt/ui/variables/SelectedResourceManager.java
+9
-0
DesignFlowView.java
src/com/elphel/vdt/ui/views/DesignFlowView.java
+9
-1
IVerilog.xml
tools/Verilog/IVerilog.xml
+197
-98
No files found.
src/com/elphel/vdt/core/tools/generators/CurrentFileBaseGenerator.java
View file @
d2d7c636
...
...
@@ -17,10 +17,12 @@
*******************************************************************************/
package
com
.
elphel
.
vdt
.
core
.
tools
.
generators
;
//
import org.eclipse.core.resources.IFile;
import
org.eclipse.core.resources.IFile
;
//import org.eclipse.core.resources.IResource;
//import org.eclipse.ui.IPageLayout;
import
org.eclipse.core.runtime.Path
;
import
com.elphel.vdt.VDT
;
import
com.elphel.vdt.ui.variables.SelectedResourceManager
;
...
...
@@ -33,12 +35,10 @@ public class CurrentFileBaseGenerator extends AbstractGenerator {
protected
String
[]
getStringValues
()
{
// IResource resource = SelectedResourceManager.getDefault().getSelectedResource();
String
fullName
=
SelectedResourceManager
.
getDefault
().
getChosenTarget
();
// if((resource != null) && (resource.getType() == IResource.FILE)) {
// String fullName=((IFile)resource).getLocation().toOSString();
if
(
fullName
!=
null
){
int
dot
=
fullName
.
lastIndexOf
(
'.'
);
return
new
String
[]
{
(
dot
<
0
)
?
fullName
:
fullName
.
substring
(
0
,
dot
)
};
String
name
=
SelectedResourceManager
.
getDefault
().
getChosenShort
();
// last segment of the file name
if
(
name
!=
null
){
int
dot
=
name
.
lastIndexOf
(
'.'
);
return
new
String
[]
{
(
dot
>=
0
)?
name
.
substring
(
0
,
dot
):
name
};
}
return
new
String
[]
{
""
};
}
...
...
src/com/elphel/vdt/core/tools/params/Parameter.java
View file @
d2d7c636
...
...
@@ -346,9 +346,9 @@ public class Parameter implements Cloneable, Updateable {
}
public
List
<
String
>
getCurrentValue
()
{
if
(
id
.
equals
(
"SimulationTopFile"
)){
// Andrey
System
.
out
.
println
(
"getCurrentValue() SimulationTopFile, value="
+
currentValue
);
}
//
if (id.equals("SimulationTopFile")){ // Andrey
//
System.out.println("getCurrentValue() SimulationTopFile, value="+currentValue);
//
}
if
(
currentValue
.
isEmpty
())
return
null
;
...
...
src/com/elphel/vdt/ui/variables/SelectedResourceManager.java
View file @
d2d7c636
...
...
@@ -64,6 +64,7 @@ public class SelectedResourceManager implements IWindowListener, ISelectionListe
//Andrey
private
String
fChosenTarget
=
null
;
// full path of the chosen (for action) resource or any string. Used to calculate CurrentFile, verilog file, ...
private
String
fChosenShort
=
null
;
// last segment of the chosen resource name
private
IResource
fChosenVerilogFile
=
null
;
// to keep fSelectedVerilogFile
private
int
fChosenAction
=
0
;
// Chosen variant of running the tool
private
long
timestamp
=
0
;
...
...
@@ -255,6 +256,11 @@ public class SelectedResourceManager implements IWindowListener, ISelectionListe
fChosenVerilogFile
=
file
;
else
if
(
fChosenVerilogFile
==
null
)
fChosenVerilogFile
=
fSelectedVerilogFile
;
if
(
file
!=
null
){
fChosenShort
=
file
.
getName
();
// last segment
}
else
{
fChosenShort
=
fChosenTarget
;
// whatever
}
}
public
String
setBuildStamp
(){
...
...
@@ -270,6 +276,9 @@ public class SelectedResourceManager implements IWindowListener, ISelectionListe
public
String
getChosenTarget
()
{
return
fChosenTarget
;
}
public
String
getChosenShort
()
{
return
fChosenShort
;
}
public
IResource
getChosenVerilogFile
()
{
return
(
fChosenVerilogFile
!=
null
)?
fChosenVerilogFile:
fSelectedVerilogFile
;
...
...
src/com/elphel/vdt/ui/views/DesignFlowView.java
View file @
d2d7c636
...
...
@@ -522,7 +522,15 @@ public class DesignFlowView extends ViewPart implements ISelectionListener {
enabled
=(
selectedItem
!=
null
);
if
(
enabled
&&
runFor
[
i
].
getCheckExistence
()){
IPath
path
=
new
Path
(
name
);
IFile
file
=
(
path
==
null
)?
null
:
project
.
getFile
(
path
);
IFile
file
=
null
;
if
(
path
!=
null
)
{
try
{
file
=
project
.
getFile
(
path
);
}
catch
(
IllegalArgumentException
e
)
{
}
}
if
(
file
==
null
){
// System.out.println(name+" does not exist");
enabled
=
false
;
...
...
tools/Verilog/IVerilog.xml
View file @
d2d7c636
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment