flgen 0.18.0 → 0.19.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 +24 -17
- data/lib/flgen/file_list.rb +70 -73
- data/lib/flgen/version.rb +1 -1
- metadata +4 -102
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 93ba3a15351e9da39f2dfbbd23c54790140fe7134be768352aa2430533008194
|
4
|
+
data.tar.gz: 0e4cc12fae241384ec559682d965b68a63362ca0c934013c1312ac93eaec28cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01ffbee882b46664e9e77a63977abe0e5c1de2a7c75271a1ce6b0284ce7a0517d1785d8e14d95c524959aedfbc8482f6dba3174001311034fd88d863cb013cd3
|
7
|
+
data.tar.gz: 398adf788fa50f20d2cdda686b3364b8978a05884e554aecc19ae6c5beb908049a49e6de852b5d7ba41552e0c29310a9826c63c2e49fef2cd65899515133747f
|
data/README.md
CHANGED
@@ -34,14 +34,19 @@ FLGen prives APIs listed below to describe your filelists.
|
|
34
34
|
* Add the given directory to the list of include direcotries.
|
35
35
|
* `library_directory(path, from: nil)`
|
36
36
|
* Add the given directory to the list of library directories.
|
37
|
+
* `find_files(patterns, from: nil)`
|
38
|
+
* Return an array of filenames matching the given patterns strings.
|
39
|
+
* See [here](https://docs.ruby-lang.org/en/3.2/Dir.html#method-c-glob) for the format of a pattern string.
|
40
|
+
* `find_file(patterns, from: nil)`
|
41
|
+
* Return the first filename matching the given pattern strings.
|
42
|
+
* `file?(path, from: :current)`
|
43
|
+
* Return `true` if the given file exists.
|
44
|
+
* `directory?(path, from: :current)`
|
45
|
+
* Return `true` if the given directory exists.
|
37
46
|
* `define_macro(name, value = nil)`
|
38
47
|
* Define a text macro.
|
39
48
|
* `macro?(name)`/`macro_defined?(name)`
|
40
49
|
* Return `true` if the given macro is defined.
|
41
|
-
* `file?(path, from: :current)`
|
42
|
-
* Return `treu` if the given file exists.
|
43
|
-
* `directory?(path, from: :current)`
|
44
|
-
* Return `true` if the given directory exists.
|
45
50
|
* `env?(name)`
|
46
51
|
* Return `true` if the givne environment variable is defined.
|
47
52
|
* `env(name)`
|
@@ -54,7 +59,7 @@ FLGen prives APIs listed below to describe your filelists.
|
|
54
59
|
* If `tool` is specified the given argument is added only when `tool` is matched with the targe tool.
|
55
60
|
* `target_tool?(tool)`
|
56
61
|
* Return `true` if the given tool is matched with the targe tool.
|
57
|
-
* `default_search_path(**
|
62
|
+
* `default_search_path(**search_paths)`
|
58
63
|
* Change the default behavior when the `from` argument is not specified.
|
59
64
|
* `reset_default_search_path(*target_types)`
|
60
65
|
* Reset the default behavior when the `from` argument is not specified.
|
@@ -74,7 +79,9 @@ end
|
|
74
79
|
The `from` argument is to specify how to search the given file or directory. You can specify one of three below.
|
75
80
|
|
76
81
|
* a directory path
|
77
|
-
*
|
82
|
+
* Search the given file or directory from the directory path specified by the `from` argument.
|
83
|
+
* `:cwd`
|
84
|
+
* Search the given file or directory from the current working directory.
|
78
85
|
* `:current`
|
79
86
|
* Search the given file or directory from the directory where the current filelist is.
|
80
87
|
* `:root`
|
@@ -86,22 +93,22 @@ The `from` argument is to specify how to search the given file or directory. You
|
|
86
93
|
|
87
94
|
Default behaviors when the `from` argument is not spcified are listed below:
|
88
95
|
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
96
|
+
|
97
|
+
| API name | Default `from` argument |
|
98
|
+
|:------------------|:------------------------|
|
99
|
+
| source_file | :current |
|
100
|
+
| file_list | :root |
|
101
|
+
| library_file | :current |
|
102
|
+
| include_directory | :current |
|
103
|
+
| library_directory | :current |
|
104
|
+
| find_files | :current |
|
105
|
+
| find_file | :current |
|
99
106
|
|
100
107
|
You can change the above default behaviors by using the `default_search_path` API.
|
101
108
|
In addition, you can reset the default behaviors by using the `reset_default_search_path` API.
|
102
109
|
|
103
110
|
```ruby
|
104
|
-
|
111
|
+
default_search_path source_file: :root, file_list: :current
|
105
112
|
source_file 'foo.sv' # FLGen will search the 'foo.sv' file from the root directories.
|
106
113
|
file_list 'bar.list.rb' # FLGen will eaarch the 'bar.list.rb' file from the directory where this file list is.
|
107
114
|
|
data/lib/flgen/file_list.rb
CHANGED
@@ -6,11 +6,11 @@ module FLGen
|
|
6
6
|
@context = context
|
7
7
|
@path = path
|
8
8
|
@root_directories = extract_root
|
9
|
-
@default_search_path =
|
9
|
+
@default_search_path = init_default_search_path
|
10
10
|
end
|
11
11
|
|
12
|
-
def default_search_path(**
|
13
|
-
@default_search_path.update(
|
12
|
+
def default_search_path(**search_paths)
|
13
|
+
@default_search_path.update(search_paths)
|
14
14
|
end
|
15
15
|
|
16
16
|
def reset_default_search_path(*target_types)
|
@@ -18,50 +18,42 @@ module FLGen
|
|
18
18
|
end
|
19
19
|
|
20
20
|
def file_list(path, from: nil, raise_error: true)
|
21
|
-
|
22
|
-
load_file_list(path, from, location, raise_error)
|
21
|
+
load_file_list(path, from, raise_error, caller_location)
|
23
22
|
end
|
24
23
|
|
25
24
|
def source_file(path, from: nil, raise_error: true)
|
26
|
-
|
27
|
-
add_file_entry(path, from, location, raise_error, :source_file)
|
25
|
+
add_entry(path, from, raise_error, __callee__, caller_location)
|
28
26
|
end
|
29
27
|
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
end
|
28
|
+
define_method(:library_file, instance_method(:source_file))
|
29
|
+
define_method(:include_directory, instance_method(:source_file))
|
30
|
+
define_method(:library_directory, instance_method(:source_file))
|
34
31
|
|
35
|
-
def
|
36
|
-
|
32
|
+
def find_files(patterns, from: nil, &block)
|
33
|
+
glob_files(patterns, from, __callee__, caller_location)
|
34
|
+
.then { |e| block ? e.each(&block) : e.to_a }
|
37
35
|
end
|
38
36
|
|
39
|
-
def
|
40
|
-
|
37
|
+
def find_file(patterns, from: nil)
|
38
|
+
glob_files(patterns, from, __callee__, caller_location).first
|
41
39
|
end
|
42
40
|
|
43
|
-
|
44
|
-
|
45
|
-
def include_directory(path, from: nil, raise_error: true)
|
46
|
-
location = caller_location
|
47
|
-
add_directory_entry(path, from, location, raise_error, :include_directory)
|
41
|
+
def file?(path, from: :current)
|
42
|
+
!extract_path(path, from, __callee__, caller_location).nil?
|
48
43
|
end
|
49
44
|
|
50
|
-
|
51
|
-
location = caller_location
|
52
|
-
add_directory_entry(path, from, location, raise_error, :library_directory)
|
53
|
-
end
|
45
|
+
define_method(:directory?, instance_method(:file?))
|
54
46
|
|
55
|
-
def
|
56
|
-
|
57
|
-
!extract_file_path(path, from, location, :file).nil?
|
47
|
+
def define_macro(macro, value = nil)
|
48
|
+
@context.define_macro(macro, value)
|
58
49
|
end
|
59
50
|
|
60
|
-
def
|
61
|
-
|
62
|
-
!extract_directory_path(path, from, location, :directory).nil?
|
51
|
+
def macro?(macro)
|
52
|
+
@context.macros.include?(macro.to_sym)
|
63
53
|
end
|
64
54
|
|
55
|
+
alias_method :macro_defined?, :macro?
|
56
|
+
|
65
57
|
def env?(name)
|
66
58
|
ENV.key?(name.to_s)
|
67
59
|
end
|
@@ -89,25 +81,25 @@ module FLGen
|
|
89
81
|
return nil if @path.empty?
|
90
82
|
|
91
83
|
Pathname
|
92
|
-
.new(@path)
|
93
|
-
.dirname
|
94
|
-
.descend
|
95
|
-
.select(&method(:repository_root?))
|
96
|
-
.map(&:to_s)
|
84
|
+
.new(@path).dirname.descend.select(&method(:repository_root?)).map(&:to_s)
|
97
85
|
end
|
98
86
|
|
99
87
|
def repository_root?(path)
|
100
88
|
File.exist?(path.join('.git').to_s)
|
101
89
|
end
|
102
90
|
|
103
|
-
def
|
104
|
-
|
91
|
+
def init_default_search_path
|
92
|
+
Hash.new { |_, key| key == :file_list ? :root : :current }
|
93
|
+
end
|
94
|
+
|
95
|
+
def load_file_list(path, from, raise_error, location)
|
96
|
+
unless (extracted_path = extract_path(path, from, :file_list, location))
|
105
97
|
raise_no_entry_error(path, location, raise_error)
|
106
98
|
return
|
107
99
|
end
|
108
100
|
|
109
101
|
# Need to File.realpath to resolve symblic link
|
110
|
-
list_path = File.realpath(
|
102
|
+
list_path = File.realpath(extracted_path)
|
111
103
|
file_list_already_loaded?(list_path) && return
|
112
104
|
|
113
105
|
@context.loaded_file_lists << list_path
|
@@ -119,59 +111,50 @@ module FLGen
|
|
119
111
|
@context.loaded_file_lists.include?(path)
|
120
112
|
end
|
121
113
|
|
122
|
-
def
|
123
|
-
unless (
|
114
|
+
def add_entry(path, from, raise_error, method_name, location)
|
115
|
+
unless (extracted_path = extract_path(path, from, method_name, location))
|
124
116
|
raise_no_entry_error(path, location, raise_error)
|
125
117
|
return
|
126
118
|
end
|
127
119
|
|
128
|
-
|
129
|
-
@context.__send__(method, file_path)
|
120
|
+
@context.__send__("add_#{method_name}".to_sym, extracted_path)
|
130
121
|
end
|
131
122
|
|
132
|
-
def
|
133
|
-
unless
|
134
|
-
raise_no_entry_error(path, location, raise_error)
|
135
|
-
return
|
136
|
-
end
|
123
|
+
def raise_no_entry_error(path, location, raise_error)
|
124
|
+
return unless raise_error
|
137
125
|
|
138
|
-
|
139
|
-
@context.__send__(method, directory_path)
|
126
|
+
raise NoEntryError.new(path, location)
|
140
127
|
end
|
141
128
|
|
142
|
-
def
|
143
|
-
|
129
|
+
def glob_files(patterns, from, method_name, location)
|
130
|
+
search_root('', from, method_name, location)
|
131
|
+
.lazy.flat_map { |base| do_glob_files(patterns, base) }
|
144
132
|
end
|
145
133
|
|
146
|
-
def
|
147
|
-
|
134
|
+
def do_glob_files(patterns, base)
|
135
|
+
Dir.glob(Array(patterns), base: base)
|
136
|
+
.map { |path| File.join(base, path) }
|
137
|
+
.select(&File.method(:file?))
|
148
138
|
end
|
149
139
|
|
150
|
-
def
|
151
|
-
|
140
|
+
def caller_location
|
141
|
+
caller_locations(2, 1).first
|
152
142
|
end
|
153
143
|
|
154
|
-
def extract_path(path, from,
|
155
|
-
search_root(path, from,
|
144
|
+
def extract_path(path, from, method_name, location)
|
145
|
+
search_root(path, from, method_name, location)
|
156
146
|
.map { |root| File.expand_path(path, root) }
|
157
|
-
.find { |abs_path|
|
147
|
+
.find { |abs_path| exist_path?(abs_path, method_name) }
|
158
148
|
end
|
159
149
|
|
160
|
-
|
161
|
-
file_list: :root, source_file: :current, library_file: :current, file: :current,
|
162
|
-
include_directory: :current, library_directory: :current, directory: :current
|
163
|
-
}.freeze
|
150
|
+
FROM_KEYWORDS = [:cwd, :current, :local_root, :root].freeze
|
164
151
|
|
165
|
-
def search_root(path, from,
|
166
|
-
search_path = from || @default_search_path[
|
152
|
+
def search_root(path, from, method_name, location)
|
153
|
+
search_path = from || @default_search_path[method_name]
|
167
154
|
if absolute_path?(path)
|
168
155
|
['']
|
169
|
-
elsif search_path
|
170
|
-
|
171
|
-
elsif search_path == :local_root
|
172
|
-
[@root_directories.last]
|
173
|
-
elsif search_path == :root
|
174
|
-
@root_directories
|
156
|
+
elsif FROM_KEYWORDS.include?(search_path)
|
157
|
+
search_root_specified_by_keyword(search_path, location)
|
175
158
|
else
|
176
159
|
[search_path]
|
177
160
|
end
|
@@ -181,6 +164,15 @@ module FLGen
|
|
181
164
|
Pathname.new(path).absolute?
|
182
165
|
end
|
183
166
|
|
167
|
+
def search_root_specified_by_keyword(from_keyword, location)
|
168
|
+
case from_keyword
|
169
|
+
when :cwd then [Dir.pwd]
|
170
|
+
when :current then [current_directory(location)]
|
171
|
+
when :local_root then [@root_directories.last]
|
172
|
+
else @root_directories
|
173
|
+
end
|
174
|
+
end
|
175
|
+
|
184
176
|
def current_directory(location)
|
185
177
|
# From Ruby 3.1 Thread::Backtrace::Location#absolute_path returns nil
|
186
178
|
# for code string evaluated by eval methods
|
@@ -189,10 +181,15 @@ module FLGen
|
|
189
181
|
File.dirname(path)
|
190
182
|
end
|
191
183
|
|
192
|
-
|
193
|
-
|
184
|
+
METHODS_TARGETING_DIRECTORY =
|
185
|
+
[:include_directory, :library_directory, :directory?].freeze
|
194
186
|
|
195
|
-
|
187
|
+
def exist_path?(path, method_name)
|
188
|
+
if METHODS_TARGETING_DIRECTORY.include?(method_name)
|
189
|
+
File.directory?(path)
|
190
|
+
else
|
191
|
+
File.file?(path)
|
192
|
+
end
|
196
193
|
end
|
197
194
|
end
|
198
195
|
end
|
data/lib/flgen/version.rb
CHANGED
metadata
CHANGED
@@ -1,113 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flgen
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.19.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-
|
12
|
-
dependencies:
|
13
|
-
- !ruby/object:Gem::Dependency
|
14
|
-
name: bump
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - "~>"
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 0.10.0
|
20
|
-
type: :development
|
21
|
-
prerelease: false
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
23
|
-
requirements:
|
24
|
-
- - "~>"
|
25
|
-
- !ruby/object:Gem::Version
|
26
|
-
version: 0.10.0
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: bundler
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0'
|
34
|
-
type: :development
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - ">="
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '0'
|
41
|
-
- !ruby/object:Gem::Dependency
|
42
|
-
name: rake
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
44
|
-
requirements:
|
45
|
-
- - ">="
|
46
|
-
- !ruby/object:Gem::Version
|
47
|
-
version: '0'
|
48
|
-
type: :development
|
49
|
-
prerelease: false
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
51
|
-
requirements:
|
52
|
-
- - ">="
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: '0'
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: rspec
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
58
|
-
requirements:
|
59
|
-
- - "~>"
|
60
|
-
- !ruby/object:Gem::Version
|
61
|
-
version: 3.12.0
|
62
|
-
type: :development
|
63
|
-
prerelease: false
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
65
|
-
requirements:
|
66
|
-
- - "~>"
|
67
|
-
- !ruby/object:Gem::Version
|
68
|
-
version: 3.12.0
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: rubocop
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - "~>"
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: 1.40.0
|
76
|
-
type: :development
|
77
|
-
prerelease: false
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - "~>"
|
81
|
-
- !ruby/object:Gem::Version
|
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
|
11
|
+
date: 2023-09-15 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
111
13
|
description: Filelist generator
|
112
14
|
email:
|
113
15
|
- ishitani@pezy.co.jp
|
@@ -162,7 +64,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
162
64
|
- !ruby/object:Gem::Version
|
163
65
|
version: '0'
|
164
66
|
requirements: []
|
165
|
-
rubygems_version: 3.4.
|
67
|
+
rubygems_version: 3.4.19
|
166
68
|
signing_key:
|
167
69
|
specification_version: 4
|
168
70
|
summary: Filelist generator
|