Spaces:
Sleeping
Sleeping
File size: 10,873 Bytes
d605f27 |
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 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 |
import {DOMParser, XMLSerializer} from "xmldom";
import {MusicNotation} from "@k-l-lambda/music-widgets";
import {MIDI} from "@k-l-lambda/music-widgets";
import {Readable} from "stream";
import CRC32 from "crc-32";
import npmPackage from "../package.json";
import {xml2ly, engraveSvg, LilyProcessOptions} from "./lilyCommands";
import {LilyDocument, LilyTerms, docLocationSet} from "../inc/lilyParser";
import * as staffSvg from "../inc/staffSvg";
import {SingleLock} from "../inc/mutex";
import * as LilyNotation from "../inc/lilyNotation";
import {svgToPng} from "./canvas";
import LogRecorder from "../inc/logRecorder";
import ScoreJSON from "../inc/scoreJSON";
import {LilyDocumentAttributeReadOnly} from "../inc/lilyParser/lilyDocument";
import {Block} from "../inc/lilyParser/lilyTerms";
interface GrammarParser {
parse (source: string): any;
};
const markupLily = (source: string, markup: string, lilyParser: GrammarParser): string => {
const docMarkup = new LilyDocument(lilyParser.parse(markup));
const docSource = new LilyDocument(lilyParser.parse(source));
/*// copy attributes
const attrS = docSource.globalAttributes() as LilyDocumentAttribute;
const attrM = docMarkup.globalAttributes({readonly: true}) as LilyDocumentAttributeReadOnly;
[
"staffSize", "paperWidth", "paperHeight",
"topMargin", "bottomMargin", "leftMargin", "rightMargin",
"systemSpacing", "topMarkupSpacing", "raggedLast", "raggedBottom", "raggedLastBottom",
"printPageNumber",
].forEach(field => {
if (attrM[field] !== undefined) {
if (typeof attrS[field].value === "object" && attrS[field].value && (attrS[field].value as any).set)
(attrS[field].value as any).set(attrM[field]);
else
attrS[field].value = attrM[field];
}
});
// execute commands list
const commands = docMarkup.root.getField("LotusCommands");
const cmdList = commands && commands.value && commands.value.args && commands.value.args[0].body;
if (cmdList && Array.isArray(cmdList)) {
for (const command of cmdList) {
if (command.exp && docSource[command.exp])
docSource[command.exp]();
else
console.warn("unexpected markup command:", command);
}
}
// copy LotusOption assignments
const assignments = docMarkup.root.entries.filter(term => term instanceof LilyTerms.Assignment && /^LotusOption\..+/.test(term.key.toString()));
assignments.forEach(assignment => docSource.root.sections.push(assignment.clone()));*/
docSource.markup(docMarkup);
return docSource.toString();
};
const xmlBufferToLy = async (xml: Buffer, options: LilyProcessOptions = {}): Promise<string> => {
const bom = (xml[0] << 8 | xml[1]);
const utf16 = bom === 0xfffe;
const content = xml.toString(utf16 ? "utf16le" : "utf8");
return await xml2ly(content, {replaceEncoding: utf16, ...options});
};
const unescapeStringExp = exp => exp && exp.toString();
interface SheetNotationResult extends Partial<ScoreJSON> {
midi: MIDI.MidiData;
midiNotation: MusicNotation.NotationData;
//sheetNotation: staffSvg.StaffNotation.SheetNotation;
lilyDocument: LilyDocument;
bakingImages?: Readable[];
};
const makeSheetNotation = async (source: string, lilyParser: GrammarParser, {withNotation = false, logger, lilyDocument, includeFolders, baking}: {
withNotation?: boolean,
logger?: LogRecorder,
lilyDocument?: LilyDocument,
includeFolders?: string[],
baking?: boolean,
} = {}): Promise<SheetNotationResult> => {
let midi = null;
let midiNotation = null;
const pages = [];
const hashTable = {};
const bakingImages = [];
const t0 = Date.now();
type ParserArguments = {
attributes: LilyDocumentAttributeReadOnly,
tieLocations: Set<string>,
briefChordLocations: Set<string>,
lyricLocations: Set<string>,
};
const argsGen = new SingleLock<ParserArguments>(true);
const engraving = await engraveSvg(source, {
includeFolders,
// do some work during lilypond process running to save time
onProcStart: () => {
//console.log("tp.0:", Date.now() - t0);
if (!lilyDocument) {
lilyDocument = new LilyDocument(lilyParser.parse(source));
lilyDocument.interpret();
}
const attributes = lilyDocument.globalAttributes({readonly: true}) as LilyDocumentAttributeReadOnly;
const tieLocations = docLocationSet(lilyDocument.getTiedNoteLocations2());
const briefChordLocations = docLocationSet(lilyDocument.getBriefChordLocations());
const lyricLocations = docLocationSet(lilyDocument.getLyricLocations());
argsGen.release({attributes, tieLocations, briefChordLocations, lyricLocations});
//console.log("tp.1:", Date.now() - t0);
},
onMidiRead: midi_ => {
//console.log("tm.0:", Date.now() - t0);
midi = midi_;
if (withNotation)
midiNotation = midi && MusicNotation.Notation.parseMidi(midi);
//console.log("tm.1:", Date.now() - t0);
},
onSvgRead: async (index, svg) => {
//console.log("ts.0:", Date.now() - t0);
const args = await argsGen.wait();
const page = staffSvg.parseSvgPage(svg, source, {DOMParser, logger, ...args});
pages[index] = page.structure;
Object.assign(hashTable, page.hashTable);
//console.log("ts.1:", Date.now() - t0);
},
});
logger.append("scoreMaker.profile.engraving", {cost: Date.now() - t0});
logger.append("lilypond.log", engraving.logs);
const doc = new staffSvg.SheetDocument({pages});
staffSvg.postProcessSheetDocument(doc, lilyDocument);
if (baking) {
await Promise.all(engraving.svgs.map(async (svg, index) => {
const svgText = staffSvg.turnRawSvgWithSheetDocument(svg, pages[index], {DOMParser, XMLSerializer});
bakingImages[index] = await svgToPng(Buffer.from(svgText));
}));
}
const midiMusic = lilyDocument.interpret().midiMusic;
const {attributes} = await argsGen.wait();
const meta = {
title: unescapeStringExp(attributes.title),
composer: unescapeStringExp(attributes.composer),
pageSize: doc.pageSize,
pageCount: doc.pages.length,
staffSize: attributes.staffSize as number,
trackInfos: midiMusic && midiMusic.trackContextDicts,
};
/*const t00 = Date.now();
const sheetNotation = staffSvg.StaffNotation.parseNotationFromSheetDocument(doc, {logger});
// correct notation time by location-tick table from lily document
const tickTable = lilyDocument.getLocationTickTable();
staffSvg.StaffNotation.assignTickByLocationTable(sheetNotation, tickTable);
console.log("parseNotationFromSheetDocument cost:", Date.now() - t00);*/
return {
midi,
bakingImages: baking ? bakingImages : null,
midiNotation,
//sheetNotation,
meta,
doc,
hashTable,
lilyDocument,
};
};
interface MakerOptions {
midi: MIDI.MidiData;
logger: LogRecorder;
includeFolders: string[];
baking: boolean;
ignoreNotation: boolean;
};
interface MakerResult {
bakingImages?: Readable[],
score: Partial<ScoreJSON>,
};
// non-negative crc-32
const hashString = (str: string): number => {
const value = CRC32.str(str);
return value < 0 ? 0x100000000 + value : value;
};
const makeScore = async (
source: string,
lilyParser: GrammarParser,
{midi, logger, baking = false, includeFolders, ignoreNotation = false}: Partial<MakerOptions> = {},
): Promise<MakerResult> => {
const t0 = Date.now();
const hash = hashString(source);
const foldData = await makeSheetNotation(source, lilyParser, {logger, includeFolders, baking});
const {meta, doc, hashTable, bakingImages, lilyDocument} = foldData;
midi = midi || foldData.midi;
const lilyNotation = !ignoreNotation && lilyDocument.interpret().getNotation();
if (ignoreNotation || !midi || !lilyNotation) {
if (!ignoreNotation) {
if (!midi)
console.warn("Neither lilypond or external arguments did not offer MIDI data, score maker finished incompletely.");
if (!lilyNotation)
console.warn("lilyNotation parsing failed, score maker finished incompletely.");
}
return {
score: {
version: npmPackage.version,
hash,
meta,
doc,
hashTable,
},
};
}
const t5 = Date.now();
const matcher = await LilyNotation.matchWithExactMIDI(lilyNotation, midi);
logger.append("scoreMaker.profile.matching", {cost: Date.now() - t5});
if (logger && logger.enabled) {
const cis = new Set(Array(matcher.criterion.notes.length).keys());
matcher.path.forEach(ci => cis.delete(ci));
const omitC = cis.size;
const omitS = matcher.path.filter(ci => ci < 0).length;
const coverage = ((matcher.criterion.notes.length - omitC) / matcher.criterion.notes.length)
* ((matcher.sample.notes.length - omitS) / matcher.sample.notes.length);
logger.append("makeScore.match", {coverage, omitC, omitS, path: matcher.path});
}
doc.updateMatchedTokens(lilyNotation.idSet);
// idTrackMap is useless in bundled score
delete lilyNotation.idTrackMap;
if (baking)
doc.pruneForBakingMode();
logger.append("scoreMaker.profile.full", {cost: Date.now() - t0});
return {
bakingImages,
score: {
version: npmPackage.version,
hash,
meta,
doc,
hashTable: !baking ? hashTable : null,
lilyNotation,
},
};
};
const makeMIDI = async (source: string, lilyParser: GrammarParser, {unfoldRepeats = false, fixNestedRepeat = false, includeFolders = undefined} = {}): Promise<MIDI.MidiData> => {
const lilyDocument = new LilyDocument(lilyParser.parse(source));
if (fixNestedRepeat)
lilyDocument.fixNestedRepeat();
if (unfoldRepeats)
lilyDocument.unfoldRepeats();
const score = lilyDocument.root.getBlock("score");
if (score) {
// remove layout block to save time
score.body = score.body.filter(term => !(term instanceof LilyTerms.Block && term.head === "\\layout"));
// remove invalid tempo
const midi: any = score.body.find(term => term instanceof LilyTerms.Block && term.head === "\\midi");
if (midi)
midi.body = midi.body.filter(term => !(term instanceof LilyTerms.Tempo && term.beatsPerMinute > 200));
}
const markupSource = lilyDocument.toString();
//console.log("markupSource:", markupSource);
return new Promise((resolve, reject) => engraveSvg(markupSource, {
includeFolders,
onMidiRead: resolve,
}).catch(reject));
};
const makeArticulatedMIDI = async (source: string, lilyParser: GrammarParser, {ignoreRepeats = true, includeFolders = undefined} = {}): Promise<MIDI.MidiData> => {
const lilyDocument = new LilyDocument(lilyParser.parse(source));
if (ignoreRepeats)
lilyDocument.removeRepeats();
lilyDocument.articulateMIDIOutput();
// remove layout block to save time
lilyDocument.root.sections = lilyDocument.root.sections.filter(section => !(section instanceof Block)
|| !(section.head === "\\score")
|| section.isMIDIDedicated);
const markupSource = lilyDocument.toString();
//console.log("markupSource:", markupSource);
return new Promise((resolve, reject) => engraveSvg(markupSource, {
includeFolders,
onMidiRead: resolve,
}).catch(reject));
};
export {
markupLily,
xmlBufferToLy,
makeScore,
makeMIDI,
makeArticulatedMIDI,
};
|