flgen 0.14.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: 0c98696eca3ffddc4f49695ec9fe26ad40bebaa8b4ef432a9a24455059ec675f
4
- data.tar.gz: 2d4cacf96065ceeebf2c5a662fd0d2f2706e9fb97363a3990eec9e77d06d1ad8
3
+ metadata.gz: 73f400f84753663384d40487070b0cc511740b0084aa9e7ecfea84e845304fcf
4
+ data.tar.gz: '091045c56dc31bd9f11768c0c94a6451e0dd9872f052c5e199470fa9b5e4e2e7'
5
5
  SHA512:
6
- metadata.gz: '065852d3c973c0a108e1fccaea7cf7219e9c734fe9f75adff152ddd05df406fe8cb3d92a1a6281bf5494b22d279c60b7d69ba2eec0a104fcfe6a6badbda1dcfe'
7
- data.tar.gz: 70eb64d338dad8169c3a577228b4640fa91c4e5645aa8432401996aa95696a53cca8d5d0e2d1b01568e0a7082b1a00fd0692a4650c508a9945cf56e420d1429a
6
+ metadata.gz: '066887c84c2348296e9692a620e893f1b0e97087a48f50b4c938baf9e66da27f8206f9ab7012e6ceb4d7c790cc71abfd2d34c0a7b95c7c301e500942ca6f0b43'
7
+ data.tar.gz: 051a76f99641f3673b777ee7702200b1ea4c11b5512952bd72bbb81c8a54fe440f7ac5a7c11be1c2d4b1b36639c6fee54ee6618e9b92cca5d44bf8e28376b2df
data/README.md CHANGED
@@ -1,76 +1,86 @@
1
+ [![Gem Version](https://badge.fury.io/rb/flgen.svg)](https://badge.fury.io/rb/flgen)
1
2
  [![CI](https://github.com/pezy-computing/flgen/actions/workflows/ci.yml/badge.svg)](https://github.com/pezy-computing/flgen/actions/workflows/ci.yml)
3
+ [![codecov](https://codecov.io/github/pezy-computing/flgen/branch/master/graph/badge.svg?token=P5JSMPRV3J)](https://codecov.io/github/pezy-computing/flgen)
2
4
 
3
5
  # FLGen
4
6
 
5
- ファイルリストを記述するための DSL と、ファイルリストを生成するための実行コマンドを提供します。
7
+ FLGen provides a DSL to write filelists and generator tool to generate a filelist which is given to EDA tools.
6
8
 
7
- ## インストール
9
+ ## Install
8
10
 
9
11
  ### Ruby
10
12
 
11
- FLGen [Ruby](https://www.ruby-lang.org) で実装されているので、実行には Ruby のインストールが必要です。
12
- サポートする Ruby のバージョンは 3.0 以上です。インストール方法については、[こちら](https://www.ruby-lang.org/en/downloads/)を参照ください。
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.
13
14
 
14
- ### インストールコマンド
15
+ ### Install FLGen
15
16
 
16
- FLGen をインストールするには、以下のコマンドを実行します。
17
+ Use the command below to isntall FLGen.
17
18
 
18
19
  ```
19
20
  $ gem install flgen
20
21
  ```
21
22
 
22
- ## DSL
23
+ ## Filelist
23
24
 
24
- ファイルリストを記述するための DSL として以下の構文が定義されています。
25
+ FLGen prives APIs listed below to describe your filelists.
25
26
 
26
- * `source_file(path, from: :current)`
27
- * 指定したファイルをファイルリストに追加します
28
- * `file_list(path, from: :root)`
29
- * 指定したファイルリストを読み込みます
27
+ * `source_file(path, from: :current, base: nil)`
28
+ * Add the given source file to the current filelist.
29
+ * `file_list(path, from: :root, base: nil)`
30
+ * Load the given filelist.
31
+ * `include_directory(path, from: :current, base: nil)`
32
+ * Add the given directory to the list of include direcotries.
30
33
  * `define_macro(name, value = nil)`
31
- * マクロを定義します
32
- * `macro_defined?(name)`
33
- * 指定したマクロが定義されているかどうかを返します
34
- * `include_directory(path, from: :current)`
35
- * 指定したパスをインクルードパスとして追加します
36
- * `target_tool?(tool)`
37
- * `tool` が対象ツールかどうかを返します
34
+ * Define a text macro.
35
+ * `macro?(name)`/`macro_defined?(name)`
36
+ * Return `true` if the given macro is defined.
37
+ * `file?(path, from: :current, base: nil)`
38
+ * Return `treu` if the given file exists.
39
+ * `directory?(path, from: :current, base: nil)`
40
+ * Return `true` if the given directory exists.
41
+ * `env?(name)`
42
+ * Return `true` if the givne environment variable is defined.
43
+ * `env(name)`
44
+ * Retunr the value of the given environment variable.
38
45
  * `compile_argument(argument, tool: nil)`
39
- * コンパイル引数を追加します
40
- * `tool` が指定されている場合は、対象ツールの場合にのみ、引数を追加します
41
- * `runtime_argument(argument, tool: nil)`
42
- * 実行時引数を追加します
43
- * `tool` が指定されている場合は、対象ツールの場合にのみ、引数を追加します
46
+ * Add the given argument to the list of compile arguments.
47
+ * If `tool` is specified the given argument is added only when `tool` is matched with the targe tool.
48
+ * `runtime_argumetn(argument, tool: nil)`
49
+ * Add the given argument to the list of runtime arguments.
50
+ * If `tool` is specified the given argument is added only when `tool` is matched with the targe tool.
51
+ * `target_tool?(tool)`
52
+ * Return `true` if the given tool is matched with the targe tool.
44
53
 
45
- Ruby の言語内 DSL として実装されているので、以下の様に `if` など Ruby の構文も使用することができます。
54
+ FLGen's filelist is designed as an inernal DSL with Ruby. Therefore you can use Ruby's syntax. For example:
46
55
 
47
56
  ```ruby
48
- if target_tool? :vcs
49
- compile_argument '-sverilog'
50
- end
51
-
52
- 10.times do |i|
53
- source_file "foo_#{i}.sv"
57
+ if macro? :GATE_SIM
58
+ source_file 'foo_top.v.gz' # synthsized netlist
59
+ else
60
+ source_file 'foo_top.sv' # RTL
54
61
  end
55
62
  ```
56
63
 
57
- ### `from` オプション引数について
64
+ ### About `from`/`base` arguments
58
65
 
59
- `from` は指定されたファイルやディレクトリの基準ディレクトリを指定する引数で、`:current`/`root`/`local_root` を指定することができます。
66
+ The `from` argument is to specify how to search the given file or directory. You can specify one of three below.
60
67
 
61
68
  * `:current`
62
- * 現在のファイルリストがある場所を基準とします
69
+ * Search the given file or directory from the directory where the current filelist is.
63
70
  * `:root`
64
- * `.git` があるリポジトリのルートディレクトリを基準ディレクトリとします
65
- * あるリポジトリのサブモジュール (上位階層にも `.git` がある) 場合、上位リポジトリのルートディレクトリから順に検索を行います
71
+ * Search the given file or directory from the repository root directories where the `.git` directory is.
72
+ * Serch order is descending order.
73
+ * from upper root direcotries to local root direcoty
66
74
  * `:local_root`
67
- * 自身が含まれるリポジトリのルートディレクトリを基準ディレクトリとします
75
+ * Search the given file or directory from the repository root directory where the current filelist belongs to.
76
+
77
+ The `from` argument is ignored if the given path is an absolute path or the `base` argument is specified.
68
78
 
69
- ただし、与えられたファイルやディレクトリが絶対パスで指定されている場合は、`from` に関係なく、そのまま追加されます。
79
+ The `base` argument is to specify the serach direcotry for the given file or directory.
70
80
 
71
- ####
81
+ #### Example
72
82
 
73
- 以下のディレクトリ構造になっていたとします。
83
+ This is an exmaple directory structure.
74
84
 
75
85
  ```
76
86
  foo_project
@@ -86,61 +96,86 @@ foo_project
86
96
  `-- common.sv
87
97
  ```
88
98
 
89
- * `bar.list.rb` で `source_file 'bar.sv', from: :current` とある場合
90
- * `foo_project/bar_project/src/bar.sv` が追加される
91
- * `bar.list.rb` で `source_file 'common/common.sv', from: :root` とある場合
92
- * `foo_project/common/common.sv` が追加される
93
- * `bar.list.rb` で `source_file 'common/common.sv', from: :local_root` とある場合
94
- * `foo_project/bar_project/common/common.sv` が追加される
99
+ * `source_file 'bar.sv', from: :current` @ `bar.list.rb`
100
+ * `foo_project/bar_project/bar.sv` is added.
101
+ * `source_file 'common/common.sv', from: :root` @ `bar.list.rb`
102
+ * `foo_project/common/common.sv` is added
103
+ * `source_file 'common/bar_common.sv', from: :local_root` @ `bar.list.rb`
104
+ * `foo_project/bar_project/common/common.sv` is added
95
105
 
96
- ## 実行コマンド
106
+ ## Generator command
97
107
 
98
- `flgen` が実行コマンドです。`flgen` DSL で記述されたファイルリストを与えると、EDA ツールに与えるためのファイルリストを出力します。
99
- また、以下のオプションがあります。
108
+ `flgen` is the generator command and generate a filelist which is given to EDA tools from the given filelists. Command line options are listed below.
100
109
 
101
110
  * `--define-macro=MACRO[,MACRO]`
102
- * マクロ定義を追加します
111
+ * Define the given macros
103
112
  * `--include-directory=DIR[,DIR]`
104
- * インクルードディレクトリを追加します
113
+ * Specify include directories
105
114
  * `--compile`
106
- * 出力されるファイルリストは `runtime_argument` で指定された実行時引数を含みません
115
+ * If this option is specified the generated filelist contains source file path, arguments to define macros, arguments to specify include directories and arguments specified by `compile_argument` API.
107
116
  * `--runtime`
108
- * 出力されるファイルリストは `runtime_argument` で指定された実行時引数だけを含みます
117
+ * If this option is specified the generated filelist contains arguments specified by `runtime_argumetn`
109
118
  * `--tool=TOOL`
110
- * 対象となる EDA ツールを指定します
111
- * `compile_argument`/`runtime_argument` でツールの指定がある場合、一致する引数がファイルリストに出力されます
119
+ * Specify the target tool.
112
120
  * `--rm-ext=EXT[,EXT]`
113
- * 指定された拡張子をソースファイルから削除します
121
+ * Remove specifyed file extentions from source file path.
114
122
  * `--collect-ext=EXT[,EXT]`
115
- * 指定された拡張子を持つソースファイルのみがファイルリストに出力されます
123
+ * The generated filelist contains source file pash which has the specified file extentions.
124
+ * `--format=FORMAT`
125
+ * Specify the format of the generated filelist.
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.
116
129
  * `--output=FILE`
117
- * 出力するファイルリストのファイル名を指定します
118
- * 指定がない場合は、標準出力に出力されます
130
+ * Specify the path of the generated filelist
131
+ * The generated fileslist is output to STDOUT if no path is specified.
119
132
  * `--[no-]print-header`
120
- * ヘッダーを出力するかどうかを指定します。
133
+ * Specify whether or not the output filelist includes its file header or not.
121
134
  * `--source-file-only`
122
- * ソースファイルのみがファイルリストに出力されます
135
+ * The generated filelist contains source file path only if this option is specified.
123
136
 
124
- ## サンプル
137
+ ## Example
125
138
 
126
- https://github.com/pezy-computing/flgen/tree/master/sample
139
+ You can find an exmpale from [here](https://github.com/pezy-computing/flgen/tree/master/sample).
127
140
 
128
- にサンプルがあります。
141
+ ```
142
+ $ flgen --output=filelist.f sample/foo.list.rb
143
+ $ cat filelist.f
144
+ // flgen version 0.14.0
145
+ // applied arguments
146
+ // --output=filelist.f
147
+ // sample/foo.list.rb
148
+ +define+BAR_0
149
+ +define+BAR_1=1
150
+ +incdir+/home/taichi/workspace/pezy/flgen/sample/bar
151
+ +incdir+/home/taichi/workspace/pezy/flgen/sample/bar/baz
152
+ -foo_0
153
+ /home/taichi/workspace/pezy/flgen/sample/foo.sv
154
+ /home/taichi/workspace/pezy/flgen/sample/bar/bar.sv
155
+ /home/taichi/workspace/pezy/flgen/sample/bar/baz/baz.sv
156
+ ```
157
+
158
+ [rggen-sample-testbench](https://github.com/rggen/rggen-sample-testbench) uses FLGen. This can be a practical example.
129
159
 
130
- ## ライセンス
160
+ * https://github.com/rggen/rggen-sample-testbench/blob/master/env/compile.rb
161
+ * https://github.com/rggen/rggen-sample-testbench/blob/master/rtl/compile.rb
131
162
 
132
- Apache-2.0 ライセンスの元で公開しています。詳しくは、下記及び [LICENSE](LICENSE) を参照ください。
163
+ ## License
133
164
 
134
- Copyright 2022 PEZY Computing K.K.
165
+ FLGen is licensed under the Apache-2.0 license. See [LICNESE](LICENSE) and below for further details.
135
166
 
136
- Licensed under the Apache License, Version 2.0 (the "License");
137
- you may not use this file except in compliance with the License.
138
- You may obtain a copy of the License at
167
+ ```
168
+ Copyright 2022 PEZY Computing K.K.
139
169
 
140
- http://www.apache.org/licenses/LICENSE-2.0
170
+ Licensed under the Apache License, Version 2.0 (the "License");
171
+ you may not use this file except in compliance with the License.
172
+ You may obtain a copy of the License at
141
173
 
142
- Unless required by applicable law or agreed to in writing, software
143
- distributed under the License is distributed on an "AS IS" BASIS,
144
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
145
- See the License for the specific language governing permissions and
146
- limitations under the License.
174
+ http://www.apache.org/licenses/LICENSE-2.0
175
+
176
+ Unless required by applicable law or agreed to in writing, software
177
+ distributed under the License is distributed on an "AS IS" BASIS,
178
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
179
+ See the License for the specific language governing permissions and
180
+ limitations under the License.
181
+ ```
@@ -8,27 +8,47 @@ module FLGen
8
8
  @root_directories = extract_root
9
9
  end
10
10
 
11
- def file_list(path, from: :root, raise_error: true)
12
- root = find_root(path, from, :file?)
13
- load_file_list(root, path, raise_error)
11
+ def file_list(path, from: :root, base: nil, raise_error: true)
12
+ location = caller_location
13
+ load_file_list(path, from, base, location, raise_error)
14
14
  end
15
15
 
16
- def source_file(path, from: :current, raise_error: true)
17
- root = find_root(path, from, :file?)
18
- add_source_file(root, path, raise_error)
16
+ def source_file(path, from: :current, base: nil, raise_error: true)
17
+ location = caller_location
18
+ add_source_file(path, from, base, location, raise_error)
19
19
  end
20
20
 
21
21
  def define_macro(macro, value = nil)
22
22
  @context.define_macro(macro, value)
23
23
  end
24
24
 
25
- def macro_defined?(macro)
25
+ def macro?(macro)
26
26
  @context.macros.include?(macro.to_sym)
27
27
  end
28
28
 
29
- def include_directory(path, from: :current, raise_error: true)
30
- root = find_root(path, from, :directory?)
31
- add_include_directory(root, path, raise_error)
29
+ alias_method :macro_defined?, :macro?
30
+
31
+ def include_directory(path, from: :current, base: nil, raise_error: true)
32
+ location = caller_location
33
+ add_include_directory(path, from, base, location, raise_error)
34
+ end
35
+
36
+ def file?(path, from: :current, base: nil)
37
+ location = caller_location
38
+ !lookup_root(path, from, base, location, :file?).nil?
39
+ end
40
+
41
+ def directory?(path, from: :current, base: nil)
42
+ location = caller_location
43
+ !lookup_root(path, from, base, location, :directory?).nil?
44
+ end
45
+
46
+ def env?(name)
47
+ ENV.key?(name.to_s)
48
+ end
49
+
50
+ def env(name)
51
+ ENV.fetch(name.to_s, nil)
32
52
  end
33
53
 
34
54
  def target_tool?(tool)
@@ -61,36 +81,11 @@ module FLGen
61
81
  File.exist?(path.join('.git').to_s)
62
82
  end
63
83
 
64
- def find_root(path, from, checker)
65
- if absolute_path?(path)
66
- ''
67
- elsif from == :current
68
- current_directory
69
- else
70
- lookup_root(path, from, checker)
84
+ def load_file_list(path, from, base, location, raise_error)
85
+ unless (root = lookup_root(path, from, base, location, :file?))
86
+ raise_no_entry_error(path, location, raise_error)
87
+ return
71
88
  end
72
- end
73
-
74
- def absolute_path?(path)
75
- Pathname.new(path).absolute?
76
- end
77
-
78
- def current_directory
79
- # From Ruby 3.1 Thread::Backtrace::Location#absolute_path returns nil
80
- # for code string evaluated by eval methods
81
- # see https://github.com/ruby/ruby/commit/64ac984129a7a4645efe5ac57c168ef880b479b2
82
- location = caller_locations(3, 1).first
83
- path = location.absolute_path || location.path
84
- File.dirname(path)
85
- end
86
-
87
- def lookup_root(path, from, checker)
88
- (from == :root && @root_directories || [@root_directories.last])
89
- .find { |root| File.__send__(checker, File.join(root, path)) }
90
- end
91
-
92
- def load_file_list(root, path, raise_error)
93
- entry_exist?(root, path, :file?, raise_error) || return
94
89
 
95
90
  # Need to File.realpath to resolve symblic link
96
91
  list_path = File.realpath(concat_path(root, path))
@@ -105,26 +100,68 @@ module FLGen
105
100
  @context.loaded_file_lists.include?(path)
106
101
  end
107
102
 
108
- def add_source_file(root, path, raise_error)
109
- entry_exist?(root, path, :file?, raise_error) || return
103
+ def add_source_file(path, from, base, location, raise_error)
104
+ unless (root = lookup_root(path, from, base, location, :file?))
105
+ raise_no_entry_error(path, location, raise_error)
106
+ return
107
+ end
108
+
110
109
  @context.add_source_file(root, path)
111
110
  end
112
111
 
113
- def add_include_directory(root, path, raise_error)
114
- entry_exist?(root, path, :directory?, raise_error) || return
112
+ def add_include_directory(path, from, base, location, raise_error)
113
+ unless (root = lookup_root(path, from, base, location, :directory?))
114
+ raise_no_entry_error(path, location, raise_error)
115
+ return
116
+ end
115
117
 
116
118
  directory_path = concat_path(root, path)
117
119
  @context.add_include_directory(directory_path)
118
120
  end
119
121
 
120
- def entry_exist?(root, path, checker, raise_error)
121
- result = root && File.__send__(checker, concat_path(root, path)) || false
122
- result ||
123
- raise_error && (raise NoEntryError.new(path, caller_locations(3, 1)[0]))
122
+ def caller_location
123
+ caller_locations(2, 1).first
124
+ end
125
+
126
+ def lookup_root(path, from, base, location, checker)
127
+ search_root(path, from, base, location)
128
+ .find { |root| File.__send__(checker, concat_path(root, path)) }
129
+ end
130
+
131
+ def search_root(path, from, base, location)
132
+ if absolute_path?(path)
133
+ ['']
134
+ elsif !base.nil?
135
+ [base]
136
+ elsif from == :current
137
+ [current_directory(location)]
138
+ elsif from == :local_root
139
+ [@root_directories.last]
140
+ else
141
+ @root_directories
142
+ end
143
+ end
144
+
145
+ def absolute_path?(path)
146
+ Pathname.new(path).absolute?
147
+ end
148
+
149
+ def current_directory(location)
150
+ # From Ruby 3.1 Thread::Backtrace::Location#absolute_path returns nil
151
+ # for code string evaluated by eval methods
152
+ # see https://github.com/ruby/ruby/commit/64ac984129a7a4645efe5ac57c168ef880b479b2
153
+ path = location.absolute_path || location.path
154
+ File.dirname(path)
124
155
  end
125
156
 
126
157
  def concat_path(root, path)
127
158
  File.expand_path(path, root)
128
159
  end
160
+
161
+ def raise_no_entry_error(path, location, raise_error)
162
+ return unless raise_error
163
+
164
+ raise NoEntryError.new(path, location)
165
+ end
129
166
  end
130
167
  end
@@ -0,0 +1,31 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FLGen
4
+ class FileListXsimFormatter < Formatter
5
+ def format_header_line(line)
6
+ "// #{line}"
7
+ end
8
+
9
+ def format_macro(macro, value)
10
+ if value.nil?
11
+ "-d #{macro}"
12
+ else
13
+ "-d #{macro}=#{value}"
14
+ end
15
+ end
16
+
17
+ def format_include_directory(directory)
18
+ "-i #{directory}"
19
+ end
20
+
21
+ def fomrat_argument(argument)
22
+ argument
23
+ end
24
+
25
+ def format_file_path(path)
26
+ path
27
+ end
28
+
29
+ Formatter.add_formatter(:'filelist-xsim', self)
30
+ end
31
+ end
@@ -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.14.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,4 +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'
15
+ require_relative 'flgen/file_list_xsim_formatter'
14
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.14.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: 2022-12-16 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
@@ -80,6 +80,34 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: 1.40.0
83
+ - !ruby/object:Gem::Dependency
84
+ name: simplecov
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 0.21.0
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 0.21.0
97
+ - !ruby/object:Gem::Dependency
98
+ name: simplecov-cobertura
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: 2.1.0
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: 2.1.0
83
111
  description: Filelist generator
84
112
  email:
85
113
  - ishitani@pezy.co.jp
@@ -98,9 +126,11 @@ files:
98
126
  - lib/flgen/exceptions.rb
99
127
  - lib/flgen/file_list.rb
100
128
  - lib/flgen/file_list_formatter.rb
129
+ - lib/flgen/file_list_xsim_formatter.rb
101
130
  - lib/flgen/formatter.rb
102
131
  - lib/flgen/source_file.rb
103
132
  - lib/flgen/version.rb
133
+ - lib/flgen/vivado_tcl_formatter.rb
104
134
  - sample/bar/bar.list.rb
105
135
  - sample/bar/bar.sv
106
136
  - sample/bar/baz/baz.list.rb
@@ -130,7 +160,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
130
160
  - !ruby/object:Gem::Version
131
161
  version: '0'
132
162
  requirements: []
133
- rubygems_version: 3.3.3
163
+ rubygems_version: 3.4.2
134
164
  signing_key:
135
165
  specification_version: 4
136
166
  summary: Filelist generator