-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathcomplete_require.js
More file actions
166 lines (146 loc) · 5.04 KB
/
complete_require.js
File metadata and controls
166 lines (146 loc) · 5.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/**
* @license Apache-2.0
*
* Copyright (c) 2019 The Stdlib Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
'use strict';
// MODULES //
var resolve = require( 'path' ).resolve;
var statSync = require( 'fs' ).statSync; // TODO: replace with stdlib equivalent
var logger = require( 'debug' );
var readDir = require( '@stdlib/fs/read-dir' ).sync;
var startsWith = require( '@stdlib/string/starts-with' );
var extname = require( '@stdlib/utils/extname' );
var cwd = require( '@stdlib/process/cwd' );
var indexRegExp = require( './regexp_index.js' );
var relativePathRegExp = require( './regexp_relative_require_path.js' );
var pathRegExp = require( './regexp_path.js' );
var contains = require( './contains.js' );
// VARIABLES //
var debug = logger( 'repl:completer:require' );
var RE_RELATIVE = relativePathRegExp();
// MAIN //
/**
* Completes a `require` expression.
*
* @private
* @param {Array} out - output array for storing completions
* @param {string} path - path to complete
* @param {Array} paths - module search paths
* @param {Array} exts - supported `require` extensions
* @returns {string} path filter
*/
function complete( out, path, paths, exts ) {
var filter;
var sfiles;
var subdir;
var files;
var stats;
var dir;
var ext;
var re;
var f;
var i;
var j;
var k;
if ( path === '.' ) {
out.push( './', '../' );
return '.';
}
if ( path === '..' ) {
out.push( '../' );
return '..';
}
debug( 'Searching for completion candidates...' );
if ( RE_RELATIVE.test( path ) ) {
debug( 'Detected a relative require path. Resolving from current working directory...' );
paths = [ cwd() ];
} else {
debug( 'Detected a package name. Resolving from known module paths...' );
}
// Split the path to complete into two components: subdirectory path and filter...
subdir = path.match( pathRegExp() );
filter = subdir[ 2 ];
subdir = subdir[ 1 ] || '';
// Compile a regular expression for matching an `index` file:
re = indexRegExp( exts );
// For each search path, attempt to resolve a matching package and/or file...
debug( 'Searching paths: %s', paths.join( ', ' ) );
for ( i = 0; i < paths.length; i++ ) {
// Resolve the subdirectory path to a file system path:
dir = resolve( paths[ i ], subdir );
debug( 'Resolved directory: %s', dir );
debug( 'Reading directory contents...' );
files = readDir( dir );
if ( files instanceof Error ) {
debug( 'Unable to read directory: %s. Error: %s', dir, files.message );
continue;
}
for ( j = 0; j < files.length; j++ ) {
f = files[ j ];
if ( !startsWith( f, filter ) ) {
debug( '%s does not match filter %s. Skipping...', f, filter );
continue;
}
f = resolve( dir, f );
debug( 'Examining path: %s', f );
try {
stats = statSync( f );
if ( stats.isDirectory() ) {
debug( 'Path resolves to a subdirectory.' );
out.push( files[ j ] + '/' );
debug( 'Found a completion: %s', out[ out.length-1 ] );
debug( 'Reading subdirectory contents...' );
sfiles = readDir( f );
if ( sfiles instanceof Error ) {
debug( 'Unable to read subdirectory: %s. Error: %s', f, sfiles.message );
continue;
}
for ( k = 0; k < sfiles.length; k++ ) {
if ( re.test( sfiles[ k ] ) ) { // eslint-disable-line max-depth
// Since the subdirectory contains an `index` file, one can simply "require" the subdirectory, thus eliding the full file path:
debug( 'Subdirectory contains an `index` file.' );
out.push( files[ j ] );
debug( 'Found a completion: %s', out[ out.length-1 ] );
} else if ( sfiles[ k ] === 'package.json' ) {
// Since the subdirectory contains a `package.json` file, we **ASSUME** one can simply "require" the subdirectory, thus eliding the full file path (WARNING: we do NOT explicitly check that the main entry point actually exists!):
debug( 'Subdirectory contains a `package.json` file.' );
out.push( files[ j ] );
debug( 'Found a completion: %s', out[ out.length-1 ] );
}
}
} else if ( stats.isFile() ) {
debug( 'Path resolves to a file.' );
ext = extname( files[ j ] );
if ( contains( exts.length, exts, 1, 0, ext ) ) {
debug( 'File has supported extension: %s', ext );
out.push( files[ j ] );
debug( 'Found a completion: %s', out[ out.length-1 ] );
}
} else {
debug( 'Path resolves to neither a directory nor a file. Skipping path...' );
continue;
}
} catch ( err ) {
debug( 'Error: %s', err.message );
debug( 'Skipping path...' );
continue;
}
}
}
return filter;
}
// EXPORTS //
module.exports = complete;