forked from wechaty/wechaty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate-license.ts
executable file
·155 lines (134 loc) · 4.11 KB
/
update-license.ts
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
#!/usr/bin/env ts-node
const LICENSE = `/**
* Wechaty - https://github.com/chatie/wechaty
*
* @copyright 2016-2018 Huan LI <zixia@zixia.net>
*
* 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.
*
*/`
import {
createReadStream,
createWriteStream,
link as linkCallback,
unlink as unlinkCallback,
} from 'fs'
import {
Transform,
TransformOptions,
} from 'stream'
import { promisify } from 'util'
import * as globCallback from 'glob'
class LicenseTransformer extends Transform {
private lineBuf = ''
private lineNum = 0
private updating = false
private updated = false
constructor (options?: TransformOptions) {
super(options)
}
public _transform (chunk: any, _: string /* encoding: string */, done: () => void) {
if (this.updated) {
this.push(chunk)
} else {
const updatedChunk = this.updateChunk(chunk)
this.push(updatedChunk)
}
done()
}
private updateChunk (chunk: any): string {
const buffer = this.lineBuf + chunk.toString()
this.lineBuf = ''
if (!buffer) {
console.error('no data')
return ''
}
const updatedLineList: string[] = []
buffer
.split(/\n/)
.forEach(line => {
if (this.lineNum === 0 && line.startsWith('#!')) {
updatedLineList.push(line)
} else if (this.updated) {
updatedLineList.push(line)
} else if (this.updating) {
if (/\*\//.test(line)) {
updatedLineList.push(line.replace(/.*\*\//, LICENSE))
this.updating = false
this.updated = true
} else {
// drop the old comments
}
} else { // not updating and not updated. searching...
if (!line) {
updatedLineList.push(line)
} else if (/\s*\/\*\*/.test(line)) { // comment start
if (/\*\//.test(line)) { // comment end at the same line with start
updatedLineList.push(line.replace(/\/\*\*.*\*\//, LICENSE))
this.updated = true
} else {
this.updating = true
}
} else { // not a comment. INSERT here
updatedLineList.push(LICENSE)
updatedLineList.push(line)
this.updated = true
}
}
this.lineBuf = line
this.lineNum++
})
return updatedLineList.join('\n')
}
public _flush (done: () => void) {
if (this.lineBuf) {
this.push(this.lineBuf)
this.lineBuf = ''
}
done()
}
}
async function updateLicense (file: string): Promise<void> {
const tmpFile = file + `.${process.pid}.tmp`
const readStream = createReadStream(file)
const writeStream = createWriteStream(tmpFile)
const tranStream = new LicenseTransformer()
console.log(`Updating LICENSE for file ${file}...`)
await new Promise<void>((resolve, reject) => {
readStream
.pipe(tranStream)
.pipe(writeStream)
.on('close', resolve)
.on('error', reject)
})
await promisify(unlinkCallback)(file)
await promisify(linkCallback)(tmpFile, file)
await promisify(unlinkCallback)(tmpFile)
}
async function glob (pattern: string): Promise<string[]> {
return promisify<string, string[]>(globCallback as any)(pattern)
}
async function main (): Promise<number> {
const pattern = '{bin/**/*.ts,examples/**/*.{js,ts},scripts/**/*.{ts,js},src/**/*.{ts,js},tests/**/*.ts}'
// const pattern = 't.ts'
const srcFileList = await glob(pattern)
const promiseList = srcFileList.map(updateLicense)
await Promise.all(promiseList)
return 0
}
main()
.then(process.exit)
.catch(e => {
console.error(e)
process.exit(1)
})