flgen 0.16.0 → 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 +4 -4
- data/README.md +7 -1
- data/lib/flgen/arguments.rb +18 -0
- data/lib/flgen/context.rb +20 -16
- data/lib/flgen/file_list.rb +20 -6
- data/lib/flgen/file_list_formatter.rb +8 -0
- data/lib/flgen/file_list_xsim_formatter.rb +8 -0
- data/lib/flgen/formatter.rb +75 -15
- data/lib/flgen/source_file.rb +13 -12
- data/lib/flgen/version.rb +1 -1
- data/lib/flgen/vivado_tcl_formatter.rb +0 -3
- data/sample/bar/bar.list.rb +4 -2
- data/sample/bar/bar_lib/.gitkeep +0 -0
- data/sample/foo.list.rb +2 -1
- data/sample/foo_lib.sv +2 -0
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6bf48956c855b1e0bef4cb503f0d587991d16ba1ff4f36c1aa3990ba7a343263
|
4
|
+
data.tar.gz: ce22e515604e2790ce7ecba9d04eedfc16212ebfa5d7e20cf43a4ba233abf16c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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
|
data/lib/flgen/arguments.rb
CHANGED
@@ -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
|
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) &&
|
84
|
+
target_ext?(file) && source_files.none?(file)
|
71
85
|
end
|
72
86
|
|
73
87
|
def target_ext?(file)
|
@@ -77,18 +91,8 @@ module FLGen
|
|
77
91
|
file.match_ext?(@options[:collect_ext])
|
78
92
|
end
|
79
93
|
|
80
|
-
def
|
81
|
-
|
82
|
-
path = file.path
|
83
|
-
|
84
|
-
return true if checksums[path].include?(checksum)
|
85
|
-
|
86
|
-
checksums[path] << checksum
|
87
|
-
false
|
88
|
-
end
|
89
|
-
|
90
|
-
def checksums
|
91
|
-
@checksums ||= Hash.new { |h, k| h[k] = [] }
|
94
|
+
def add_library_file?(file)
|
95
|
+
arguments.none? { |arg| arg.type == :library_file && arg.path == file }
|
92
96
|
end
|
93
97
|
|
94
98
|
def add_macro_definition(name, value)
|
@@ -98,9 +102,9 @@ module FLGen
|
|
98
102
|
add_compile_argument(Arguments::Define.new(name, value))
|
99
103
|
end
|
100
104
|
|
101
|
-
def
|
105
|
+
def directory_already_added?(type, path)
|
102
106
|
arguments
|
103
|
-
.any? { |argument| argument.type ==
|
107
|
+
.any? { |argument| argument.type == type && argument.path == path }
|
104
108
|
end
|
105
109
|
|
106
110
|
def add_argument(argument)
|
data/lib/flgen/file_list.rb
CHANGED
@@ -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
|
-
|
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
|
-
|
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
|
-
|
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.
|
121
|
+
@context.__send__(method, root, path)
|
110
122
|
end
|
111
123
|
|
112
|
-
def
|
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.
|
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
|
"-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
|
data/lib/flgen/formatter.rb
CHANGED
@@ -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
|
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
|
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
|
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
|
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
|
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
|
data/lib/flgen/source_file.rb
CHANGED
@@ -2,36 +2,37 @@
|
|
2
2
|
|
3
3
|
module FLGen
|
4
4
|
class SourceFile
|
5
|
-
def initialize(root, path)
|
6
|
-
@
|
7
|
-
@
|
5
|
+
def initialize(root, path, checksum = nil)
|
6
|
+
@path = File.join(root, path)
|
7
|
+
@checksum = checksum
|
8
8
|
end
|
9
9
|
|
10
|
-
attr_reader :root
|
11
10
|
attr_reader :path
|
11
|
+
alias_method :to_s, :path
|
12
12
|
|
13
|
-
def
|
14
|
-
|
13
|
+
def ==(other)
|
14
|
+
case other
|
15
|
+
when SourceFile then path == other.path || checksum == other.checksum
|
16
|
+
else path == other
|
17
|
+
end
|
15
18
|
end
|
16
19
|
|
17
20
|
def match_ext?(ext_list)
|
18
21
|
return false if ext_list.nil? || ext_list.empty?
|
19
22
|
|
20
|
-
file_ext = File.extname(@path)
|
21
|
-
ext_list.any?
|
22
|
-
(ext[0] == '.' && ext || ".#{ext}") == file_ext
|
23
|
-
end
|
23
|
+
file_ext = File.extname(@path)[1..]
|
24
|
+
ext_list.any? { |ext| (ext[0] == '.' && ext[1..] || ext) == file_ext }
|
24
25
|
end
|
25
26
|
|
26
27
|
def remove_ext(ext_list)
|
27
28
|
return self unless match_ext?(ext_list)
|
28
29
|
|
29
30
|
path = Pathname.new(@path).sub_ext('').to_s
|
30
|
-
self.class.new(
|
31
|
+
self.class.new('', path, checksum)
|
31
32
|
end
|
32
33
|
|
33
34
|
def checksum
|
34
|
-
@checksum ||= Digest::MD5.digest(File.read(
|
35
|
+
@checksum ||= Digest::MD5.digest(File.read(@path))
|
35
36
|
end
|
36
37
|
end
|
37
38
|
end
|
data/lib/flgen/version.rb
CHANGED
data/sample/bar/bar.list.rb
CHANGED
@@ -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
|
-
|
6
|
-
|
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
data/sample/foo_lib.sv
ADDED
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.
|
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-
|
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
|
@@ -160,7 +162,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
160
162
|
- !ruby/object:Gem::Version
|
161
163
|
version: '0'
|
162
164
|
requirements: []
|
163
|
-
rubygems_version: 3.4.
|
165
|
+
rubygems_version: 3.4.5
|
164
166
|
signing_key:
|
165
167
|
specification_version: 4
|
166
168
|
summary: Filelist generator
|