forked from jperkin/chordpro.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
chordpro-parser.js
252 lines (201 loc) · 5.37 KB
/
chordpro-parser.js
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
/*
todo:
* recognize aliases
* recognize closing tags
* Add attribute to indicate broken words
*/
import { hasValue, trimArray } from "./utilities.js"
const reDirectiveSpec = /{([^:}]*)(:\s*?)?(.*?)}/gi,
reSplitSentenceToTerms = /(.*?)(\[.*?])/gi
class EmptyLine { }
class Directive {
constructor(source) {
if (!source) return
this.Source = source
let split = source.split(reDirectiveSpec).filter(hasValue)
;[this.Type, , this.Detail] = split.filter(hasValue).map(x => x.toString().trim())
}
}
class Comment extends Directive { }
class ChordInfo {
constructor(source) {
const reOutput = /\[([^\:\]]*):?(.*)?\]/.exec(source)
if (reOutput) {
this.Source = reOutput.shift()
this.Symbol = reOutput.shift().replace(":", "")
this.Comment = reOutput.join(" ")
}
else {
this.Source = ""
this.Symbol = ""
this.Comment = ""
}
}
}
class Phrase {
constructor(chord, text) {
this.Chord = chord
this.Text = text
}
}
class Sentence {
constructor(source) {
source = source.toString()
this.Source = source
this.Phrases = []
var connectedChordsPlaceholder = " ",
content = source
.replace(/\]\s*\[/gi, `]${connectedChordsPlaceholder}[`)
content = content.split(reSplitSentenceToTerms)
.map(x => x.trim())
// trim edges of array
// ensure chord is first token and text is last token
// convert tokens to phrases
// ensure proper pattern of chord,text,chord,text...
content = trimArray(content).filter(x => x != "")
if (content[0].indexOf("[") != 0) {
content.unshift("[]")
}
while (content.length > 0) {
var [chord, text] = content
if (chord === undefined) chord = ""
if (text === undefined) text = ""
if (text === connectedChordsPlaceholder) text = ""
this.Phrases.push(new Phrase(new ChordInfo(chord), text))
content.shift()
content.shift()
}
}
}
class Lyric extends Directive {
constructor(type, comment) {
super()
this.Type = type
this.Comment = comment
this.Sentences = []
}
}
class Song {
constructor() {
Object.assign(this, {
Title: "",
Artist: "",
Copyright: "",
Key: "",
License: "",
Comments: [],
Directives: []
})
}
FilterDirectivesByType(type) {
return this.Directives.filter(
p => p.Type.toLowerCase() == type.toLowerCase()
)
}
get Verses() {
return this.FilterDirectivesByType("verse")
}
get Chorii() {
return this.FillterDirectivesByType("chorus")
}
get Choruses() {
return this.Chorii
}
}
const splitToLines = songText => {
let split = songText.toString()
split = split.replace(/[\r\n]+/gim, "\\r")
split = split.split("\\r")
// split = split.replace(/[\r\n]/gim, "\r")
// split = split.split("\r")
split = split.map(l => l.trim())
return split
}
// determine type, return instance of types
// * directive
// * comment
// * empty
// * lyric
// return a class based on type
const preParseLine = line => {
line = line && line.trim()
if (!line || line === "") return new EmptyLine()
if (line.startsWith("#")) return new Comment(line)
if (line.startsWith("{")) return new Directive(line)
return new Sentence(line)
}
class SongParser {
constructor(songText) {
this.Source = songText
}
Parse = function () {
let song = new Song()
let currentDirective = null
let lines = splitToLines(this.Source).map(preParseLine)
function StartNextDirective(next) {
if (currentDirective) {
song.Directives.push(currentDirective)
}
currentDirective = next
}
while (lines.length > 0) {
var line = lines.shift()
switch (true) {
case line instanceof EmptyLine:
StartNextDirective(null)
break
case line instanceof Comment:
// this psace intentionally left blank
break
case line instanceof Directive:
// check for known metadata
// title, artist...
switch (line.Type.toLowerCase()) {
case "title":
song.Title = line.Detail
break
case "artist":
song.Artist = line.Detail
break
case "key":
song.Key = line.Detail
break
case "copyright":
song.Copyright = line.Detail
break
case "license":
song.License = line.Detail
break
case "comment":
song.Comments.push(line.Detail)
break
default:
if (lines[0] instanceof Sentence) {
line = new Lyric(line.Type, line.Detail)
}
StartNextDirective(line)
break
}
break
case line instanceof Sentence:
if (!currentDirective || !(currentDirective instanceof Lyric)) {
StartNextDirective(new Lyric("Verse"))
}
currentDirective.Sentences.push(line)
break
}
}
StartNextDirective()
return song
}
}
function isLyric(l) {
if (l instanceof Lyric) return true
return !!(l.Sentences && l.Sentences.length)
}
const ParseSong = songText => {
const parser = new SongParser(songText)
return parser.Parse()
}
export default ParseSong
export { ParseSong, SongParser, Lyric, isLyric }