Skip to content

Commit 4907627

Browse files
committed
Rename files and update build tools
1 parent cf01de1 commit 4907627

8 files changed

+205
-77
lines changed

.npmrc

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#/
2+
# @license MIT
3+
#
4+
# Copyright (c) 2020 Python Data APIs Consortium.
5+
#
6+
# Permission is hereby granted, free of charge, to any person obtaining a copy
7+
# of this software and associated documentation files (the "Software"), to deal
8+
# in the Software without restriction, including without limitation the rights
9+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
# copies of the Software, and to permit persons to whom the Software is
11+
# furnished to do so, subject to the following conditions:
12+
#
13+
# The above copyright notice and this permission notice shall be included in all
14+
# copies or substantial portions of the Software.
15+
#
16+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
# SOFTWARE.
23+
#/
24+
25+
# Configuration for [npm][1].
26+
#
27+
# [1]: https://docs.npmjs.com/files/npmrc
28+
29+
# Disable the creation of a lock file:
30+
package-lock = false
31+
shrinkwrap = false
32+
33+
# Disable automatically "saving" dependencies on install:
34+
save = false

Makefile

+101-50
Original file line numberDiff line numberDiff line change
@@ -111,15 +111,18 @@ ROOT_DIR ?= $(this_dir)
111111
# Define the directory for documentation:
112112
DOCS_DIR ?= $(ROOT_DIR)/docs
113113

114+
# Define the directory for data:
115+
DATA_DIR ?= $(ROOT_DIR)/data
116+
117+
# Define the directory for scripts:
118+
SCRIPTS_DIR ?= $(ROOT_DIR)/scripts
119+
114120
# Define the path to the root `package.json`:
115121
ROOT_PACKAGE_JSON ?= $(ROOT_DIR)/package.json
116122

117123
# Define the top-level directory containing node module dependencies:
118124
NODE_MODULES ?= $(ROOT_DIR)/node_modules
119125

120-
# Define the folder name convention for scripts:
121-
SCRIPTS_FOLDER ?= scripts
122-
123126
# Define the delete command:
124127
DELETE ?= -rm
125128
DELETE_FLAGS ?= -rf
@@ -138,6 +141,15 @@ else
138141
endif
139142
# TODO: add Windows command
140143

144+
# Define the output file path for combined join data as JSON:
145+
JOIN_JSON_OUT ?= $(DATA_DIR)/join.json
146+
147+
# Define the output file path for combined join data as CSV:
148+
JOIN_CSV_OUT ?= $(DATA_DIR)/join.csv
149+
150+
# Define the output file path for viewing join data as an HTML table:
151+
JOIN_HTML_OUT ?= $(DOCS_DIR)/join.html
152+
141153

142154
# RULES #
143155

@@ -150,80 +162,81 @@ endif
150162
# @example
151163
# make all
152164
#/
153-
all: install
165+
all: install join
154166

155167
.PHONY: all
156168

157169
#/
158-
# Prints the runtime value of a `Makefile` variable.
159-
#
160-
# ## Notes
161-
#
162-
# - The rule uses the following format:
163-
#
164-
# ```bash
165-
# $ make inspect.<variable>
166-
# ```
170+
# Installs project dependencies.
167171
#
168172
# @example
169-
# make inspect.ROOT_DIR
173+
# make install
174+
#/
175+
install: install-node
176+
177+
.PHONY: install
178+
179+
#/
180+
# Install node module dependencies.
170181
#
171182
# @example
172-
# make inspect.CC
183+
# make install-node
173184
#/
174-
inspect.%:
175-
$(QUIET) echo '$*=$($*)'
185+
install-node:
186+
$(QUIET) $(NPM) install
187+
188+
.PHONY: install-node
176189

177190
#/
178-
# Asserts that a `Makefile` variable is set.
179-
#
180-
# ## Notes
191+
# Generates a JSON file combining individual library join data.
181192
#
182-
# - The rule uses the following format:
183-
#
184-
# ```bash
185-
# $ make assert.<variable>
186-
# ```
193+
# @private
194+
#/
195+
$(JOIN_JSON_OUT):
196+
$(QUIET) $(NODE) $(SCRIPTS_DIR)/join_json.js > $(JOIN_JSON_OUT)
197+
198+
#/
199+
# Generates a CSV file combining individual library join data.
187200
#
188-
# - If a variable is **not** set, the recipe exits with a non-zero exit code.
201+
# @private
202+
#/
203+
$(JOIN_CSV_OUT): $(JOIN_JSON_OUT)
204+
$(QUIET) $(NODE) $(SCRIPTS_DIR)/join_csv.js > $(JOIN_CSV_OUT)
205+
206+
#/
207+
# Generates HTML assets for viewing join data.
189208
#
190-
# @example
191-
# make inspect.CXX
209+
# @private
192210
#/
193-
assert.%:
194-
$(QUIET) if [[ "${${*}}" = "" ]]; then \
195-
echo "\nError: You must set the environment variable: ${*}.\n"; \
196-
exit 1; \
197-
fi
211+
$(JOIN_HTML_OUT): $(JOIN_JSON_OUT)
212+
$(QUIET) $(NODE) $(SCRIPTS_DIR)/join_html.js > $(JOIN_HTML_OUT)
198213

199214
#/
200-
# Installs project dependencies.
215+
# Generates data assets combining individual join data.
201216
#
202217
# @example
203-
# make install
218+
# make join
204219
#/
205-
install: install-node
206-
207-
.PHONY: install
220+
join: $(JOIN_JSON_OUT) $(JOIN_CSV_OUT) $(JOIN_HTML_OUT)
208221

209222
#/
210-
# Install node module dependencies.
223+
# Opens a data table in a web browser.
211224
#
212225
# @example
213-
# make install-node
226+
# make view-table
214227
#/
215-
install-node:
216-
$(QUIET) $(NPM) install
228+
view-table: $(JOIN_HTML_OUT)
229+
$(QUIET) $(OPEN) $(JOIN_HTML_OUT)
217230

218-
.PHONY: install-node
231+
.PHONY: view-table
219232

220233
#/
221234
# Runs the project's cleanup sequence.
222235
#
223236
# @example
224237
# make clean
225238
#/
226-
clean: clean-node clean-docs
239+
clean: clean-node clean-data clean-docs
227240

228241
.PHONY: clean
229242

@@ -237,24 +250,62 @@ clean-node:
237250

238251
.PHONY: clean-node
239252

253+
#/
254+
# Removes generated datasets.
255+
#
256+
# @example
257+
# make clean-data
258+
#/
259+
clean-data:
260+
$(QUIET) $(DELETE) $(DELETE_FLAGS) $(JOIN_JSON_OUT)
261+
$(QUIET) $(DELETE) $(DELETE_FLAGS) $(JOIN_CSV_OUT)
262+
240263
#/
241264
# Removes generated documentation.
242265
#
243266
# @example
244267
# make clean-docs
245268
#/
246269
clean-docs:
247-
$(QUIET) $(DELETE) $(DELETE_FLAGS) $(DOCS_DIR)/index.html
270+
$(QUIET) $(DELETE) $(DELETE_FLAGS) $(JOIN_HTML_OUT)
248271

249272
.PHONY: clean-docs
250273

251274
#/
252-
# Opens the main data table in a web browser.
275+
# Prints the runtime value of a `Makefile` variable.
276+
#
277+
# ## Notes
278+
#
279+
# - The rule uses the following format:
280+
#
281+
# ```bash
282+
# $ make inspect.<variable>
283+
# ```
253284
#
254285
# @example
255-
# make view-data-table
286+
# make inspect.ROOT_DIR
256287
#/
257-
view-data-table:
258-
$(QUIET) $(OPEN) $(DOCS_DIR)/index.html
288+
inspect.%:
289+
$(QUIET) echo '$*=$($*)'
259290

260-
.PHONY: view-data-table
291+
#/
292+
# Asserts that a `Makefile` variable is set.
293+
#
294+
# ## Notes
295+
#
296+
# - The rule uses the following format:
297+
#
298+
# ```bash
299+
# $ make assert.<variable>
300+
# ```
301+
#
302+
# - If a variable is **not** set, the recipe exits with a non-zero exit code.
303+
#
304+
# @example
305+
# make assert.ROOT_DIR
306+
#/
307+
assert.%:
308+
$(QUIET) if [[ "${${*}}" = "" ]]; then \
309+
echo "\nError: You must set the environment variable: ${*}.\n"; \
310+
exit 1; \
311+
fi

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ $ cd ./array-api-comparison
7979
You can view the main data table in your local web browser by running
8080

8181
```bash
82-
$ make view-data-table
82+
$ make view-table
8383
```
8484

8585
* * *

docs/index.html docs/join.html

+1
Original file line numberDiff line numberDiff line change
@@ -7690,3 +7690,4 @@ <h1>Array API Comparison</h1>
76907690
<script src="js/main.js"></script>
76917691
</body>
76927692
</html>
7693+
File renamed without changes.

scripts/join_csv.js

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
#!/usr/bin/env node
2+
3+
/**
4+
* @license MIT
5+
*
6+
* Copyright (c) 2020 Python Data APIs Consortium.
7+
*
8+
* Permission is hereby granted, free of charge, to any person obtaining a copy
9+
* of this software and associated documentation files (the "Software"), to deal
10+
* in the Software without restriction, including without limitation the rights
11+
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12+
* copies of the Software, and to permit persons to whom the Software is
13+
* furnished to do so, subject to the following conditions:
14+
*
15+
* The above copyright notice and this permission notice shall be included in all
16+
* copies or substantial portions of the Software.
17+
*
18+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20+
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23+
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24+
* SOFTWARE.
25+
*/
26+
27+
'use strict';
28+
29+
// MODULES //
30+
31+
var resolve = require( 'path' ).resolve;
32+
var readJSON = require( '@stdlib/fs/read-json' ).sync;
33+
var json2csv = require( './utils/json2csv.js' );
34+
35+
36+
// MAIN //
37+
38+
/**
39+
* Main execution sequence.
40+
*
41+
* @private
42+
*/
43+
function main() {
44+
var fpath;
45+
var fopts;
46+
var data;
47+
48+
fopts = {
49+
'encoding': 'utf8'
50+
};
51+
52+
// Load source data:
53+
fpath = resolve( __dirname, '..', 'data', 'join.json' );
54+
data = readJSON( fpath, fopts );
55+
if ( data instanceof Error ) {
56+
console.error( data.message );
57+
return;
58+
}
59+
// Print the data as CSV:
60+
console.log( json2csv( data ) );
61+
}
62+
63+
main();

scripts/join_html_table.js scripts/join_html.js

+3-10
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
// MODULES //
3030

3131
var resolve = require( 'path' ).resolve;
32-
var writeFile = require( '@stdlib/fs/write-file' ).sync;
3332
var readFile = require( '@stdlib/fs/read-file' ).sync;
3433
var readJSON = require( '@stdlib/fs/read-json' ).sync;
3534
var replace = require( '@stdlib/string/replace' );
@@ -50,7 +49,6 @@ function main() {
5049
var keys;
5150
var tmpl;
5251
var out;
53-
var err;
5452
var N;
5553
var M;
5654
var d;
@@ -97,21 +95,16 @@ function main() {
9795
out += '</table>';
9896

9997
// Load the HTML template:
100-
fpath = resolve( __dirname, '..', 'docs', 'template.html' );
98+
fpath = resolve( __dirname, '..', 'docs', 'join_template.html' );
10199
tmpl = readFile( fpath, fopts );
102100
if ( tmpl instanceof Error ) {
103101
console.error( tmpl.message );
104102
return;
105103
}
106104
tmpl = replace( tmpl, '{{TABLE}}', out );
107105

108-
// Write the generated HTML table to file:
109-
fpath = resolve( __dirname, '..', 'docs', 'index.html' );
110-
err = writeFile( fpath, tmpl, fopts );
111-
if ( err instanceof Error ) {
112-
console.error( err.message );
113-
return;
114-
}
106+
// Print the generated HTML table to stdout:
107+
console.log( tmpl );
115108
}
116109

117110
main();

0 commit comments

Comments
 (0)