flgen 0.16.1 → 0.17.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: 9ffab1952f67689d9675b1a5f0ee47b4905b7ea098b5013b2467cfa54360e311
4
- data.tar.gz: bd33d9997f06c4b6a00ab54a2df2fefe9ff86d9eb766d098ed787e500f289db6
3
+ metadata.gz: 6bf48956c855b1e0bef4cb503f0d587991d16ba1ff4f36c1aa3990ba7a343263
4
+ data.tar.gz: ce22e515604e2790ce7ecba9d04eedfc16212ebfa5d7e20cf43a4ba233abf16c
5
5
  SHA512:
6
- metadata.gz: d698fd487524fd93687db00ff03b73351579fd8499092960f6b077f42afc3fdbc2910926e95bd8a00e9d08cc47c60baa1478cf17309c008bc131371af1cd977f
7
- data.tar.gz: 66c01f900315edc6d7355281112be92ef2e28eccfc174049c611959a5385b56b9ba1a9ee73f2102e34e250ead4a1a3805440c3e6c07a109d2c367312d279b1f1
6
+ metadata.gz: 14eb5efde8db89f0c3bab5c380d482dd22d61172a2ad93e3654cd5edf46983dda17b4c0e164f42a1bb40dff785af9a9e21ef73c012d873d35f056be085949e3e
7
+ data.tar.gz: bd522a28b24a175bc4f440af52fb548f6e01dddaa81b12e7ef3fa82f0d11b21956f7ade28a9bf3684e84e55b084b98868383c6f710d187bb27fd5e3b16de2337
data/README.md CHANGED
@@ -28,8 +28,12 @@ FLGen prives APIs listed below to describe your filelists.
28
28
  * Add the given source file to the current filelist.
29
29
  * `file_list(path, from: :root, base: nil)`
30
30
  * Load the given filelist.
31
+ * `library_file(path, from: :current, base: nil)`
32
+ * Add the given file to the list of library files.
31
33
  * `include_directory(path, from: :current, base: nil)`
32
34
  * Add the given directory to the list of include direcotries.
35
+ * `library_directory(path, from: :current, base: nil)`
36
+ * Add the given directory to the list of library directories.
33
37
  * `define_macro(name, value = nil)`
34
38
  * Define a text macro.
35
39
  * `macro?(name)`/`macro_defined?(name)`
@@ -141,7 +145,7 @@ You can find an exmpale from [here](https://github.com/pezy-computing/flgen/tree
141
145
  ```
142
146
  $ flgen --output=filelist.f sample/foo.list.rb
143
147
  $ cat filelist.f
144
- // flgen version 0.14.0
148
+ // flgen version 0.17.0
145
149
  // applied arguments
146
150
  // --output=filelist.f
147
151
  // sample/foo.list.rb
@@ -149,6 +153,8 @@ $ cat filelist.f
149
153
  +define+BAR_1=1
150
154
  +incdir+/home/taichi/workspace/pezy/flgen/sample/bar
151
155
  +incdir+/home/taichi/workspace/pezy/flgen/sample/bar/baz
156
+ -y /home/taichi/workspace/pezy/flgen/sample/bar/bar_lib
157
+ -v /home/taichi/workspace/pezy/flgen/sample/foo_lib.sv
152
158
  -foo_0
153
159
  /home/taichi/workspace/pezy/flgen/sample/foo.sv
154
160
  /home/taichi/workspace/pezy/flgen/sample/bar/bar.sv
@@ -27,6 +27,15 @@ module FLGen
27
27
  attr_reader :value
28
28
  end
29
29
 
30
+ class LibraryFile < Base
31
+ def initialize(path)
32
+ super(:library_file, nil)
33
+ @path = path
34
+ end
35
+
36
+ attr_reader :path
37
+ end
38
+
30
39
  class Include < Base
31
40
  def initialize(path)
32
41
  super(:include, nil)
@@ -36,6 +45,15 @@ module FLGen
36
45
  attr_reader :path
37
46
  end
38
47
 
48
+ class LibraryDirectory < Base
49
+ def initialize(path)
50
+ super(:library_directory, nil)
51
+ @path = path
52
+ end
53
+
54
+ attr_reader :path
55
+ end
56
+
39
57
  class Generic < Base
40
58
  def initialize(argument, tool)
41
59
  super(:generic, tool)
data/lib/flgen/context.rb CHANGED
@@ -20,6 +20,14 @@ module FLGen
20
20
  (source_files << file.remove_ext(@options[:rm_ext]))
21
21
  end
22
22
 
23
+ def add_library_file(root, path)
24
+ return if runtime?
25
+
26
+ file = SourceFile.new(root, path)
27
+ add_library_file?(file) &&
28
+ add_compile_argument(Arguments::LibraryFile.new(file))
29
+ end
30
+
23
31
  def define_macro(macro, value = nil)
24
32
  k, v =
25
33
  if value.nil? && macro.respond_to?(:split)
@@ -35,11 +43,17 @@ module FLGen
35
43
  end
36
44
 
37
45
  def add_include_directory(directory)
38
- return if include_directory_already_added?(directory)
46
+ return if directory_already_added?(:include, directory)
39
47
 
40
48
  add_compile_argument(Arguments::Include.new(directory))
41
49
  end
42
50
 
51
+ def add_library_directory(directory)
52
+ return if directory_already_added?(:library_directory, directory)
53
+
54
+ add_compile_argument(Arguments::LibraryDirectory.new(directory))
55
+ end
56
+
43
57
  def add_compile_argument(argument)
44
58
  return if runtime?
45
59
 
@@ -67,7 +81,7 @@ module FLGen
67
81
  end
68
82
 
69
83
  def add_source_file?(file)
70
- target_ext?(file) && !source_file_already_added?(file)
84
+ target_ext?(file) && source_files.none?(file)
71
85
  end
72
86
 
73
87
  def target_ext?(file)
@@ -77,16 +91,8 @@ module FLGen
77
91
  file.match_ext?(@options[:collect_ext])
78
92
  end
79
93
 
80
- def source_file_already_added?(file)
81
- return true if source_files.include?(file.path)
82
- return true if checksums.include?(file.checksum)
83
-
84
- checksums << file.checksum
85
- false
86
- end
87
-
88
- def checksums
89
- @checksums ||= []
94
+ def add_library_file?(file)
95
+ arguments.none? { |arg| arg.type == :library_file && arg.path == file }
90
96
  end
91
97
 
92
98
  def add_macro_definition(name, value)
@@ -96,9 +102,9 @@ module FLGen
96
102
  add_compile_argument(Arguments::Define.new(name, value))
97
103
  end
98
104
 
99
- def include_directory_already_added?(path)
105
+ def directory_already_added?(type, path)
100
106
  arguments
101
- .any? { |argument| argument.type == :include && argument.path == path }
107
+ .any? { |argument| argument.type == type && argument.path == path }
102
108
  end
103
109
 
104
110
  def add_argument(argument)
@@ -15,7 +15,12 @@ module FLGen
15
15
 
16
16
  def source_file(path, from: :current, base: nil, raise_error: true)
17
17
  location = caller_location
18
- add_source_file(path, from, base, location, raise_error)
18
+ add_file_entry(path, from, base, location, raise_error, :add_source_file)
19
+ end
20
+
21
+ def library_file(path, from: :current, base: nil, raise_error: true)
22
+ location = caller_location
23
+ add_file_entry(path, from, base, location, raise_error, :add_library_file)
19
24
  end
20
25
 
21
26
  def define_macro(macro, value = nil)
@@ -30,7 +35,12 @@ module FLGen
30
35
 
31
36
  def include_directory(path, from: :current, base: nil, raise_error: true)
32
37
  location = caller_location
33
- add_include_directory(path, from, base, location, raise_error)
38
+ add_directory_entry(path, from, base, location, raise_error, :add_include_directory)
39
+ end
40
+
41
+ def library_directory(path, from: :current, base: nil, raise_error: true)
42
+ location = caller_location
43
+ add_directory_entry(path, from, base, location, raise_error, :add_library_directory)
34
44
  end
35
45
 
36
46
  def file?(path, from: :current, base: nil)
@@ -100,25 +110,29 @@ module FLGen
100
110
  @context.loaded_file_lists.include?(path)
101
111
  end
102
112
 
103
- def add_source_file(path, from, base, location, raise_error)
113
+ # rubocop:disable Metrics/ParameterLists
114
+
115
+ def add_file_entry(path, from, base, location, raise_error, method)
104
116
  unless (root = lookup_root(path, from, base, location, :file?))
105
117
  raise_no_entry_error(path, location, raise_error)
106
118
  return
107
119
  end
108
120
 
109
- @context.add_source_file(root, path)
121
+ @context.__send__(method, root, path)
110
122
  end
111
123
 
112
- def add_include_directory(path, from, base, location, raise_error)
124
+ def add_directory_entry(path, from, base, location, raise_error, method)
113
125
  unless (root = lookup_root(path, from, base, location, :directory?))
114
126
  raise_no_entry_error(path, location, raise_error)
115
127
  return
116
128
  end
117
129
 
118
130
  directory_path = concat_path(root, path)
119
- @context.add_include_directory(directory_path)
131
+ @context.__send__(method, directory_path)
120
132
  end
121
133
 
134
+ # rubocop:enable Metrics/ParameterLists
135
+
122
136
  def caller_location
123
137
  caller_locations(2, 1).first
124
138
  end
@@ -18,6 +18,14 @@ module FLGen
18
18
  "+incdir+#{directory}"
19
19
  end
20
20
 
21
+ def format_libarary_directory(directory)
22
+ "-y #{directory}"
23
+ end
24
+
25
+ def format_libarary_file(file)
26
+ "-v #{file}"
27
+ end
28
+
21
29
  def fomrat_argument(argument)
22
30
  argument
23
31
  end
@@ -18,6 +18,14 @@ module FLGen
18
18
  "-i #{directory}"
19
19
  end
20
20
 
21
+ def format_libarary_directory(directory)
22
+ "-sourcelibdir #{directory}"
23
+ end
24
+
25
+ def format_libarary_file(file)
26
+ "-sourcelibfile #{file}"
27
+ end
28
+
21
29
  def fomrat_argument(argument)
22
30
  argument
23
31
  end
@@ -23,6 +23,8 @@ module FLGen
23
23
  print_header(io)
24
24
  print_macros(io)
25
25
  print_include_directoris(io)
26
+ print_library_direcotries(io)
27
+ print_library_files(io)
26
28
  print_arguments(io)
27
29
  print_source_files(io)
28
30
  end
@@ -33,31 +35,24 @@ module FLGen
33
35
  return unless print_header?
34
36
 
35
37
  header_lines.each do |line|
36
- io.puts(format_header_line(line))
38
+ print_value(io, :format_header_line, line)
37
39
  end
38
40
  end
39
41
 
42
+ def format_header_line(_line)
43
+ end
44
+
40
45
  def print_header?
41
46
  @context.options[:output] &&
42
47
  @context.options[:print_header] && !@context.options[:source_file_only]
43
48
  end
44
49
 
45
- def no_arguments?(type)
46
- @context.arguments.none? { |argument| argument.type == type }
47
- end
48
-
49
- def each_argument(type, &block)
50
- @context.arguments.each do |argument|
51
- argument.type == type && block.call(argument)
52
- end
53
- end
54
-
55
50
  def print_macros(io)
56
51
  return if source_file_only? || no_arguments?(:define)
57
52
 
58
53
  pre_macros(io)
59
54
  each_argument(:define) do |argument|
60
- io.puts(format_macro(argument.name, argument.value))
55
+ print_value(io, :format_macro, argument.name, argument.value)
61
56
  end
62
57
  post_macros(io)
63
58
  end
@@ -65,6 +60,9 @@ module FLGen
65
60
  def pre_macros(_io)
66
61
  end
67
62
 
63
+ def format_macro(_name, _value)
64
+ end
65
+
68
66
  def post_macros(_io)
69
67
  end
70
68
 
@@ -73,7 +71,7 @@ module FLGen
73
71
 
74
72
  pre_include_directories(io)
75
73
  each_argument(:include) do |argument|
76
- io.puts(format_include_directory(argument.path))
74
+ print_value(io, :format_include_directory, argument.path)
77
75
  end
78
76
  post_include_directories(io)
79
77
  end
@@ -81,15 +79,56 @@ module FLGen
81
79
  def pre_include_directories(_io)
82
80
  end
83
81
 
82
+ def format_include_directory(_path)
83
+ end
84
+
84
85
  def post_include_directories(_io)
85
86
  end
86
87
 
88
+ def print_library_direcotries(io)
89
+ return if source_file_only? || no_arguments?(:library_directory)
90
+
91
+ pre_library_direcotries(io)
92
+ each_argument(:library_directory) do |argument|
93
+ print_value(io, :format_libarary_directory, argument.path)
94
+ end
95
+ post_library_direcotries(io)
96
+ end
97
+
98
+ def pre_library_direcotries(_io)
99
+ end
100
+
101
+ def format_libarary_directory(_path)
102
+ end
103
+
104
+ def post_library_direcotries(_io)
105
+ end
106
+
107
+ def print_library_files(io)
108
+ return if source_file_only? || no_arguments?(:library_file)
109
+
110
+ pre_library_files(io)
111
+ each_argument(:library_file) do |argument|
112
+ print_value(io, :format_libarary_file, argument.path)
113
+ end
114
+ post_library_files(io)
115
+ end
116
+
117
+ def pre_library_files(_io)
118
+ end
119
+
120
+ def format_libarary_file(_path)
121
+ end
122
+
123
+ def post_library_files(_io)
124
+ end
125
+
87
126
  def print_arguments(io)
88
127
  return if source_file_only? || no_arguments?(:generic)
89
128
 
90
129
  pre_arguments(io)
91
130
  each_argument(:generic) do |argument|
92
- io.puts(fomrat_argument(argument.argument))
131
+ print_value(io, :fomrat_argument, argument.argument)
93
132
  end
94
133
  post_arguments(io)
95
134
  end
@@ -97,6 +136,9 @@ module FLGen
97
136
  def pre_arguments(io)
98
137
  end
99
138
 
139
+ def fomrat_argument(_argument)
140
+ end
141
+
100
142
  def post_arguments(io)
101
143
  end
102
144
 
@@ -109,7 +151,7 @@ module FLGen
109
151
 
110
152
  pre_source_files(io)
111
153
  @context.source_files.each do |file|
112
- io.puts(format_file_path(file.path))
154
+ print_value(io, :format_file_path, file)
113
155
  end
114
156
  post_source_files(io)
115
157
  end
@@ -121,7 +163,25 @@ module FLGen
121
163
  def pre_source_files(_io)
122
164
  end
123
165
 
166
+ def format_file_path(_path)
167
+ end
168
+
124
169
  def post_source_files(_io)
125
170
  end
171
+
172
+ def print_value(io, fomrtatter, *args)
173
+ line = __send__(fomrtatter, *args)
174
+ line && io.puts(line)
175
+ end
176
+
177
+ def no_arguments?(type)
178
+ @context.arguments.none? { |argument| argument.type == type }
179
+ end
180
+
181
+ def each_argument(type, &block)
182
+ @context.arguments.each do |argument|
183
+ argument.type == type && block.call(argument)
184
+ end
185
+ end
126
186
  end
127
187
  end
@@ -2,11 +2,20 @@
2
2
 
3
3
  module FLGen
4
4
  class SourceFile
5
- def initialize(root, path)
5
+ def initialize(root, path, checksum = nil)
6
6
  @path = File.join(root, path)
7
+ @checksum = checksum
7
8
  end
8
9
 
9
10
  attr_reader :path
11
+ alias_method :to_s, :path
12
+
13
+ def ==(other)
14
+ case other
15
+ when SourceFile then path == other.path || checksum == other.checksum
16
+ else path == other
17
+ end
18
+ end
10
19
 
11
20
  def match_ext?(ext_list)
12
21
  return false if ext_list.nil? || ext_list.empty?
@@ -19,7 +28,7 @@ module FLGen
19
28
  return self unless match_ext?(ext_list)
20
29
 
21
30
  path = Pathname.new(@path).sub_ext('').to_s
22
- self.class.new('', path)
31
+ self.class.new('', path, checksum)
23
32
  end
24
33
 
25
34
  def checksum
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.16.1'
4
+ VERSION = '0.17.0'
5
5
  end
@@ -34,9 +34,6 @@ module FLGen
34
34
  io.puts('set_property include_dirs $flgen_include_directories [current_fileset]')
35
35
  end
36
36
 
37
- def fomrat_argument(_)
38
- end
39
-
40
37
  def pre_source_files(io)
41
38
  io.puts('set flgen_source_files {}')
42
39
  end
@@ -2,5 +2,7 @@ define_macro :BAR_0
2
2
  define_macro :BAR_1, 1
3
3
  compile_argument '-bar_0', tool: :vcs
4
4
  runtime_argument '-bar_1', tool: :vcs
5
- source_file 'sample/bar/bar.sv', from: :root
6
- file_list 'baz/baz.list.rb', from: :current
5
+
6
+ library_directory 'bar_lib'
7
+ source_file 'sample/bar/bar.sv', from: :root
8
+ file_list 'baz/baz.list.rb', from: :current
File without changes
data/sample/foo.list.rb CHANGED
@@ -1,5 +1,6 @@
1
1
  compile_argument '-foo_0'
2
2
  runtime_argument '-foo_1'
3
3
  include_directory 'bar'
4
- source_file 'foo.sv'
4
+ source_file 'foo.sv'
5
+ library_file 'foo_lib.sv'
5
6
  file_list 'sample/bar/bar.list.rb'
data/sample/foo_lib.sv ADDED
@@ -0,0 +1,2 @@
1
+ module foo_lib;
2
+ endmodule
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.16.1
4
+ version: 0.17.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-30 00:00:00.000000000 Z
11
+ date: 2023-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bump
@@ -133,10 +133,12 @@ files:
133
133
  - lib/flgen/vivado_tcl_formatter.rb
134
134
  - sample/bar/bar.list.rb
135
135
  - sample/bar/bar.sv
136
+ - sample/bar/bar_lib/.gitkeep
136
137
  - sample/bar/baz/baz.list.rb
137
138
  - sample/bar/baz/baz.sv
138
139
  - sample/foo.list.rb
139
140
  - sample/foo.sv
141
+ - sample/foo_lib.sv
140
142
  homepage: https://github.com/pezy-computing/flgen
141
143
  licenses:
142
144
  - Apache-2.0