public void PartAddSlideUndoRedo() { int size = song.Formatting.MainText.Size; part.AddSlide(); Assert.Equal(2, part.Slides.Count); Assert.Equal(size, part.Slides[1].Size); Assert.True(String.IsNullOrEmpty(part.Slides[1].Text)); Assert.Equal(1, UndoStackSize); Undo(); Assert.Equal(1, part.Slides.Count); Assert.Equal("SimpleLine", part.Slides[0].Text); Redo(); Assert.Equal(2, part.Slides.Count); }
private void FinishPart(Song song, string key, List<LineGroup> lineGroups, LineGroup lastLineGroup) { if (lastLineGroup != null) lineGroups.Add(lastLineGroup); if (lineGroups.Count == 0) throw new SongFormatException("File is not a valid OpenSong song: Empty part"); foreach (var lg in lineGroups) { if (lg.Lines.Count == 0) lg.Lines.Add(new Line { Text = "" }); } var noNumbers = !lineGroups[0].Lines[0].Number.HasValue; if (noNumbers && lineGroups.Any(lg => lg.Lines.Any(l => l.Number.HasValue))) throw new SongFormatException("File is not a valid OpenSong song: Found mixed numbered and unnumbered lines."); int maxVerseNumber; if (noNumbers) { maxVerseNumber = 1; } else { maxVerseNumber = lineGroups.Max(lg => lg.Lines.Max(l => l.Number.Value)); } for (int i = 1; i <= maxVerseNumber; i++) { if (!noNumbers && !lineGroups.Any(lg => lg.Lines.Any(l => l.Number == i))) continue; string name; if (noNumbers) name = GetPartName(key); else name = GetPartName(key + i.ToString()); var part = new SongPart(song, name); var slide = new SongSlide(song); slide.Text = String.Join("\n", lineGroups. Where(lg => lg.Lines.Any(l => noNumbers || l.Number == i)). Select(lg => PrepareLine(lg.Lines.Where(l => noNumbers || l.Number == i).Single().Text, lg.Chords))); part.AddSlide(slide); // apply slide breaks int ind; while ((ind = slide.Text.IndexOf("||")) >= 0) { slide.Text = slide.Text.Remove(ind, 2); part.SplitSlide(slide, ind); } // apply line breaks foreach (var s in part.Slides) { s.Text = s.Text.Replace("|", "\n"); } song.AddPart(part); } }
public override void Read(Song song, Stream stream) { if (song == null) { throw new ArgumentNullException("song"); } if (stream == null) { throw new ArgumentNullException("stream"); } using (StreamReader reader = new StreamReader(stream, Encoding.UTF8)) { string line; int lineType = 0; List <string> verseLineList = null; string verseType = null; bool checkFirstLine = false; string copyright = null; while ((line = reader.ReadLine()) != null) { var cleanLine = line.Trim(); if (String.IsNullOrEmpty(cleanLine)) { if (lineType == 0) { continue; } else if (verseLineList != null) // empty line and there were lyrics before -> create part { var part = new SongPart(song, verseType); var slide = new SongSlide(song); slide.Text = String.Join("\n", verseLineList.ToArray()); part.AddSlide(slide); song.AddPart(part); song.AddPartToOrder(part); verseLineList = null; } } else // not an empty line { if (lineType == 0) // very first line -> song title { song.Title = cleanLine; lineType++; } else if (lineType == 1) // lyrics/parts { if (cleanLine.StartsWith("CCLI")) // end of lyrics, start of copyright information { lineType++; string num = cleanLine.Split(' ').Last(); song.CcliNumber = int.Parse(num); } else if (verseLineList == null) { verseType = GetPartName(cleanLine, out checkFirstLine); verseLineList = new List <string>(); } else { if (checkFirstLine) { if (!CheckFirstLine(cleanLine, ref verseType)) { // add text if it was not a part name verseLineList.Add(line); } checkFirstLine = false; } else { verseLineList.Add(line); } } } else if (lineType == 2) // copyright information { if (copyright == null) { copyright = cleanLine; } else { copyright += "\n" + cleanLine; } } } } song.Copyright = copyright; } }
// documentation taken from http://bazaar.launchpad.net/~openlp-core/openlp/trunk/view/head:/openlp/plugins/songs/lib/cclifileimport.py // [File] // USR file format first line // Type= // Indicates the file type // e.g. Type=SongSelect Import File // Version=3.0 // File format version // [S A2672885] // Contains the CCLI Song number e.g. 2672885 // Title= // Contains the song title (e.g. Title=Above All) // Author= // Contains a | delimited list of the song authors // e.g. Author=LeBlanc, Lenny | Baloche, Paul // Copyright= // Contains a | delimited list of the song copyrights // e.g. Copyright=1999 Integrity's Hosanna! Music | // LenSongs Publishing (Verwaltet von Gerth Medien // Musikverlag) // Admin= // Contains the song administrator // e.g. Admin=Gerth Medien Musikverlag // Themes= // Contains a /t delimited list of the song themes // e.g. Themes=Cross/tKingship/tMajesty/tRedeemer // Keys= // Contains the keys in which the music is played?? // e.g. Keys=A // Fields= // Contains a list of the songs fields in order /t delimited // e.g. Fields=Vers 1/tVers 2/tChorus 1/tAndere 1 // Words= // Contains the songs various lyrics in order as shown by the // Fields description // e.g. Words=Above all powers.... [/n = CR, /n/t = CRLF] public override void Read(Song song, Stream stream) { if (song == null) { throw new ArgumentNullException("song"); } if (stream == null) { throw new ArgumentNullException("stream"); } using (StreamReader reader = new StreamReader(stream, Encoding.UTF8)) { string line; string authors = null; string copyright = null; string[] fieldsList = null; string[] wordsList = null; while ((line = reader.ReadLine()) != null) { if (line.StartsWith("[S ")) { // CCLI Song number int end = line.IndexOf(']'); if (end > 1) { string num = line.Substring(3, end - 3); if (num.StartsWith("A")) { num = num.Substring(1); } song.CcliNumber = int.Parse(num); } } else if (line.StartsWith("Title=")) { song.Title = line.Substring("Title=".Length).Trim(); } else if (line.StartsWith("Author=")) { var authorList = line.Substring("Author=".Length).Trim().Split('|').Select(s => s.Trim()).ToArray(); authors = String.Join(", ", authorList); } else if (line.StartsWith("Copyright=")) { copyright = line.Substring("Copyright=".Length).Trim(); } else if (line.StartsWith("Themes=")) { var themesList = line.Substring("Themes=".Length).Trim().Replace(" | ", "/t"). Split(new string[] { "/t" }, StringSplitOptions.None).Select(s => s.Trim()).ToArray(); song.Category = String.Join(", ", themesList); } else if (line.StartsWith("Fields=")) { fieldsList = line.Substring("Fields=".Length).Trim().Split(new string[] { "/t" }, StringSplitOptions.None).Select(s => s.Trim()).ToArray(); } else if (line.StartsWith("Words=")) { wordsList = line.Substring("Words=".Length).Trim().Split(new string[] { "/t" }, StringSplitOptions.None).Select(s => s.Trim()).ToArray(); } // Unhandled usr keywords: Type, Version, Admin, Keys } if (fieldsList == null || wordsList == null || authors == null || copyright == null) { throw new SongFormatException("Missing field in USR file."); } var partNum = (fieldsList.Length < wordsList.Length) ? fieldsList.Length : wordsList.Length; for (int i = 0; i < partNum; i++) { bool checkFirstLine; var partName = GetPartName(fieldsList[i], out checkFirstLine); string text = wordsList[i].Replace("/n", "\n").Replace(" | ", "\n").TrimEnd(); if (checkFirstLine) { var lines = text.Split('\n'); var firstLine = lines[0].Trim(); if (CheckFirstLine(firstLine, ref partName)) { text = text.Substring(text.IndexOf('\n') + 1); } } var part = new SongPart(song, partName); var slide = new SongSlide(song); slide.Text = text; part.AddSlide(slide); song.AddPart(part); song.AddPartToOrder(part); } song.Copyright = authors + "\n© " + copyright; } }
// documentation taken from http://bazaar.launchpad.net/~openlp-core/openlp/trunk/view/head:/openlp/plugins/songs/lib/cclifileimport.py // [File] // USR file format first line // Type= // Indicates the file type // e.g. Type=SongSelect Import File // Version=3.0 // File format version // [S A2672885] // Contains the CCLI Song number e.g. 2672885 // Title= // Contains the song title (e.g. Title=Above All) // Author= // Contains a | delimited list of the song authors // e.g. Author=LeBlanc, Lenny | Baloche, Paul // Copyright= // Contains a | delimited list of the song copyrights // e.g. Copyright=1999 Integrity's Hosanna! Music | // LenSongs Publishing (Verwaltet von Gerth Medien // Musikverlag) // Admin= // Contains the song administrator // e.g. Admin=Gerth Medien Musikverlag // Themes= // Contains a /t delimited list of the song themes // e.g. Themes=Cross/tKingship/tMajesty/tRedeemer // Keys= // Contains the keys in which the music is played?? // e.g. Keys=A // Fields= // Contains a list of the songs fields in order /t delimited // e.g. Fields=Vers 1/tVers 2/tChorus 1/tAndere 1 // Words= // Contains the songs various lyrics in order as shown by the // Fields description // e.g. Words=Above all powers.... [/n = CR, /n/t = CRLF] public override void Read(Song song, Stream stream) { if (song == null) throw new ArgumentNullException("song"); if (stream == null) throw new ArgumentNullException("stream"); using (StreamReader reader = new StreamReader(stream, Encoding.UTF8)) { string line; string authors = null; string copyright = null; string[] fieldsList = null; string[] wordsList = null; while ((line = reader.ReadLine()) != null) { if (line.StartsWith("[S ")) { // CCLI Song number int end = line.IndexOf(']'); if (end > 1) { string num = line.Substring(3, end - 3); if (num.StartsWith("A")) num = num.Substring(1); song.CcliNumber = int.Parse(num); } } else if (line.StartsWith("Title=")) { song.Title = line.Substring("Title=".Length).Trim(); } else if (line.StartsWith("Author=")) { var authorList = line.Substring("Author=".Length).Trim().Split('|').Select(s => s.Trim()).ToArray(); authors = String.Join(", ", authorList); } else if (line.StartsWith("Copyright=")) { copyright = line.Substring("Copyright=".Length).Trim(); } else if (line.StartsWith("Themes=")) { var themesList = line.Substring("Themes=".Length).Trim().Replace(" | ", "/t"). Split(new string[] { "/t" }, StringSplitOptions.None).Select(s => s.Trim()).ToArray(); song.Category = String.Join(", ", themesList); } else if (line.StartsWith("Fields=")) { fieldsList = line.Substring("Fields=".Length).Trim().Split(new string[] {"/t"}, StringSplitOptions.None).Select(s => s.Trim()).ToArray(); } else if (line.StartsWith("Words=")) { wordsList = line.Substring("Words=".Length).Trim().Split(new string[] { "/t" }, StringSplitOptions.None).Select(s => s.Trim()).ToArray(); } // Unhandled usr keywords: Type, Version, Admin, Keys } if (fieldsList == null || wordsList == null || authors == null || copyright == null) { throw new SongFormatException("Missing field in USR file."); } var partNum = (fieldsList.Length < wordsList.Length) ? fieldsList.Length : wordsList.Length; for (int i = 0; i < partNum; i++) { bool checkFirstLine; var partName = GetPartName(fieldsList[i], out checkFirstLine); string text = wordsList[i].Replace("/n", "\n").Replace(" | ", "\n").TrimEnd(); if (checkFirstLine) { var lines = text.Split('\n'); var firstLine = lines[0].Trim(); if (CheckFirstLine(firstLine, ref partName)) { text = text.Substring(text.IndexOf('\n') + 1); } } var part = new SongPart(song, partName); var slide = new SongSlide(song); slide.Text = text; part.AddSlide(slide); song.AddPart(part); song.AddPartToOrder(part); } song.Copyright = authors + "\n© " + copyright; } }
public override void Read(Song song, Stream stream) { if (song == null) throw new ArgumentNullException("song"); if (stream == null) throw new ArgumentNullException("stream"); using (StreamReader reader = new StreamReader(stream, Encoding.UTF8)) { string line; int lineType = 0; List<string> verseLineList = null; string verseType = null; bool checkFirstLine = false; string copyright = null; while ((line = reader.ReadLine()) != null) { var cleanLine = line.Trim(); if (String.IsNullOrEmpty(cleanLine)) { if (lineType == 0) { continue; } else if (verseLineList != null) // empty line and there were lyrics before -> create part { var part = new SongPart(song, verseType); var slide = new SongSlide(song); slide.Text = String.Join("\n", verseLineList.ToArray()); part.AddSlide(slide); song.AddPart(part); song.AddPartToOrder(part); verseLineList = null; } } else // not an empty line { if (lineType == 0) // very first line -> song title { song.Title = cleanLine; lineType++; } else if (lineType == 1) // lyrics/parts { if (cleanLine.StartsWith("CCLI")) // end of lyrics, start of copyright information { lineType++; string num = cleanLine.Split(' ').Last(); song.CcliNumber = int.Parse(num); } else if (verseLineList == null) { verseType = GetPartName(cleanLine, out checkFirstLine); verseLineList = new List<string>(); } else { if (checkFirstLine) { if (!CheckFirstLine(cleanLine, ref verseType)) { // add text if it was not a part name verseLineList.Add(line); } checkFirstLine = false; } else { verseLineList.Add(line); } } } else if (lineType == 2) // copyright information { if (copyright == null) { copyright = cleanLine; } else { copyright += "\n" + cleanLine; } } } } song.Copyright = copyright; } }
private void FinishPart(Song song, string key, List <LineGroup> lineGroups, LineGroup lastLineGroup) { if (lastLineGroup != null) { lineGroups.Add(lastLineGroup); } if (lineGroups.Count == 0) { throw new SongFormatException("File is not a valid OpenSong song: Empty part"); } foreach (var lg in lineGroups) { if (lg.Lines.Count == 0) { lg.Lines.Add(new Line { Text = "" }); } } var noNumbers = !lineGroups[0].Lines[0].Number.HasValue; if (noNumbers && lineGroups.Any(lg => lg.Lines.Any(l => l.Number.HasValue))) { throw new SongFormatException("File is not a valid OpenSong song: Found mixed numbered and unnumbered lines."); } int maxVerseNumber; if (noNumbers) { maxVerseNumber = 1; } else { maxVerseNumber = lineGroups.Max(lg => lg.Lines.Max(l => l.Number.Value)); } for (int i = 1; i <= maxVerseNumber; i++) { if (!noNumbers && !lineGroups.Any(lg => lg.Lines.Any(l => l.Number == i))) { continue; } string name; if (noNumbers) { name = GetPartName(key); } else { name = GetPartName(key + i.ToString()); } var part = new SongPart(song, name); var slide = new SongSlide(song); slide.Text = String.Join("\n", lineGroups. Where(lg => lg.Lines.Any(l => noNumbers || l.Number == i)). Select(lg => PrepareLine(lg.Lines.Where(l => noNumbers || l.Number == i).Single().Text, lg.Chords))); part.AddSlide(slide); // apply slide breaks int ind; while ((ind = slide.Text.IndexOf("||")) >= 0) { slide.Text = slide.Text.Remove(ind, 2); part.SplitSlide(slide, ind); } // apply line breaks foreach (var s in part.Slides) { s.Text = s.Text.Replace("|", "\n"); } song.AddPart(part); } }
public void Read(Song song, Stream stream) { if (song == null) { throw new ArgumentNullException("song"); } if (stream == null) { throw new ArgumentNullException("stream"); } using (StreamReader reader = new StreamReader(stream, Encoding.Default, true)) { string line; bool inTab = false; SongPart chorusPart = null; string currentText = null; string nextPartName = null; string currentPartName = null; while ((line = reader.ReadLine()) != null) { var trimmed = line.Trim(); if (trimmed.StartsWith("#")) { continue; // ignore comment line } if (trimmed.StartsWith("{") && trimmed.EndsWith("}")) { var tag = trimmed.Substring(1, trimmed.Length - 2); if (tag.StartsWith("title:") || tag.StartsWith("t:")) { song.Title = tag.Substring(tag.IndexOf(':') + 1); nextPartName = null; continue; } else if (tag.StartsWith("subtitle:") || tag.StartsWith("st:")) { song.Copyright = tag.Substring(tag.IndexOf(':') + 1); nextPartName = null; continue; } else if (tag.StartsWith("comment:") || tag.StartsWith("c:") || tag.StartsWith("comment_italic:") || tag.StartsWith("ci:") || tag.StartsWith("comment_box:") || tag.StartsWith("cb:")) { if (tag.EndsWith(":") && chorusPart == null) { // we found a comment that might be a part name and we're not in the chorus // -> remember it for later use var name = tag.Substring(tag.IndexOf(':') + 1); nextPartName = name.Substring(0, name.Length - 1); } continue; } else if (tag.StartsWith("start_of_tab") || tag.StartsWith("sot")) { inTab = true; nextPartName = null; continue; } else if (tag.StartsWith("end_of_tab") || tag.StartsWith("eot")) { inTab = false; nextPartName = null; continue; } else if (tag.StartsWith("start_of_chorus") || tag.StartsWith("soc")) { var chorusName = "Chorus"; if (song.FindPartByName(chorusName) != null) { int i = 2; while (song.FindPartByName(chorusName + " " + i.ToString()) != null) { i++; } chorusName = chorusName + " " + i.ToString(); } chorusPart = new SongPart(song, chorusName); nextPartName = null; continue; } else if (tag.StartsWith("end_of_chorus") || tag.StartsWith("eoc")) { if (chorusPart != null) { // commit slide and part if (currentText != null) { chorusPart.AddSlide(new SongSlide(song) { Text = currentText }); currentText = null; } song.AddPart(chorusPart); chorusPart = null; } nextPartName = null; continue; } else if (tag.StartsWith("define")) { // ignore nextPartName = null; continue; } // else accept {...} as normal text } if (!inTab) { if (trimmed == String.Empty) { nextPartName = null; if (currentText != null) { if (chorusPart != null) // in chorus { // commit slide chorusPart.AddSlide(new SongSlide(song) { Text = currentText }); currentText = null; } else { // commit part var partName = currentPartName == null?FindUnusedPartName(song) : currentPartName; var part = new SongPart(song, partName); part.AddSlide(new SongSlide(song) { Text = currentText }); song.AddPart(part); currentText = null; } } } else { // actual text/chord line -> add to current text // need no further parsing because chords are already in correct format (square brackets) if (currentText == null) { currentText = trimmed; // use previously remembered part name for this part currentPartName = nextPartName; nextPartName = null; } else { currentText += "\n" + trimmed; } } } } // TODO: get rid of code duplication if (currentText != null) { if (chorusPart != null) // in chorus { // commit slide and part chorusPart.AddSlide(new SongSlide(song) { Text = currentText }); currentText = null; song.AddPart(chorusPart); } else { // commit part var partName = currentPartName == null?FindUnusedPartName(song) : currentPartName; var part = new SongPart(song, partName); part.AddSlide(new SongSlide(song) { Text = currentText }); song.AddPart(part); currentText = null; } } } // add each part to order foreach (SongPart part in song.Parts) { song.AddPartToOrder(part); } }
public void Read(Song song, Stream stream) { if (song == null) throw new ArgumentNullException("song"); if (stream == null) throw new ArgumentNullException("stream"); using (StreamReader reader = new StreamReader(stream, Encoding.Default, true)) { string line; bool inTab = false; SongPart chorusPart = null; string currentText = null; string nextPartName = null; string currentPartName = null; while ((line = reader.ReadLine()) != null) { var trimmed = line.Trim(); if (trimmed.StartsWith("#")) { continue; // ignore comment line } if (trimmed.StartsWith("{") && trimmed.EndsWith("}")) { var tag = trimmed.Substring(1, trimmed.Length - 2); if (tag.StartsWith("title:") || tag.StartsWith("t:")) { song.Title = tag.Substring(tag.IndexOf(':') + 1); nextPartName = null; continue; } else if (tag.StartsWith("subtitle:") || tag.StartsWith("st:")) { song.Copyright = tag.Substring(tag.IndexOf(':') + 1); nextPartName = null; continue; } else if (tag.StartsWith("comment:") || tag.StartsWith("c:") || tag.StartsWith("comment_italic:") || tag.StartsWith("ci:") || tag.StartsWith("comment_box:") || tag.StartsWith("cb:")) { if (tag.EndsWith(":") && chorusPart == null) { // we found a comment that might be a part name and we're not in the chorus // -> remember it for later use var name = tag.Substring(tag.IndexOf(':') + 1); nextPartName = name.Substring(0, name.Length - 1); } continue; } else if (tag.StartsWith("start_of_tab") || tag.StartsWith("sot")) { inTab = true; nextPartName = null; continue; } else if (tag.StartsWith("end_of_tab") || tag.StartsWith("eot")) { inTab = false; nextPartName = null; continue; } else if (tag.StartsWith("start_of_chorus") || tag.StartsWith("soc")) { var chorusName = "Chorus"; if (song.FindPartByName(chorusName) != null) { int i = 2; while (song.FindPartByName(chorusName + " " + i.ToString()) != null) { i++; } chorusName = chorusName + " " + i.ToString(); } chorusPart = new SongPart(song, chorusName); nextPartName = null; continue; } else if (tag.StartsWith("end_of_chorus") || tag.StartsWith("eoc")) { if (chorusPart != null) { // commit slide and part if (currentText != null) { chorusPart.AddSlide(new SongSlide(song) { Text = currentText }); currentText = null; } song.AddPart(chorusPart); chorusPart = null; } nextPartName = null; continue; } else if (tag.StartsWith("define")) { // ignore nextPartName = null; continue; } // else accept {...} as normal text } if (!inTab) { if (trimmed == String.Empty) { nextPartName = null; if (currentText != null) { if (chorusPart != null) // in chorus { // commit slide chorusPart.AddSlide(new SongSlide(song) { Text = currentText }); currentText = null; } else { // commit part var partName = currentPartName == null ? FindUnusedPartName(song) : currentPartName; var part = new SongPart(song, partName); part.AddSlide(new SongSlide(song) { Text = currentText }); song.AddPart(part); currentText = null; } } } else { // actual text/chord line -> add to current text // need no further parsing because chords are already in correct format (square brackets) if (currentText == null) { currentText = trimmed; // use previously remembered part name for this part currentPartName = nextPartName; nextPartName = null; } else { currentText += "\n" + trimmed; } } } } // TODO: get rid of code duplication if (currentText != null) { if (chorusPart != null) // in chorus { // commit slide and part chorusPart.AddSlide(new SongSlide(song) { Text = currentText }); currentText = null; song.AddPart(chorusPart); } else { // commit part var partName = currentPartName == null ? FindUnusedPartName(song) : currentPartName; var part = new SongPart(song, partName); part.AddSlide(new SongSlide(song) { Text = currentText }); song.AddPart(part); currentText = null; } } } // add each part to order foreach (SongPart part in song.Parts) { song.AddPartToOrder(part); } }
private void AddSlide(SongPart part) { this.StructureTree.SelectItem(part.AddSlide()); }