/// <summary>
        ///   Prepares an updated license header before effectively replacing the old one based on the following rules:
        ///   <para>
        ///     If there's a comment right at the beginning of the file, we need to add an empty line so that the comment
        ///     doesn't become a part of the header.
        ///   </para>
        ///   <para>If there already exists an empty line we don't have to add another one.</para>
        /// </summary>
        /// <param name="headerText">The new header text.</param>
        /// <param name="currentHeaderText">The old, already existing, header text.</param>
        /// <param name="commentParser">An <see cref="ICommentParser" /> instance required for enforcing the described rules.</param>
        /// <returns></returns>
        public static string Prepare(string headerText, string currentHeaderText, ICommentParser commentParser)
        {
            var lineEndingInDocument = NewLineManager.DetectMostFrequentLineEnd(headerText);
            var headerWithNewLine    = NewLineManager.ReplaceAllLineEnds(headerText, lineEndingInDocument);

            if (!CurrentFileStartsWithNewLine(currentHeaderText, lineEndingInDocument) && !HeaderEndsWithNewline(headerWithNewLine, lineEndingInDocument) &&
                CurrentFileContainsCommentOnTop(currentHeaderText, commentParser))
            {
                return(headerWithNewLine + lineEndingInDocument);
            }

            return(headerWithNewLine);
        }
Beispiel #2
0
 private async Task <string> GetLineEndingInDocument()
 {
     _lineEndingInDocumentCache ??= NewLineManager.DetectMostFrequentLineEnd(await GetText());
     return(_lineEndingInDocumentCache);
 }