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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6bf48956c855b1e0bef4cb503f0d587991d16ba1ff4f36c1aa3990ba7a343263
4
- data.tar.gz: ce22e515604e2790ce7ecba9d04eedfc16212ebfa5d7e20cf43a4ba233abf16c
3
+ metadata.gz: 5660041e78d446e6127ef86bb45e93468f000750b2917df3e0b34de33ab4cfd0
4
+ data.tar.gz: f78fa09b2bac383f4f38270ad31ed7d67c98ea06e7709d2fd2aacd7a6b6d322d
5
5
  SHA512:
6
- metadata.gz: 14eb5efde8db89f0c3bab5c380d482dd22d61172a2ad93e3654cd5edf46983dda17b4c0e164f42a1bb40dff785af9a9e21ef73c012d873d35f056be085949e3e
7
- data.tar.gz: bd522a28b24a175bc4f440af52fb548f6e01dddaa81b12e7ef3fa82f0d11b21956f7ade28a9bf3684e84e55b084b98868383c6f710d187bb27fd5e3b16de2337
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: :current, base: nil)`
27
+ * `source_file(path, from: nil)`
28
28
  * Add the given source file to the current filelist.
29
- * `file_list(path, from: :root, base: nil)`
29
+ * `file_list(path, from: nil)`
30
30
  * Load the given filelist.
31
- * `library_file(path, from: :current, base: nil)`
31
+ * `library_file(path, from: nil)`
32
32
  * Add the given file to the list of library files.
33
- * `include_directory(path, from: :current, base: nil)`
33
+ * `include_directory(path, from: nil)`
34
34
  * Add the given directory to the list of include direcotries.
35
- * `library_directory(path, from: :current, base: nil)`
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, base: nil)`
41
+ * `file?(path, from: :current)`
42
42
  * Return `treu` if the given file exists.
43
- * `directory?(path, from: :current, base: nil)`
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`/`base` arguments
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
- The `from` argument is ignored if the given path is an absolute path or the `base` argument is specified.
87
+ Default behaviors when the `from` argument is not spcified are listed below:
82
88
 
83
- The `base` argument is to specify the serach direcotry for the given file or directory.
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(root, path)
15
+ def add_source_file(path)
16
16
  return if runtime?
17
17
 
18
- file = SourceFile.new(root, path)
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(root, path)
23
+ def add_library_file(path)
24
24
  return if runtime?
25
25
 
26
- file = SourceFile.new(root, path)
26
+ file = SourceFile.new(path)
27
27
  add_library_file?(file) &&
28
28
  add_compile_argument(Arguments::LibraryFile.new(file))
29
29
  end
@@ -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 file_list(path, from: :root, base: nil, raise_error: true)
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, base, location, raise_error)
22
+ load_file_list(path, from, location, raise_error)
14
23
  end
15
24
 
16
- def source_file(path, from: :current, base: nil, raise_error: true)
25
+ def source_file(path, from: nil, raise_error: true)
17
26
  location = caller_location
18
- add_file_entry(path, from, base, location, raise_error, :add_source_file)
27
+ add_file_entry(path, from, location, raise_error, :source_file)
19
28
  end
20
29
 
21
- def library_file(path, from: :current, base: nil, raise_error: true)
30
+ def library_file(path, from: nil, raise_error: true)
22
31
  location = caller_location
23
- add_file_entry(path, from, base, location, raise_error, :add_library_file)
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: :current, base: nil, raise_error: true)
45
+ def include_directory(path, from: nil, raise_error: true)
37
46
  location = caller_location
38
- add_directory_entry(path, from, base, location, raise_error, :add_include_directory)
47
+ add_directory_entry(path, from, location, raise_error, :include_directory)
39
48
  end
40
49
 
41
- def library_directory(path, from: :current, base: nil, raise_error: true)
50
+ def library_directory(path, from: nil, raise_error: true)
42
51
  location = caller_location
43
- add_directory_entry(path, from, base, location, raise_error, :add_library_directory)
52
+ add_directory_entry(path, from, location, raise_error, :library_directory)
44
53
  end
45
54
 
46
- def file?(path, from: :current, base: nil)
55
+ def file?(path, from: :current)
47
56
  location = caller_location
48
- !lookup_root(path, from, base, location, :file?).nil?
57
+ !extract_file_path(path, from, location, :file).nil?
49
58
  end
50
59
 
51
- def directory?(path, from: :current, base: nil)
60
+ def directory?(path, from: :current)
52
61
  location = caller_location
53
- !lookup_root(path, from, base, location, :directory?).nil?
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, base, location, raise_error)
95
- unless (root = lookup_root(path, from, base, location, :file?))
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(concat_path(root, path))
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
- # rubocop:disable Metrics/ParameterLists
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
- @context.__send__(method, root, path)
128
+ method = "add_#{type}".to_sym
129
+ @context.__send__(method, file_path)
122
130
  end
123
131
 
124
- def add_directory_entry(path, from, base, location, raise_error, method)
125
- unless (root = lookup_root(path, from, base, location, :directory?))
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
- directory_path = concat_path(root, path)
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 lookup_root(path, from, base, location, checker)
141
- search_root(path, from, base, location)
142
- .find { |root| File.__send__(checker, concat_path(root, path)) }
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 search_root(path, from, base, location)
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 !base.nil?
149
- [base]
150
- elsif from == :current
169
+ elsif search_path == :current
151
170
  [current_directory(location)]
152
- elsif from == :local_root
171
+ elsif search_path == :local_root
153
172
  [@root_directories.last]
154
- else
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
 
@@ -2,8 +2,8 @@
2
2
 
3
3
  module FLGen
4
4
  class SourceFile
5
- def initialize(root, path, checksum = nil)
6
- @path = File.join(root, 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
- path = Pathname.new(@path).sub_ext('').to_s
31
- self.class.new('', path, checksum)
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FLGen
4
- VERSION = '0.17.0'
4
+ VERSION = '0.18.0'
5
5
  end
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.17.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-02-13 00:00:00.000000000 Z
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.5
165
+ rubygems_version: 3.4.17
166
166
  signing_key:
167
167
  specification_version: 4
168
168
  summary: Filelist generator