flgen 0.15.0 → 0.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bcca98956f35047f290608dcbbf1020017006475cc0d139c05ab070b19d47aa3
4
- data.tar.gz: f1f2bb32ae9a4fd5c3466d6a375573fdc6b6944a8130e6c6be03d558f5ac4f58
3
+ metadata.gz: 73f400f84753663384d40487070b0cc511740b0084aa9e7ecfea84e845304fcf
4
+ data.tar.gz: '091045c56dc31bd9f11768c0c94a6451e0dd9872f052c5e199470fa9b5e4e2e7'
5
5
  SHA512:
6
- metadata.gz: 3fea45a268196454d145a21af8c2ac56d62ae6a53aae99851d88dc1a8f3b78b74af4f44b461d60e73b71fcbce3cde24e1d39bf19eeddae1d8d8de81a21550580
7
- data.tar.gz: d116c3598283c4e52501e544e8159270776caaff3486a5c8bba77e38de82c4f699ac0b0948e78bd9a2bdaef27a6dfa834594dec15ddb0ef6e629f13ea44ceec0
6
+ metadata.gz: '066887c84c2348296e9692a620e893f1b0e97087a48f50b4c938baf9e66da27f8206f9ab7012e6ceb4d7c790cc71abfd2d34c0a7b95c7c301e500942ca6f0b43'
7
+ data.tar.gz: 051a76f99641f3673b777ee7702200b1ea4c11b5512952bd72bbb81c8a54fe440f7ac5a7c11be1c2d4b1b36639c6fee54ee6618e9b92cca5d44bf8e28376b2df
data/README.md CHANGED
@@ -10,7 +10,7 @@ FLGen provides a DSL to write filelists and generator tool to generate a filelis
10
10
 
11
11
  ### Ruby
12
12
 
13
- FLGen is written in [Ruby](https://www.ruby-lang.org) programing language and its required version is 3.0 or later. Before using FLGen, you need to install Ruby before using FLGen. See [this page](https://www.ruby-lang.org/en/downloads/) for further details.
13
+ FLGen is written in [Ruby](https://www.ruby-lang.org) programing language and its required version is 3.0 or later. You need to install Ruby before using FLGen. See [this page](https://www.ruby-lang.org/en/documentation/installation/) for further details.
14
14
 
15
15
  ### Install FLGen
16
16
 
@@ -123,8 +123,9 @@ foo_project
123
123
  * The generated filelist contains source file pash which has the specified file extentions.
124
124
  * `--format=FORMAT`
125
125
  * Specify the format of the generated filelist.
126
- * If no format is specified the generated filelist is for major EDA tools.
127
- * If `filelist-xsim` is specified the generated filelist is for Vivado Simulator.
126
+ * If no format is specified FLGen will generate a generated filelist for major EDA tools.
127
+ * If `vivado-tcl` is specified FLGen will generate a TCL script to load source files for Vivado synthesis.
128
+ * If `filelist-xsim` is specified FLGen will generate a filelist for Vivado simulator.
128
129
  * `--output=FILE`
129
130
  * Specify the path of the generated filelist
130
131
  * The generated fileslist is output to STDOUT if no path is specified.
@@ -42,6 +42,10 @@ module FLGen
42
42
  @context.options[:print_header] && !@context.options[:source_file_only]
43
43
  end
44
44
 
45
+ def no_arguments?(type)
46
+ @context.arguments.none? { |argument| argument.type == type }
47
+ end
48
+
45
49
  def each_argument(type, &block)
46
50
  @context.arguments.each do |argument|
47
51
  argument.type == type && block.call(argument)
@@ -49,7 +53,7 @@ module FLGen
49
53
  end
50
54
 
51
55
  def print_macros(io)
52
- return if source_file_only?
56
+ return if source_file_only? || no_arguments?(:define)
53
57
 
54
58
  pre_macros(io)
55
59
  each_argument(:define) do |argument|
@@ -65,7 +69,7 @@ module FLGen
65
69
  end
66
70
 
67
71
  def print_include_directoris(io)
68
- return if source_file_only?
72
+ return if source_file_only? || no_arguments?(:include)
69
73
 
70
74
  pre_include_directories(io)
71
75
  each_argument(:include) do |argument|
@@ -81,7 +85,7 @@ module FLGen
81
85
  end
82
86
 
83
87
  def print_arguments(io)
84
- return if source_file_only?
88
+ return if source_file_only? || no_arguments?(:generic)
85
89
 
86
90
  pre_arguments(io)
87
91
  each_argument(:generic) do |argument|
@@ -101,6 +105,8 @@ module FLGen
101
105
  end
102
106
 
103
107
  def print_source_files(io)
108
+ return if no_source_files?
109
+
104
110
  pre_source_files(io)
105
111
  @context.source_files.each do |file|
106
112
  io.puts(format_file_path(file.full_path))
@@ -108,6 +114,10 @@ module FLGen
108
114
  post_source_files(io)
109
115
  end
110
116
 
117
+ def no_source_files?
118
+ @context.source_files.empty?
119
+ end
120
+
111
121
  def pre_source_files(_io)
112
122
  end
113
123
 
data/lib/flgen/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FLGen
4
- VERSION = '0.15.0'
4
+ VERSION = '0.16.0'
5
5
  end
@@ -0,0 +1,54 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FLGen
4
+ class VivadoTCLFormatter < Formatter
5
+ def format_header_line(line)
6
+ "# #{line}"
7
+ end
8
+
9
+ def pre_macros(io)
10
+ io.puts('set flgen_defines {}')
11
+ end
12
+
13
+ def format_macro(macro, value)
14
+ if value.nil?
15
+ "lappend flgen_defines \"#{macro}\""
16
+ else
17
+ "lappend flgen_defines \"#{macro}=#{value}\""
18
+ end
19
+ end
20
+
21
+ def post_macros(io)
22
+ io.puts('set_property verilog_define $flgen_defines [current_fileset]')
23
+ end
24
+
25
+ def pre_include_directories(io)
26
+ io.puts('set flgen_include_directories {}')
27
+ end
28
+
29
+ def format_include_directory(directory)
30
+ "lappend flgen_include_directories \"#{directory}\""
31
+ end
32
+
33
+ def post_include_directories(io)
34
+ io.puts('set_property include_dirs $flgen_include_directories [current_fileset]')
35
+ end
36
+
37
+ def fomrat_argument(_)
38
+ end
39
+
40
+ def pre_source_files(io)
41
+ io.puts('set flgen_source_files {}')
42
+ end
43
+
44
+ def format_file_path(path)
45
+ "lappend flgen_source_files \"#{path}\""
46
+ end
47
+
48
+ def post_source_files(io)
49
+ io.puts('add_files -fileset [current_fileset] $flgen_source_files')
50
+ end
51
+
52
+ Formatter.add_formatter(:'vivado-tcl', self)
53
+ end
54
+ end
data/lib/flgen.rb CHANGED
@@ -11,5 +11,6 @@ require_relative 'flgen/file_list'
11
11
  require_relative 'flgen/context'
12
12
  require_relative 'flgen/formatter'
13
13
  require_relative 'flgen/file_list_formatter'
14
+ require_relative 'flgen/vivado_tcl_formatter'
14
15
  require_relative 'flgen/file_list_xsim_formatter'
15
16
  require_relative 'flgen/cli'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flgen
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.16.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taichi Ishitani
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-01-04 00:00:00.000000000 Z
11
+ date: 2023-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bump
@@ -130,6 +130,7 @@ files:
130
130
  - lib/flgen/formatter.rb
131
131
  - lib/flgen/source_file.rb
132
132
  - lib/flgen/version.rb
133
+ - lib/flgen/vivado_tcl_formatter.rb
133
134
  - sample/bar/bar.list.rb
134
135
  - sample/bar/bar.sv
135
136
  - sample/bar/baz/baz.list.rb