flgen 0.17.0 → 0.18.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 +38 -10
- data/lib/flgen/context.rb +4 -4
- data/lib/flgen/file_list.rb +57 -40
- data/lib/flgen/source_file.rb +4 -4
- data/lib/flgen/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5660041e78d446e6127ef86bb45e93468f000750b2917df3e0b34de33ab4cfd0
|
4
|
+
data.tar.gz: f78fa09b2bac383f4f38270ad31ed7d67c98ea06e7709d2fd2aacd7a6b6d322d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3b76b55b57b5e52a316a9eed0c7051e6c1333536b9ead179f3b0616920a1bb1524af76f6d2a6e921553083cdb4d04e53f5f28742083312dbd0cadc88514ab45
|
7
|
+
data.tar.gz: 13a7d45bd399cc0bb57d52084599de7912f894844092d6054289b4c8a555ff7cb4ea07c6979206ee16548409afdb5ff3ae94a452426a79778abdb9cc1bda650a
|
data/README.md
CHANGED
@@ -24,23 +24,23 @@ $ gem install flgen
|
|
24
24
|
|
25
25
|
FLGen prives APIs listed below to describe your filelists.
|
26
26
|
|
27
|
-
* `source_file(path, from:
|
27
|
+
* `source_file(path, from: nil)`
|
28
28
|
* Add the given source file to the current filelist.
|
29
|
-
* `file_list(path, from:
|
29
|
+
* `file_list(path, from: nil)`
|
30
30
|
* Load the given filelist.
|
31
|
-
* `library_file(path, from:
|
31
|
+
* `library_file(path, from: nil)`
|
32
32
|
* Add the given file to the list of library files.
|
33
|
-
* `include_directory(path, from:
|
33
|
+
* `include_directory(path, from: nil)`
|
34
34
|
* Add the given directory to the list of include direcotries.
|
35
|
-
* `library_directory(path, from:
|
35
|
+
* `library_directory(path, from: nil)`
|
36
36
|
* Add the given directory to the list of library directories.
|
37
37
|
* `define_macro(name, value = nil)`
|
38
38
|
* Define a text macro.
|
39
39
|
* `macro?(name)`/`macro_defined?(name)`
|
40
40
|
* Return `true` if the given macro is defined.
|
41
|
-
* `file?(path, from: :current
|
41
|
+
* `file?(path, from: :current)`
|
42
42
|
* Return `treu` if the given file exists.
|
43
|
-
* `directory?(path, from: :current
|
43
|
+
* `directory?(path, from: :current)`
|
44
44
|
* Return `true` if the given directory exists.
|
45
45
|
* `env?(name)`
|
46
46
|
* Return `true` if the givne environment variable is defined.
|
@@ -54,6 +54,10 @@ FLGen prives APIs listed below to describe your filelists.
|
|
54
54
|
* If `tool` is specified the given argument is added only when `tool` is matched with the targe tool.
|
55
55
|
* `target_tool?(tool)`
|
56
56
|
* Return `true` if the given tool is matched with the targe tool.
|
57
|
+
* `default_search_path(**seach_paths)`
|
58
|
+
* Change the default behavior when the `from` argument is not specified.
|
59
|
+
* `reset_default_search_path(*target_types)`
|
60
|
+
* Reset the default behavior when the `from` argument is not specified.
|
57
61
|
|
58
62
|
FLGen's filelist is designed as an inernal DSL with Ruby. Therefore you can use Ruby's syntax. For example:
|
59
63
|
|
@@ -65,10 +69,12 @@ else
|
|
65
69
|
end
|
66
70
|
```
|
67
71
|
|
68
|
-
### About `from
|
72
|
+
### About the `from` argument
|
69
73
|
|
70
74
|
The `from` argument is to specify how to search the given file or directory. You can specify one of three below.
|
71
75
|
|
76
|
+
* a directory path
|
77
|
+
* Seach the given file or directory from the directory path specified by the `from` argument.
|
72
78
|
* `:current`
|
73
79
|
* Search the given file or directory from the directory where the current filelist is.
|
74
80
|
* `:root`
|
@@ -78,9 +84,31 @@ The `from` argument is to specify how to search the given file or directory. You
|
|
78
84
|
* `:local_root`
|
79
85
|
* Search the given file or directory from the repository root directory where the current filelist belongs to.
|
80
86
|
|
81
|
-
|
87
|
+
Default behaviors when the `from` argument is not spcified are listed below:
|
82
88
|
|
83
|
-
|
89
|
+
* `source_file`
|
90
|
+
* `:current`
|
91
|
+
* `file_list`
|
92
|
+
* `:root`
|
93
|
+
* `library_file`
|
94
|
+
* `:current`
|
95
|
+
* `include_directory`
|
96
|
+
* `:current`
|
97
|
+
* `library_directory`
|
98
|
+
* `:current`
|
99
|
+
|
100
|
+
You can change the above default behaviors by using the `default_search_path` API.
|
101
|
+
In addition, you can reset the default behaviors by using the `reset_default_search_path` API.
|
102
|
+
|
103
|
+
```ruby
|
104
|
+
default_seach_path source_file: :root, file_list: :current
|
105
|
+
source_file 'foo.sv' # FLGen will search the 'foo.sv' file from the root directories.
|
106
|
+
file_list 'bar.list.rb' # FLGen will eaarch the 'bar.list.rb' file from the directory where this file list is.
|
107
|
+
|
108
|
+
reset_default_search_path :source_file, :file_list
|
109
|
+
source_file 'baz.sv' # FLGen will search the 'baz.sv' file from the directory where this file list is.
|
110
|
+
file_list 'qux.list.rb' # FLGen will eaarch the 'qux.list.rb' file from the root directories.
|
111
|
+
```
|
84
112
|
|
85
113
|
#### Example
|
86
114
|
|
data/lib/flgen/context.rb
CHANGED
@@ -12,18 +12,18 @@ module FLGen
|
|
12
12
|
@source_files ||= []
|
13
13
|
end
|
14
14
|
|
15
|
-
def add_source_file(
|
15
|
+
def add_source_file(path)
|
16
16
|
return if runtime?
|
17
17
|
|
18
|
-
file = SourceFile.new(
|
18
|
+
file = SourceFile.new(path)
|
19
19
|
add_source_file?(file) &&
|
20
20
|
(source_files << file.remove_ext(@options[:rm_ext]))
|
21
21
|
end
|
22
22
|
|
23
|
-
def add_library_file(
|
23
|
+
def add_library_file(path)
|
24
24
|
return if runtime?
|
25
25
|
|
26
|
-
file = SourceFile.new(
|
26
|
+
file = SourceFile.new(path)
|
27
27
|
add_library_file?(file) &&
|
28
28
|
add_compile_argument(Arguments::LibraryFile.new(file))
|
29
29
|
end
|
data/lib/flgen/file_list.rb
CHANGED
@@ -6,21 +6,30 @@ module FLGen
|
|
6
6
|
@context = context
|
7
7
|
@path = path
|
8
8
|
@root_directories = extract_root
|
9
|
+
@default_search_path = {}
|
9
10
|
end
|
10
11
|
|
11
|
-
def
|
12
|
+
def default_search_path(**seach_paths)
|
13
|
+
@default_search_path.update(seach_paths)
|
14
|
+
end
|
15
|
+
|
16
|
+
def reset_default_search_path(*target_types)
|
17
|
+
target_types.each { |type| @default_search_path.delete(type) }
|
18
|
+
end
|
19
|
+
|
20
|
+
def file_list(path, from: nil, raise_error: true)
|
12
21
|
location = caller_location
|
13
|
-
load_file_list(path, from,
|
22
|
+
load_file_list(path, from, location, raise_error)
|
14
23
|
end
|
15
24
|
|
16
|
-
def source_file(path, from:
|
25
|
+
def source_file(path, from: nil, raise_error: true)
|
17
26
|
location = caller_location
|
18
|
-
add_file_entry(path, from,
|
27
|
+
add_file_entry(path, from, location, raise_error, :source_file)
|
19
28
|
end
|
20
29
|
|
21
|
-
def library_file(path, from:
|
30
|
+
def library_file(path, from: nil, raise_error: true)
|
22
31
|
location = caller_location
|
23
|
-
add_file_entry(path, from,
|
32
|
+
add_file_entry(path, from, location, raise_error, :library_file)
|
24
33
|
end
|
25
34
|
|
26
35
|
def define_macro(macro, value = nil)
|
@@ -33,24 +42,24 @@ module FLGen
|
|
33
42
|
|
34
43
|
alias_method :macro_defined?, :macro?
|
35
44
|
|
36
|
-
def include_directory(path, from:
|
45
|
+
def include_directory(path, from: nil, raise_error: true)
|
37
46
|
location = caller_location
|
38
|
-
add_directory_entry(path, from,
|
47
|
+
add_directory_entry(path, from, location, raise_error, :include_directory)
|
39
48
|
end
|
40
49
|
|
41
|
-
def library_directory(path, from:
|
50
|
+
def library_directory(path, from: nil, raise_error: true)
|
42
51
|
location = caller_location
|
43
|
-
add_directory_entry(path, from,
|
52
|
+
add_directory_entry(path, from, location, raise_error, :library_directory)
|
44
53
|
end
|
45
54
|
|
46
|
-
def file?(path, from: :current
|
55
|
+
def file?(path, from: :current)
|
47
56
|
location = caller_location
|
48
|
-
!
|
57
|
+
!extract_file_path(path, from, location, :file).nil?
|
49
58
|
end
|
50
59
|
|
51
|
-
def directory?(path, from: :current
|
60
|
+
def directory?(path, from: :current)
|
52
61
|
location = caller_location
|
53
|
-
!
|
62
|
+
!extract_directory_path(path, from, location, :directory).nil?
|
54
63
|
end
|
55
64
|
|
56
65
|
def env?(name)
|
@@ -91,14 +100,14 @@ module FLGen
|
|
91
100
|
File.exist?(path.join('.git').to_s)
|
92
101
|
end
|
93
102
|
|
94
|
-
def load_file_list(path, from,
|
95
|
-
unless (
|
103
|
+
def load_file_list(path, from, location, raise_error)
|
104
|
+
unless (list_path = extract_file_path(path, from, location, :file_list))
|
96
105
|
raise_no_entry_error(path, location, raise_error)
|
97
106
|
return
|
98
107
|
end
|
99
108
|
|
100
109
|
# Need to File.realpath to resolve symblic link
|
101
|
-
list_path = File.realpath(
|
110
|
+
list_path = File.realpath(list_path)
|
102
111
|
file_list_already_loaded?(list_path) && return
|
103
112
|
|
104
113
|
@context.loaded_file_lists << list_path
|
@@ -110,49 +119,61 @@ module FLGen
|
|
110
119
|
@context.loaded_file_lists.include?(path)
|
111
120
|
end
|
112
121
|
|
113
|
-
|
114
|
-
|
115
|
-
def add_file_entry(path, from, base, location, raise_error, method)
|
116
|
-
unless (root = lookup_root(path, from, base, location, :file?))
|
122
|
+
def add_file_entry(path, from, location, raise_error, type)
|
123
|
+
unless (file_path = extract_file_path(path, from, location, type))
|
117
124
|
raise_no_entry_error(path, location, raise_error)
|
118
125
|
return
|
119
126
|
end
|
120
127
|
|
121
|
-
|
128
|
+
method = "add_#{type}".to_sym
|
129
|
+
@context.__send__(method, file_path)
|
122
130
|
end
|
123
131
|
|
124
|
-
def add_directory_entry(path, from,
|
125
|
-
unless (
|
132
|
+
def add_directory_entry(path, from, location, raise_error, type)
|
133
|
+
unless (directory_path = extract_directory_path(path, from, location, type))
|
126
134
|
raise_no_entry_error(path, location, raise_error)
|
127
135
|
return
|
128
136
|
end
|
129
137
|
|
130
|
-
|
138
|
+
method = "add_#{type}".to_sym
|
131
139
|
@context.__send__(method, directory_path)
|
132
140
|
end
|
133
141
|
|
134
|
-
# rubocop:enable Metrics/ParameterLists
|
135
|
-
|
136
142
|
def caller_location
|
137
143
|
caller_locations(2, 1).first
|
138
144
|
end
|
139
145
|
|
140
|
-
def
|
141
|
-
|
142
|
-
|
146
|
+
def extract_file_path(path, from, location, type)
|
147
|
+
extract_path(path, from, location, type, :file?)
|
148
|
+
end
|
149
|
+
|
150
|
+
def extract_directory_path(path, from, location, type)
|
151
|
+
extract_path(path, from, location, type, :directory?)
|
143
152
|
end
|
144
153
|
|
145
|
-
def
|
154
|
+
def extract_path(path, from, location, type, checker)
|
155
|
+
search_root(path, from, location, type)
|
156
|
+
.map { |root| File.expand_path(path, root) }
|
157
|
+
.find { |abs_path| File.__send__(checker, abs_path) && abs_path }
|
158
|
+
end
|
159
|
+
|
160
|
+
DEFAULT_SEARCH_PATH = {
|
161
|
+
file_list: :root, source_file: :current, library_file: :current, file: :current,
|
162
|
+
include_directory: :current, library_directory: :current, directory: :current
|
163
|
+
}.freeze
|
164
|
+
|
165
|
+
def search_root(path, from, location, type)
|
166
|
+
search_path = from || @default_search_path[type] || DEFAULT_SEARCH_PATH[type]
|
146
167
|
if absolute_path?(path)
|
147
168
|
['']
|
148
|
-
elsif
|
149
|
-
[base]
|
150
|
-
elsif from == :current
|
169
|
+
elsif search_path == :current
|
151
170
|
[current_directory(location)]
|
152
|
-
elsif
|
171
|
+
elsif search_path == :local_root
|
153
172
|
[@root_directories.last]
|
154
|
-
|
173
|
+
elsif search_path == :root
|
155
174
|
@root_directories
|
175
|
+
else
|
176
|
+
[search_path]
|
156
177
|
end
|
157
178
|
end
|
158
179
|
|
@@ -168,10 +189,6 @@ module FLGen
|
|
168
189
|
File.dirname(path)
|
169
190
|
end
|
170
191
|
|
171
|
-
def concat_path(root, path)
|
172
|
-
File.expand_path(path, root)
|
173
|
-
end
|
174
|
-
|
175
192
|
def raise_no_entry_error(path, location, raise_error)
|
176
193
|
return unless raise_error
|
177
194
|
|
data/lib/flgen/source_file.rb
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
|
3
3
|
module FLGen
|
4
4
|
class SourceFile
|
5
|
-
def initialize(
|
6
|
-
@path =
|
5
|
+
def initialize(path, checksum = nil)
|
6
|
+
@path = path
|
7
7
|
@checksum = checksum
|
8
8
|
end
|
9
9
|
|
@@ -27,8 +27,8 @@ module FLGen
|
|
27
27
|
def remove_ext(ext_list)
|
28
28
|
return self unless match_ext?(ext_list)
|
29
29
|
|
30
|
-
|
31
|
-
self.class.new(
|
30
|
+
path_no_ext = Pathname.new(path).sub_ext('').to_s
|
31
|
+
self.class.new(path_no_ext, checksum)
|
32
32
|
end
|
33
33
|
|
34
34
|
def checksum
|
data/lib/flgen/version.rb
CHANGED
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.18.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-07-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bump
|
@@ -162,7 +162,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
162
162
|
- !ruby/object:Gem::Version
|
163
163
|
version: '0'
|
164
164
|
requirements: []
|
165
|
-
rubygems_version: 3.4.
|
165
|
+
rubygems_version: 3.4.17
|
166
166
|
signing_key:
|
167
167
|
specification_version: 4
|
168
168
|
summary: Filelist generator
|