PJonDevelopment refactored to use generic context

main
Inga 🏳‍🌈 12 years ago
parent 88fa0e7758
commit 9847264000
  1. 4
      FLocal.Common/BBCodes/AbstractLocalLink.cs
  2. 4
      FLocal.Common/BBCodes/B.cs
  3. 2
      FLocal.Common/BBCodes/Code.cs
  4. 4
      FLocal.Common/BBCodes/ECode.cs
  5. 4
      FLocal.Common/BBCodes/FUrl.cs
  6. 4
      FLocal.Common/BBCodes/Font.cs
  7. 4
      FLocal.Common/BBCodes/FontColor.cs
  8. 4
      FLocal.Common/BBCodes/FontSize.cs
  9. 4
      FLocal.Common/BBCodes/Google.cs
  10. 4
      FLocal.Common/BBCodes/I.cs
  11. 2
      FLocal.Common/BBCodes/Image.cs
  12. 4
      FLocal.Common/BBCodes/List.cs
  13. 2
      FLocal.Common/BBCodes/ListElem.cs
  14. 4
      FLocal.Common/BBCodes/Lurk.cs
  15. 2
      FLocal.Common/BBCodes/Math.cs
  16. 4
      FLocal.Common/BBCodes/Quote.cs
  17. 4
      FLocal.Common/BBCodes/QuoteSkipper.cs
  18. 4
      FLocal.Common/BBCodes/RuWiki.cs
  19. 4
      FLocal.Common/BBCodes/S.cs
  20. 4
      FLocal.Common/BBCodes/Spoiler.cs
  21. 2
      FLocal.Common/BBCodes/Tex.cs
  22. 4
      FLocal.Common/BBCodes/U.cs
  23. 2
      FLocal.Common/BBCodes/UploadImage.cs
  24. 4
      FLocal.Common/BBCodes/UploadLink.cs
  25. 4
      FLocal.Common/BBCodes/Url.cs
  26. 2
      FLocal.Common/BBCodes/User.cs
  27. 4
      FLocal.Common/BBCodes/Wiki.cs
  28. 7
      FLocal.Common/BBCodes/helpers/BBCode.cs
  29. 10
      FLocal.Common/BBCodes/helpers/IPostParsingContext.cs
  30. 2
      FLocal.Common/FLocal.Common.csproj
  31. 22
      FLocal.Common/UBBParser.cs
  32. 30
      FLocal.Common/dataobjects/User.cs
  33. 11
      FLocal.Common/helpers/DelegatePostParsingContext.cs
  34. 2
      FLocal.IISHandler/handlers/response/UserRepliesHandler.cs
  35. 12
      ThirdParty/PJonDevelopment.BBCode/Classes/BBCodeConfiguration.vb
  36. 22
      ThirdParty/PJonDevelopment.BBCode/Classes/BBCodeDocument.vb
  37. 26
      ThirdParty/PJonDevelopment.BBCode/Classes/BBCodeElement.vb
  38. 20
      ThirdParty/PJonDevelopment.BBCode/Classes/BBCodeElementFactory.vb
  39. 6
      ThirdParty/PJonDevelopment.BBCode/Classes/BBCodeElementTypeDictionary.vb
  40. 20
      ThirdParty/PJonDevelopment.BBCode/Classes/BBCodeNode.vb
  41. 18
      ThirdParty/PJonDevelopment.BBCode/Classes/BBCodeNodeCollection.vb
  42. 44
      ThirdParty/PJonDevelopment.BBCode/Classes/BBCodeParser.vb
  43. 6
      ThirdParty/PJonDevelopment.BBCode/Classes/BBCodeText.vb
  44. 4
      ThirdParty/PJonDevelopment.BBCode/Modules/Utils.vb

@ -16,11 +16,11 @@ namespace FLocal.Common.BBCodes {
get; get;
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
var url = this.url; var url = this.url;
var name = this.Safe(url.title); var name = this.Safe(url.title);
if(this.Default != null) { if(this.Default != null) {
name = this.GetInnerHTML(formatter); name = this.GetInnerHTML(context, formatter);
} }
return string.Format("<a href=\"{0}\">{1}</a>", url.canonical, url.title); return string.Format("<a href=\"{0}\">{1}</a>", url.canonical, url.title);
} }

@ -11,8 +11,8 @@ namespace FLocal.Common.BBCodes {
: base("b") { : base("b") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
return "<b>" + this.GetInnerHTML(formatter) + "</b>"; return "<b>" + this.GetInnerHTML(context, formatter) + "</b>";
} }
} }

@ -11,7 +11,7 @@ namespace FLocal.Common.BBCodes {
: base("code") { : base("code") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
return "<pre>" + System.Web.HttpUtility.HtmlEncode(this.InnerBBCode) + "</pre><br/>"; return "<pre>" + System.Web.HttpUtility.HtmlEncode(this.InnerBBCode) + "</pre><br/>";
} }

@ -11,8 +11,8 @@ namespace FLocal.Common.BBCodes {
: base("ecode") { : base("ecode") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
return this.GetInnerHTML(new BBCodeHtmlFormatter()); return this.GetInnerHTML(context, new BBCodeHtmlFormatter());
} }
} }

@ -11,11 +11,11 @@ namespace FLocal.Common.BBCodes {
: base("furl") { : base("furl") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
string rawUrl = this.DefaultOrValue; string rawUrl = this.DefaultOrValue;
string title = null; string title = null;
if(rawUrl.ToLower() != this.InnerText.ToLower()) { if(rawUrl.ToLower() != this.InnerText.ToLower()) {
title = this.GetInnerHTML(formatter); title = this.GetInnerHTML(context, formatter);
} }
return UrlProcessor.ProcessLink(rawUrl, title, false); return UrlProcessor.ProcessLink(rawUrl, title, false);
} }

@ -11,8 +11,8 @@ namespace FLocal.Common.BBCodes {
: base("font") { : base("font") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
return "<font face=\"" + this.Default + "\">" + this.GetInnerHTML(formatter) + "</font>"; return "<font face=\"" + this.Default + "\">" + this.GetInnerHTML(context, formatter) + "</font>";
} }
} }

@ -11,8 +11,8 @@ namespace FLocal.Common.BBCodes {
: base("color") { : base("color") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
return "<font color=\"" + this.Default + "\">" + this.GetInnerHTML(formatter) + "</font>"; return "<font color=\"" + this.Default + "\">" + this.GetInnerHTML(context, formatter) + "</font>";
} }
} }

@ -11,8 +11,8 @@ namespace FLocal.Common.BBCodes {
: base("size") { : base("size") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
return "<font size=\"" + this.Default + "\">" + this.GetInnerHTML(formatter) + "</font>"; return "<font size=\"" + this.Default + "\">" + this.GetInnerHTML(context, formatter) + "</font>";
} }
} }

@ -12,8 +12,8 @@ namespace FLocal.Common.BBCodes {
: base("google") { : base("google") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
return "<a href=\"http://lmgtfy.com/?q=" + HttpUtility.UrlPathEncode(this.DefaultOrValue) + "\">g:" + this.GetInnerHTML(formatter) + "</a>"; return "<a href=\"http://lmgtfy.com/?q=" + HttpUtility.UrlPathEncode(this.DefaultOrValue) + "\">g:" + this.GetInnerHTML(context, formatter) + "</a>";
} }
} }

@ -11,8 +11,8 @@ namespace FLocal.Common.BBCodes {
: base("i") { : base("i") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
return "<i>" + this.GetInnerHTML(formatter) + "</i>"; return "<i>" + this.GetInnerHTML(context, formatter) + "</i>";
} }
} }

@ -10,7 +10,7 @@ namespace FLocal.Common.BBCodes {
public Image() : base("image") { public Image() : base("image") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
var urlInfo = UrlProcessor.Process(this.InnerText); var urlInfo = UrlProcessor.Process(this.InnerText);
if (urlInfo.isLocal && urlInfo.relativeUrl.StartsWith("/user/upload/")) { if (urlInfo.isLocal && urlInfo.relativeUrl.StartsWith("/user/upload/")) {
return "<f:img><f:src>" + urlInfo.relativeUrl + "</f:src><f:alt>" + urlInfo.relativeUrl + "</f:alt></f:img>"; return "<f:img><f:src>" + urlInfo.relativeUrl + "</f:src><f:alt>" + urlInfo.relativeUrl + "</f:alt></f:img>";

@ -11,8 +11,8 @@ namespace FLocal.Common.BBCodes {
: base("list") { : base("list") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
return "<ul>" + this.GetInnerHTML(formatter) + "</ul>"; return "<ul>" + this.GetInnerHTML(context, formatter) + "</ul>";
} }
} }

@ -11,7 +11,7 @@ namespace FLocal.Common.BBCodes {
: base("*") { : base("*") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
// return "<li>" + this.GetInnerHTML(formatter) + "</li>"; // return "<li>" + this.GetInnerHTML(formatter) + "</li>";
return "<li>"; return "<li>";
} }

@ -12,8 +12,8 @@ namespace FLocal.Common.BBCodes {
: base("lurk") { : base("lurk") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
return "<a href=\"http://lurkmore.ru/" + HttpUtility.UrlPathEncode(this.DefaultOrValue) + "\">l:" + this.GetInnerHTML(formatter) + "</a>"; return "<a href=\"http://lurkmore.ru/" + HttpUtility.UrlPathEncode(this.DefaultOrValue) + "\">l:" + this.GetInnerHTML(context, formatter) + "</a>";
} }
} }

@ -11,7 +11,7 @@ namespace FLocal.Common.BBCodes {
: base("math") { : base("math") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
string tex = "$$" + this.InnerBBCode + "$$"; string tex = "$$" + this.InnerBBCode + "$$";
var upload = helpers.TexProcessor.getCompiled(tex); var upload = helpers.TexProcessor.getCompiled(tex);
return "<f:img><f:src>/Upload/Item/" + upload.id.ToString() + "/</f:src><f:alt>" + this.Safe(tex) + "</f:alt></f:img>"; return "<f:img><f:src>/Upload/Item/" + upload.id.ToString() + "/</f:src><f:alt>" + this.Safe(tex) + "</f:alt></f:img>";

@ -12,8 +12,8 @@ namespace FLocal.Common.BBCodes {
: base("quote") { : base("quote") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
string inner = this.GetInnerHTML(formatter).TrimHtml(); string inner = this.GetInnerHTML(context, formatter).TrimHtml();
if(inner == "") return ""; if(inner == "") return "";
string marker = this.Default; string marker = this.Default;
if(marker == null) marker = "Quote:"; if(marker == null) marker = "Quote:";

@ -10,7 +10,7 @@ namespace FLocal.Common.BBCodes {
public QuoteSkipper() : base("quoteskipper") { public QuoteSkipper() : base("quoteskipper") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
if(this.Name.ToLower() == "q" || this.Name.ToLower() == "quote") { if(this.Name.ToLower() == "q" || this.Name.ToLower() == "quote") {
return ""; return "";
} else if(this.Name.ToLower() == "code") { } else if(this.Name.ToLower() == "code") {
@ -36,7 +36,7 @@ namespace FLocal.Common.BBCodes {
} }
sb.Append("]"); sb.Append("]");
if(this.RequireClosingTag) { if(this.RequireClosingTag) {
sb.Append(this.GetInnerHTML(formatter)); sb.Append(this.GetInnerHTML(context, formatter));
sb.Append("[/"); sb.Append("[/");
sb.Append(name); sb.Append(name);
sb.Append("]"); sb.Append("]");

@ -12,8 +12,8 @@ namespace FLocal.Common.BBCodes {
: base("ruwiki") { : base("ruwiki") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
return "<a href=\"http://ru.wikipedia.org/wiki/" + HttpUtility.UrlPathEncode(this.DefaultOrValue) + "\">в:" + this.GetInnerHTML(formatter) + "</a>"; return "<a href=\"http://ru.wikipedia.org/wiki/" + HttpUtility.UrlPathEncode(this.DefaultOrValue) + "\">в:" + this.GetInnerHTML(context, formatter) + "</a>";
} }
} }

@ -11,8 +11,8 @@ namespace FLocal.Common.BBCodes {
: base("s") { : base("s") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
return "<s>" + this.GetInnerHTML(formatter) + "</s>"; return "<s>" + this.GetInnerHTML(context, formatter) + "</s>";
} }
} }

@ -11,10 +11,10 @@ namespace FLocal.Common.BBCodes {
: base("spoiler") { : base("spoiler") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
string marker = this.Default; string marker = this.Default;
if(marker == null) marker = "Spoiler"; if(marker == null) marker = "Spoiler";
return "<blockquote spoiler><font opener class=\"small\" onClick=\"showSpoiler(this)\">" + marker + "</font><hr/><div inner name=\"inner\" style=\"display:none\">" + this.GetInnerHTML(formatter).Trim() + "</div><hr/></blockquote><br/>"; return "<blockquote spoiler><font opener class=\"small\" onClick=\"showSpoiler(this)\">" + marker + "</font><hr/><div inner name=\"inner\" style=\"display:none\">" + this.GetInnerHTML(context, formatter).Trim() + "</div><hr/></blockquote><br/>";
} }
} }

@ -11,7 +11,7 @@ namespace FLocal.Common.BBCodes {
: base("tex") { : base("tex") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
string tex = this.InnerBBCode; string tex = this.InnerBBCode;
var upload = helpers.TexProcessor.getCompiled(tex); var upload = helpers.TexProcessor.getCompiled(tex);
return "<f:img><f:src>/Upload/Item/" + upload.id.ToString() + "/</f:src><f:alt>" + this.Safe(tex) + "</f:alt></f:img>"; return "<f:img><f:src>/Upload/Item/" + upload.id.ToString() + "/</f:src><f:alt>" + this.Safe(tex) + "</f:alt></f:img>";

@ -11,8 +11,8 @@ namespace FLocal.Common.BBCodes {
: base("u") { : base("u") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
return "<u>" + this.GetInnerHTML(formatter) + "</u>"; return "<u>" + this.GetInnerHTML(context, formatter) + "</u>";
} }
} }

@ -11,7 +11,7 @@ namespace FLocal.Common.BBCodes {
: base("uploadimage") { : base("uploadimage") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
var upload = dataobjects.Upload.LoadById(int.Parse(this.InnerText)); var upload = dataobjects.Upload.LoadById(int.Parse(this.InnerText));
var name = upload.filename; var name = upload.filename;
return "<f:img><f:src>/Upload/Item/" + upload.id.ToString() + "/</f:src><f:alt>" + this.Safe(upload.filename) + "</f:alt></f:img>"; return "<f:img><f:src>/Upload/Item/" + upload.id.ToString() + "/</f:src><f:alt>" + this.Safe(upload.filename) + "</f:alt></f:img>";

@ -11,11 +11,11 @@ namespace FLocal.Common.BBCodes {
: base("uploadlink") { : base("uploadlink") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
var upload = dataobjects.Upload.LoadById(int.Parse(this.DefaultOrValue)); var upload = dataobjects.Upload.LoadById(int.Parse(this.DefaultOrValue));
var name = this.Safe(upload.filename); var name = this.Safe(upload.filename);
if(this.Default != null) { if(this.Default != null) {
name = this.GetInnerHTML(formatter); name = this.GetInnerHTML(context, formatter);
} }
return "<a href=\"/Upload/Info/" + upload.id.ToString() + "/\">" + name + "</a>"; return "<a href=\"/Upload/Info/" + upload.id.ToString() + "/\">" + name + "</a>";
} }

@ -11,11 +11,11 @@ namespace FLocal.Common.BBCodes {
: base("url") { : base("url") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
string rawUrl = this.DefaultOrValue; string rawUrl = this.DefaultOrValue;
string title = null; string title = null;
if(rawUrl.ToLower() != this.InnerText.ToLower()) { if(rawUrl.ToLower() != this.InnerText.ToLower()) {
title = this.GetInnerHTML(formatter); title = this.GetInnerHTML(context, formatter);
} }
return UrlProcessor.ProcessLink(rawUrl, title, true); return UrlProcessor.ProcessLink(rawUrl, title, true);
} }

@ -11,7 +11,7 @@ namespace FLocal.Common.BBCodes {
: base("user") { : base("user") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
var user = dataobjects.User.LoadByName(this.DefaultOrValue); var user = dataobjects.User.LoadByName(this.DefaultOrValue);
var url = new URL.users.user.Info(user.id.ToString(), null); var url = new URL.users.user.Info(user.id.ToString(), null);
return String.Format("<a class=\"separate UG_{0}\" href=\"{1}\">{2}</a>", this.Safe(user.userGroup.name), url.canonical, this.Safe(user.name)); return String.Format("<a class=\"separate UG_{0}\" href=\"{1}\">{2}</a>", this.Safe(user.userGroup.name), url.canonical, this.Safe(user.name));

@ -12,8 +12,8 @@ namespace FLocal.Common.BBCodes {
: base("wiki") { : base("wiki") {
} }
public override string Format(ITextFormatter formatter) { public override string Format(IPostParsingContext context, ITextFormatter formatter) {
return "<a href=\"http://en.wikipedia.org/wiki/" + HttpUtility.UrlPathEncode(this.DefaultOrValue) + "\">w:" + this.GetInnerHTML(formatter) + "</a>"; return "<a href=\"http://en.wikipedia.org/wiki/" + HttpUtility.UrlPathEncode(this.DefaultOrValue) + "\">w:" + this.GetInnerHTML(context, formatter) + "</a>";
} }
} }

@ -2,18 +2,19 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using FLocal.Common.helpers;
namespace FLocal.Common.BBCodes { namespace FLocal.Common.BBCodes {
abstract class BBCode : PJonDevelopment.BBCode.BBCodeElement { abstract class BBCode : PJonDevelopment.BBCode.BBCodeElement<IPostParsingContext> {
public BBCode(string name) public BBCode(string name)
: base(name) { : base(name) {
} }
protected string GetInnerHTML(PJonDevelopment.BBCode.ITextFormatter formatter) { protected string GetInnerHTML(IPostParsingContext context, PJonDevelopment.BBCode.ITextFormatter formatter) {
StringBuilder builder = new StringBuilder(); StringBuilder builder = new StringBuilder();
foreach (var node in this.Nodes) { foreach (var node in this.Nodes) {
builder.Append(node.Format(formatter)); builder.Append(node.Format(context, formatter));
} }
return builder.ToString(); return builder.ToString();
} }

@ -0,0 +1,10 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FLocal.Common.dataobjects;
namespace FLocal.Common.BBCodes {
public interface IPostParsingContext {
}
}

@ -123,6 +123,8 @@
<Compile Include="dataobjects\User.cs" /> <Compile Include="dataobjects\User.cs" />
<Compile Include="dataobjects\AccountSettings.cs" /> <Compile Include="dataobjects\AccountSettings.cs" />
<Compile Include="dataobjects\UserGroup.cs" /> <Compile Include="dataobjects\UserGroup.cs" />
<Compile Include="helpers\DelegatePostParsingContext.cs" />
<Compile Include="BBCodes\helpers\IPostParsingContext.cs" />
<Compile Include="IComplexSqlObjectTableSpec.cs" /> <Compile Include="IComplexSqlObjectTableSpec.cs" />
<Compile Include="IOutputParams.cs" /> <Compile Include="IOutputParams.cs" />
<Compile Include="ISqlObjectTableSpec.cs" /> <Compile Include="ISqlObjectTableSpec.cs" />

@ -7,6 +7,7 @@ using System.Text.RegularExpressions;
using PJonDevelopment.BBCode; using PJonDevelopment.BBCode;
using System.IO; using System.IO;
using Web.Core; using Web.Core;
using FLocal.Common.helpers;
namespace FLocal.Common { namespace FLocal.Common {
public static class UBBParser { public static class UBBParser {
@ -108,14 +109,14 @@ namespace FLocal.Common {
public static readonly BBParserGateway instance = new BBParserGateway(); public static readonly BBParserGateway instance = new BBParserGateway();
private BBCodeParser parser; private BBCodeParser<BBCodes.IPostParsingContext> parser;
private ITextFormatter formatter; private ITextFormatter formatter;
private BBCodeParser quotesParser; private BBCodeParser<BBCodes.IPostParsingContext> quotesParser;
private ITextFormatter simpleFormatter; private ITextFormatter simpleFormatter;
private BBParserGateway() { private BBParserGateway() {
this.parser = new BBCodeParser(); this.parser = new BBCodeParser<BBCodes.IPostParsingContext>();
this.parser.ElementTypes.Add("b", typeof(BBCodes.B), true); this.parser.ElementTypes.Add("b", typeof(BBCodes.B), true);
this.parser.ElementTypes.Add("code", typeof(BBCodes.Code), true); this.parser.ElementTypes.Add("code", typeof(BBCodes.Code), true);
this.parser.ElementTypes.Add("ecode", typeof(BBCodes.ECode), true); this.parser.ElementTypes.Add("ecode", typeof(BBCodes.ECode), true);
@ -146,29 +147,32 @@ namespace FLocal.Common {
this.parser.ElementTypes.Add("ruwiki", typeof(BBCodes.RuWiki), true); this.parser.ElementTypes.Add("ruwiki", typeof(BBCodes.RuWiki), true);
this.formatter = TextFormatter.instance; this.formatter = TextFormatter.instance;
this.quotesParser = new BBCodeParser(); this.quotesParser = new BBCodeParser<BBCodes.IPostParsingContext>();
foreach(var elementType in this.parser.ElementTypes) { foreach(var elementType in this.parser.ElementTypes) {
this.quotesParser.ElementTypes.Add(elementType.Key, typeof(BBCodes.QuoteSkipper), elementType.Value.RequireClosingTag); this.quotesParser.ElementTypes.Add(elementType.Key, typeof(BBCodes.QuoteSkipper), elementType.Value.RequireClosingTag);
} }
this.simpleFormatter = SimpleFormatter.instance; this.simpleFormatter = SimpleFormatter.instance;
} }
public string Parse(string input) { public string Parse(BBCodes.IPostParsingContext context, string input) {
string result = this.parser.Parse(input).Format(this.formatter); string result = this.parser.Parse(input).Format(context, this.formatter);
if(result.EndsWith("<br/>")) result = result.Substring(0, result.Length - 5); if(result.EndsWith("<br/>")) result = result.Substring(0, result.Length - 5);
return result; return result;
} }
public string ParseQuote(string input) { public string ParseQuote(string input) {
string result = this.quotesParser.Parse(input).Format(this.simpleFormatter); string result = this.quotesParser.Parse(input).Format(new DelegatePostParsingContext(), this.simpleFormatter);
return result; return result;
} }
} }
public static string UBBToIntermediate(BBCodes.IPostParsingContext context, string UBB) {
return BBParserGateway.instance.Parse(context, UBB);
}
public static string UBBToIntermediate(string UBB) { public static string UBBToIntermediate(string UBB) {
//return HttpUtility.HtmlEncode(UBB).Replace(Util.EOL, "<br/>" + Util.EOL); return UBBToIntermediate(new DelegatePostParsingContext(), UBB);
return BBParserGateway.instance.Parse(UBB);
} }
public static string ShallerToUBB(string shaller) { public static string ShallerToUBB(string shaller) {

@ -253,38 +253,18 @@ namespace FLocal.Common.dataobjects {
); );
} }
public IEnumerable<Post> getReplies(Diapasone diapasone, bool isAscending) { public IEnumerable<Post> getMentions(Diapasone diapasone, bool isAscending) {
JoinSpec parent = new JoinSpec(
Post.TableSpec.instance.getColumnSpec(Post.TableSpec.FIELD_PARENTPOSTID),
Post.TableSpec.instance,
"parent"
);
return Post.LoadByIds( return Post.LoadByIds(
from stringId in Config.instance.mainConnection.LoadIdsByConditions( from stringId in Config.instance.mainConnection.LoadIdsByConditions(
Post.TableSpec.instance, Mention.TableSpec.instance,
new ComplexCondition(
ConditionsJoinType.AND,
new ComparisonCondition( new ComparisonCondition(
parent.additionalTable.getColumnSpec(Post.TableSpec.FIELD_POSTERID), Mention.TableSpec.instance.getColumnSpec(Mention.TableSpec.FIELD_MENTIONEDUSERID),
ComparisonType.EQUAL, ComparisonType.EQUAL,
this.id.ToString() this.id.ToString()
), ),
new ComparisonCondition(
Post.TableSpec.instance.getColumnSpec(Post.TableSpec.FIELD_POSTERID),
ComparisonType.NOTEQUAL,
this.id.ToString()
)
),
diapasone, diapasone,
new JoinSpec[] { Mention.TableSpec.instance.getColumnSpec(Mention.TableSpec.FIELD_POSTID),
parent new SortSpec(Mention.TableSpec.instance.getIdSpec(), isAscending)
},
new SortSpec[] {
new SortSpec(
Post.TableSpec.instance.getIdSpec(),
isAscending
),
}
) select int.Parse(stringId) ) select int.Parse(stringId)
); );
} }

@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FLocal.Common.dataobjects;
using FLocal.Common.BBCodes;
namespace FLocal.Common.helpers {
class DelegatePostParsingContext : IPostParsingContext {
}
}

@ -22,7 +22,7 @@ namespace FLocal.IISHandler.handlers.response {
override protected IEnumerable<XElement> getUserSpecificData(WebContext context, User user) { override protected IEnumerable<XElement> getUserSpecificData(WebContext context, User user) {
PageOuter pageOuter = PageOuter.createFromUrl(this.url, context.userSettings.postsPerPage); PageOuter pageOuter = PageOuter.createFromUrl(this.url, context.userSettings.postsPerPage);
IEnumerable<Post> posts = user.getReplies(pageOuter, pageOuter.descendingDirection); IEnumerable<Post> posts = user.getMentions(pageOuter, pageOuter.descendingDirection);
return new XElement[] { return new XElement[] {
user.exportToXmlForViewing(context), user.exportToXmlForViewing(context),

@ -22,14 +22,14 @@ Imports System.Xml.Serialization
''' </summary> ''' </summary>
<Serializable()> _ <Serializable()> _
<XmlRoot(ElementName:=STR_BBCodeConfigurationXmlElement, [Namespace]:=STR_BBCodeSchemaNamespace)> _ <XmlRoot(ElementName:=STR_BBCodeConfigurationXmlElement, [Namespace]:=STR_BBCodeSchemaNamespace)> _
Public NotInheritable Class BBCodeConfiguration Public NotInheritable Class BBCodeConfiguration(Of TContext As Class)
Implements IXmlSerializable Implements IXmlSerializable
Private Shared ReadOnly __CurrentVersion As New System.Version(1, 0) Private Shared ReadOnly __CurrentVersion As New System.Version(1, 0)
Private __Version As System.Version Private __Version As System.Version
Private __Dictionary As BBCodeElementDictionary Private __Dictionary As BBCodeElementDictionary
Private __ElementTypes As BBCodeElementTypeDictionary Private __ElementTypes As BBCodeElementTypeDictionary(Of TContext)
''' <summary>Initializes an instance of the <see cref="BBCodeConfiguration" /> class. ''' <summary>Initializes an instance of the <see cref="BBCodeConfiguration" /> class.
''' This is the default constructor for this class.</summary> ''' This is the default constructor for this class.</summary>
@ -69,10 +69,10 @@ Public NotInheritable Class BBCodeConfiguration
''' Gets the factory configuration. ''' Gets the factory configuration.
''' </summary> ''' </summary>
<XmlArrayItem()> _ <XmlArrayItem()> _
Public ReadOnly Property ElementTypes() As BBCodeElementTypeDictionary Public ReadOnly Property ElementTypes() As BBCodeElementTypeDictionary(Of TContext)
Get Get
If (__ElementTypes Is Nothing) Then If (__ElementTypes Is Nothing) Then
__ElementTypes = New BBCodeElementTypeDictionary() __ElementTypes = New BBCodeElementTypeDictionary(Of TContext)()
End If End If
Return __ElementTypes Return __ElementTypes
End Get End Get
@ -109,7 +109,7 @@ Public NotInheritable Class BBCodeConfiguration
reader.Read() reader.Read()
Dim dictionarySerializer = New XmlSerializer(GetType(BBCodeElementDictionary)) Dim dictionarySerializer = New XmlSerializer(GetType(BBCodeElementDictionary))
Dim typesSerializer = New XmlSerializer(GetType(BBCodeElementTypeDictionary)) Dim typesSerializer = New XmlSerializer(GetType(BBCodeElementTypeDictionary(Of TContext)))
__ElementTypes = Nothing __ElementTypes = Nothing
__Dictionary = Nothing __Dictionary = Nothing
@ -133,7 +133,7 @@ Public NotInheritable Class BBCodeConfiguration
Public Sub WriteXml(ByVal writer As System.Xml.XmlWriter) Implements System.Xml.Serialization.IXmlSerializable.WriteXml Public Sub WriteXml(ByVal writer As System.Xml.XmlWriter) Implements System.Xml.Serialization.IXmlSerializable.WriteXml
Dim dictionarySerializer = New XmlSerializer(GetType(BBCodeElementDictionary)) Dim dictionarySerializer = New XmlSerializer(GetType(BBCodeElementDictionary))
Dim typesSerializer = New XmlSerializer(GetType(BBCodeElementTypeDictionary)) Dim typesSerializer = New XmlSerializer(GetType(BBCodeElementTypeDictionary(Of TContext)))
If (ElementTypes.Count > 0) Then If (ElementTypes.Count > 0) Then
typesSerializer.Serialize(writer, ElementTypes) typesSerializer.Serialize(writer, ElementTypes)

@ -18,22 +18,22 @@
''' <summary> ''' <summary>
''' Represents a document writen in BBCode. ''' Represents a document writen in BBCode.
''' </summary> ''' </summary>
Public NotInheritable Class BBCodeDocument Public NotInheritable Class BBCodeDocument(Of TContext As Class)
Private __Text As String Private __Text As String
Private __Parser As BBCodeParser Private __Parser As BBCodeParser(Of TContext)
Private __Nodes As BBCodeNodeCollection Private __Nodes As BBCodeNodeCollection(Of TContext)
''' <summary>Initializes an instance of the <see cref="BBCodeDocument" /> class.</summary> ''' <summary>Initializes an instance of the <see cref="BBCodeDocument" /> class.</summary>
''' <param name="parser">The <see cref="BBCodeParser"/> that created this instance.</param> ''' <param name="parser">The <see cref="BBCodeParser"/> that created this instance.</param>
Friend Sub New(ByVal parser As BBCodeParser) Friend Sub New(ByVal parser As BBCodeParser(Of TContext))
__Parser = parser __Parser = parser
End Sub End Sub
''' <summary> ''' <summary>
''' Gets the <see cref="BBCodeParser"/> that is responsible for this <see cref="BBCodeDocument"/>. ''' Gets the <see cref="BBCodeParser"/> that is responsible for this <see cref="BBCodeDocument"/>.
''' </summary> ''' </summary>
Friend ReadOnly Property Parser() As BBCodeParser Friend ReadOnly Property Parser() As BBCodeParser(Of TContext)
Get Get
Return __Parser Return __Parser
End Get End Get
@ -57,10 +57,10 @@ Public NotInheritable Class BBCodeDocument
''' Gets the <see cref="BBCodeNodeCollection"/> generated ba the BBCode text. ''' Gets the <see cref="BBCodeNodeCollection"/> generated ba the BBCode text.
''' </summary> ''' </summary>
''' <value>A <see cref="BBCodeNodeCollection"/> that represents the parsed text of the document.</value> ''' <value>A <see cref="BBCodeNodeCollection"/> that represents the parsed text of the document.</value>
Public ReadOnly Property Nodes() As BBCodeNodeCollection Public ReadOnly Property Nodes() As BBCodeNodeCollection(Of TContext)
Get Get
If (__Nodes Is Nothing) Then If (__Nodes Is Nothing) Then
__Nodes = New BBCodeNodeCollection() __Nodes = New BBCodeNodeCollection(Of TContext)()
End If End If
Return __Nodes Return __Nodes
End Get End Get
@ -70,8 +70,8 @@ Public NotInheritable Class BBCodeDocument
''' Returns the formatted text. ''' Returns the formatted text.
''' </summary> ''' </summary>
''' <returns>The formatted text.</returns> ''' <returns>The formatted text.</returns>
Public Function Format() As String Public Function Format(ByVal context As TContext) As String
Return Format(New BBCodeHtmlFormatter()) Return Format(context, New BBCodeHtmlFormatter())
End Function End Function
''' <summary> ''' <summary>
@ -79,10 +79,10 @@ Public NotInheritable Class BBCodeDocument
''' </summary> ''' </summary>
''' <param name="formatter">An object that implements the <see cref="ITextFormatter"/> interface.</param> ''' <param name="formatter">An object that implements the <see cref="ITextFormatter"/> interface.</param>
''' <returns>The formatted text.</returns> ''' <returns>The formatted text.</returns>
Public Function Format(ByVal formatter As ITextFormatter) As String Public Function Format(ByVal context As TContext, ByVal formatter As ITextFormatter) As String
Dim sb As New Text.StringBuilder() Dim sb As New Text.StringBuilder()
For Each n In Nodes For Each n In Nodes
sb.Append(n.Format(formatter)) sb.Append(n.Format(context, formatter))
Next Next
Return sb.ToString() Return sb.ToString()
End Function End Function

@ -21,11 +21,11 @@ Imports System.Text.RegularExpressions
''' <summary> ''' <summary>
''' Represents an BBCode element. ''' Represents an BBCode element.
''' </summary> ''' </summary>
Public Class BBCodeElement Public Class BBCodeElement(Of TContext As Class)
Inherits BBCodeNode Inherits BBCodeNode(Of TContext)
Private __Name As String Private __Name As String
Private __Nodes As BBCodeNodeCollection Private __Nodes As BBCodeNodeCollection(Of TContext)
Private __Attributes As BBCodeAttributeDictionary Private __Attributes As BBCodeAttributeDictionary
Private __ReplacementFormat As String = String.Empty Private __ReplacementFormat As String = String.Empty
Private __RequireClosingTag As TriState = TriState.UseDefault Private __RequireClosingTag As TriState = TriState.UseDefault
@ -46,7 +46,7 @@ Public Class BBCodeElement
''' <summary>Initializes an instance of the <see cref="BBCodeElement" /> class.</summary> ''' <summary>Initializes an instance of the <see cref="BBCodeElement" /> class.</summary>
''' <param name="parser">The parser used to create this element.</param> ''' <param name="parser">The parser used to create this element.</param>
Friend Sub New(ByVal parser As BBCodeParser) Friend Sub New(ByVal parser As BBCodeParser(Of TContext))
MyBase.New(parser) MyBase.New(parser)
End Sub End Sub
@ -123,10 +123,10 @@ Public Class BBCodeElement
''' <summary> ''' <summary>
''' Gets the list of sub nodes. ''' Gets the list of sub nodes.
''' </summary> ''' </summary>
Public ReadOnly Property Nodes() As BBCodeNodeCollection Public ReadOnly Property Nodes() As BBCodeNodeCollection(Of TContext)
Get Get
If (__Nodes Is Nothing) Then If (__Nodes Is Nothing) Then
__Nodes = New BBCodeNodeCollection(Me) __Nodes = New BBCodeNodeCollection(Of TContext)(Me)
End If End If
Return __Nodes Return __Nodes
End Get End Get
@ -135,15 +135,15 @@ Public Class BBCodeElement
''' <summary>Transforms this instance of <see cref="BBCodeElement" /> into its desired text representation.</summary> ''' <summary>Transforms this instance of <see cref="BBCodeElement" /> into its desired text representation.</summary>
''' <param name="formatter">An object that implements the <see cref="ITextFormatter" /> interface.</param> ''' <param name="formatter">An object that implements the <see cref="ITextFormatter" /> interface.</param>
''' <returns>The text formatted by the <see cref="ITextFormatter" />.</returns> ''' <returns>The text formatted by the <see cref="ITextFormatter" />.</returns>
Public Overrides Function Format(ByVal formatter As ITextFormatter) As String Public Overrides Function Format(ByVal context As TContext, ByVal formatter As ITextFormatter) As String
IsValueFormatted = False IsValueFormatted = False
Dim sb As New Text.StringBuilder(Me.ReplacementFormat) Dim sb As New Text.StringBuilder(Me.ReplacementFormat)
Dim attribs = __RxAttribute.Matches(Me.ReplacementFormat) Dim attribs = __RxAttribute.Matches(Me.ReplacementFormat)
For Each attrib As Match In attribs For Each attrib As Match In attribs
sb.Replace(attrib.Value, GetAttribute(attrib.Groups("name").Value, formatter)) sb.Replace(attrib.Value, GetAttribute(attrib.Groups("name").Value, context, formatter))
Next Next
If Not IsValueFormatted Then If Not IsValueFormatted Then
sb.Append(GetAttribute("value", formatter)) sb.Append(GetAttribute("value", context, formatter))
End If End If
Return sb.ToString() Return sb.ToString()
End Function End Function
@ -153,7 +153,7 @@ Public Class BBCodeElement
Public NotOverridable Overrides Property InnerBBCode() As String Public NotOverridable Overrides Property InnerBBCode() As String
Get Get
Dim sb As New System.Text.StringBuilder() Dim sb As New System.Text.StringBuilder()
For Each n As BBCodeNode In Nodes For Each n As BBCodeNode(Of TContext) In Nodes
sb.Append(n.OuterBBCode) sb.Append(n.OuterBBCode)
Next Next
Return sb.ToString() Return sb.ToString()
@ -215,7 +215,7 @@ Public Class BBCodeElement
'* '*
'* Only append a BBCodeText element if the value is not empty '* Only append a BBCodeText element if the value is not empty
'* '*
Me.Nodes.Add(New BBCodeText(value)) Me.Nodes.Add(New BBCodeText(Of TContext)(value))
End If End If
End Set End Set
End Property End Property
@ -241,14 +241,14 @@ Public Class BBCodeElement
End Set End Set
End Property End Property
Private Function GetAttribute(ByVal name As String, ByVal formatter As ITextFormatter) As String Private Function GetAttribute(ByVal name As String, ByVal context As TContext, ByVal formatter As ITextFormatter) As String
Dim attribs = name.ToUpperInvariant().Split("|".ToCharArray(), StringSplitOptions.RemoveEmptyEntries) Dim attribs = name.ToUpperInvariant().Split("|".ToCharArray(), StringSplitOptions.RemoveEmptyEntries)
For Each attrib In attribs For Each attrib In attribs
If (String.CompareOrdinal(attrib, "VALUE") = 0) Then If (String.CompareOrdinal(attrib, "VALUE") = 0) Then
IsValueFormatted = True IsValueFormatted = True
Dim sb As New Text.StringBuilder() Dim sb As New Text.StringBuilder()
For Each node In Me.Nodes For Each node In Me.Nodes
sb.Append(node.Format(formatter)) sb.Append(node.Format(context, formatter))
Next Next
Return sb.ToString() Return sb.ToString()
ElseIf (Me.Attributes.ContainsKey(attrib)) Then ElseIf (Me.Attributes.ContainsKey(attrib)) Then

@ -18,20 +18,20 @@
''' <summary> ''' <summary>
''' Creates instances of <see cref="BBCodeElement"/>. ''' Creates instances of <see cref="BBCodeElement"/>.
''' </summary> ''' </summary>
Friend NotInheritable Class BBCodeElementFactory Friend NotInheritable Class BBCodeElementFactory(Of TContext As Class)
Private __Parser As BBCodeParser Private __Parser As BBCodeParser(Of TContext)
''' <summary>Initializes an instance of the <see cref="BBCodeElementFactory" /> class.</summary> ''' <summary>Initializes an instance of the <see cref="BBCodeElementFactory" /> class.</summary>
''' <param name="parser">The <see cref="BBCodeParser"/> that will utilize the new instance of the <see cref="BBCodeElementFactory"/>.</param> ''' <param name="parser">The <see cref="BBCodeParser"/> that will utilize the new instance of the <see cref="BBCodeElementFactory"/>.</param>
Friend Sub New(ByVal parser As BBCodeParser) Friend Sub New(ByVal parser As BBCodeParser(Of TContext))
__Parser = parser __Parser = parser
End Sub End Sub
''' <summary> ''' <summary>
''' Gets the <see cref="BBCodeParser"/> that utilizes this instance of the <see cref="BBCodeElementFactory"/>. ''' Gets the <see cref="BBCodeParser"/> that utilizes this instance of the <see cref="BBCodeElementFactory"/>.
''' </summary> ''' </summary>
Public ReadOnly Property Parser() As BBCodeParser Public ReadOnly Property Parser() As BBCodeParser(Of TContext)
Get Get
Return __Parser Return __Parser
End Get End Get
@ -43,9 +43,9 @@ Friend NotInheritable Class BBCodeElementFactory
''' <param name="name">The name of the element.</param> ''' <param name="name">The name of the element.</param>
''' <param name="attributes">The attributes of the element.</param> ''' <param name="attributes">The attributes of the element.</param>
''' <returns>A new <see cref="BBCodeElement"/>.</returns> ''' <returns>A new <see cref="BBCodeElement"/>.</returns>
Public Function CreateElement(ByVal name As String, ByVal attributes As BBCodeAttributeDictionary) As BBCodeElement Public Function CreateElement(ByVal name As String, ByVal attributes As BBCodeAttributeDictionary) As BBCodeElement(Of TContext)
Dim el As BBCodeElement Dim el As BBCodeElement(Of TContext)
'* '*
'* Check if we have a different type to create '* Check if we have a different type to create
@ -59,8 +59,8 @@ Friend NotInheritable Class BBCodeElementFactory
'* '*
'* Check if the type IS BBCodeElement '* Check if the type IS BBCodeElement
'* '*
If (type.Equals(GetType(BBCodeElement))) Then If (type.Equals(GetType(BBCodeElement(Of TContext)))) Then
el = New BBCodeElement() el = New BBCodeElement(Of TContext)()
Else Else
'* '*
'* Gets the default constructor '* Gets the default constructor
@ -73,13 +73,13 @@ Friend NotInheritable Class BBCodeElementFactory
'* '*
'* Creates the new element. '* Creates the new element.
'* '*
el = TryCast(ctor.Invoke(New Object() {}), BBCodeElement) el = TryCast(ctor.Invoke(New Object() {}), BBCodeElement(Of TContext))
If (el Is Nothing) Then If (el Is Nothing) Then
Throw New InvalidOperationException("The type " & type.FullName & " could not be assingned to BBCodeElement.") Throw New InvalidOperationException("The type " & type.FullName & " could not be assingned to BBCodeElement.")
End If End If
End If End If
Else Else
el = New BBCodeElement() el = New BBCodeElement(Of TContext)()
End If End If
'* '*

@ -24,7 +24,7 @@ Imports System.Diagnostics.CodeAnalysis
''' </summary> ''' </summary>
<Serializable()> _ <Serializable()> _
<XmlRoot(ElementName:=STR_BBCodeElementTypesXmlElement, [Namespace]:=STR_BBCodeSchemaNamespace)> _ <XmlRoot(ElementName:=STR_BBCodeElementTypesXmlElement, [Namespace]:=STR_BBCodeSchemaNamespace)> _
Public NotInheritable Class BBCodeElementTypeDictionary Public NotInheritable Class BBCodeElementTypeDictionary(Of TContext As Class)
Inherits Dictionary(Of String, BBCodeElementTypeDefinition) Inherits Dictionary(Of String, BBCodeElementTypeDefinition)
Implements IXmlSerializable Implements IXmlSerializable
@ -49,7 +49,7 @@ Public NotInheritable Class BBCodeElementTypeDictionary
''' <param name="value">The value of the element to add.</param> ''' <param name="value">The value of the element to add.</param>
Private Shadows Sub Add(ByVal tagName As String, ByVal value As BBCodeElementTypeDefinition) Private Shadows Sub Add(ByVal tagName As String, ByVal value As BBCodeElementTypeDefinition)
ValidateTagName(tagName) ValidateTagName(tagName)
ValidateBBCodeElementType(value.Type) ValidateBBCodeElementType(Of TContext)(value.Type)
MyBase.Add(tagName.ToUpperInvariant(), value) MyBase.Add(tagName.ToUpperInvariant(), value)
End Sub End Sub
@ -89,7 +89,7 @@ Public NotInheritable Class BBCodeElementTypeDictionary
Boolean.TryParse(reader.GetAttribute("requireClosingTag"), .RequireClosingTag) Boolean.TryParse(reader.GetAttribute("requireClosingTag"), .RequireClosingTag)
.Type = System.Type.GetType(reader.GetAttribute("type")) .Type = System.Type.GetType(reader.GetAttribute("type"))
End With End With
If (definition.Type.IsSubclassOf(GetType(BBCodeElement))) Then If (definition.Type.IsSubclassOf(GetType(BBCodeElement(Of TContext)))) Then
Me.Add(definition.TagName, definition) Me.Add(definition.TagName, definition)
End If End If
Loop Loop

@ -18,10 +18,10 @@
''' <summary> ''' <summary>
''' Represents the basic node of an BBCode document. ''' Represents the basic node of an BBCode document.
''' </summary> ''' </summary>
Public MustInherit Class BBCodeNode Public MustInherit Class BBCodeNode(Of TContext As Class)
Private __Parent As BBCodeNode Private __Parent As BBCodeNode(Of TContext)
Private __Parser As BBCodeParser Private __Parser As BBCodeParser(Of TContext)
''' <summary>Initializes an instance of the <see cref="BBCodeNode" /> class. ''' <summary>Initializes an instance of the <see cref="BBCodeNode" /> class.
''' This is the default constructor for this class.</summary> ''' This is the default constructor for this class.</summary>
@ -30,14 +30,14 @@ Public MustInherit Class BBCodeNode
''' <summary>Initializes an instance of the <see cref="BBCodeNode" /> class.</summary> ''' <summary>Initializes an instance of the <see cref="BBCodeNode" /> class.</summary>
''' <param name="parser">The parser used to create this element.</param> ''' <param name="parser">The parser used to create this element.</param>
Protected Sub New(ByVal parser As BBCodeParser) Protected Sub New(ByVal parser As BBCodeParser(Of TContext))
__Parser = parser __Parser = parser
End Sub End Sub
''' <summary> ''' <summary>
''' Gets the parent node. ''' Gets the parent node.
''' </summary> ''' </summary>
Public ReadOnly Property Parent() As BBCodeNode Public ReadOnly Property Parent() As BBCodeNode(Of TContext)
Get Get
Return __Parent Return __Parent
End Get End Get
@ -46,7 +46,7 @@ Public MustInherit Class BBCodeNode
''' <summary> ''' <summary>
''' Gets the <see cref="BBCodeParser"/> that create this instance of the <see cref="BBCodeNode"/>. ''' Gets the <see cref="BBCodeParser"/> that create this instance of the <see cref="BBCodeNode"/>.
''' </summary> ''' </summary>
Protected Friend ReadOnly Property Parser() As BBCodeParser Protected Friend ReadOnly Property Parser() As BBCodeParser(Of TContext)
Get Get
Return __Parser Return __Parser
End Get End Get
@ -57,7 +57,7 @@ Public MustInherit Class BBCodeNode
''' </summary> ''' </summary>
''' <param name="formatter">An object that implements the <see cref="ITextFormatter"/> interface.</param> ''' <param name="formatter">An object that implements the <see cref="ITextFormatter"/> interface.</param>
''' <returns>The text formatted by the <see cref="ITextFormatter"/>.</returns> ''' <returns>The text formatted by the <see cref="ITextFormatter"/>.</returns>
Public MustOverride Function Format(ByVal formatter As ITextFormatter) As String Public MustOverride Function Format(ByVal context As TContext, ByVal formatter As ITextFormatter) As String
''' <summary> ''' <summary>
''' When implemented in a derived class, gets or sets the inner BBCode. ''' When implemented in a derived class, gets or sets the inner BBCode.
@ -81,7 +81,7 @@ Public MustInherit Class BBCodeNode
''' Sets the <see cref="BBCodeParser"/> of this instance. ''' Sets the <see cref="BBCodeParser"/> of this instance.
''' </summary> ''' </summary>
''' <param name="parser">The new parser of this instance.</param> ''' <param name="parser">The new parser of this instance.</param>
Friend Sub SetParser(ByVal parser As BBCodeParser) Friend Sub SetParser(ByVal parser As BBCodeParser(Of TContext))
__Parser = parser __Parser = parser
End Sub End Sub
@ -89,8 +89,8 @@ Public MustInherit Class BBCodeNode
''' The the parent node of this instance of the <see cref="BBCodeNode"/>. ''' The the parent node of this instance of the <see cref="BBCodeNode"/>.
''' </summary> ''' </summary>
''' <param name="parentNode">The parent node.</param> ''' <param name="parentNode">The parent node.</param>
Protected Friend Sub SetParent(ByVal parentNode As BBCodeNode) Protected Friend Sub SetParent(ByVal parentNode As BBCodeNode(Of TContext))
Dim element = TryCast(parentNode, BBCodeElement) Dim element = TryCast(parentNode, BBCodeElement(Of TContext))
If (element Is Nothing) OrElse (String.IsNullOrEmpty(element.Name)) Then If (element Is Nothing) OrElse (String.IsNullOrEmpty(element.Name)) Then
__Parent = Nothing __Parent = Nothing
Else Else

@ -18,10 +18,10 @@
''' <summary> ''' <summary>
''' Represents a collection of <see cref="BBCodeNode"/>. ''' Represents a collection of <see cref="BBCodeNode"/>.
''' </summary> ''' </summary>
Public Class BBCodeNodeCollection Public Class BBCodeNodeCollection(Of TContext As Class)
Inherits ObjectModel.Collection(Of BBCodeNode) Inherits ObjectModel.Collection(Of BBCodeNode(Of TContext))
Private __Owner As BBCodeNode Private __Owner As BBCodeNode(Of TContext)
''' <summary>Initializes an instance of the <see cref="BBCodeNodeCollection" /> class. ''' <summary>Initializes an instance of the <see cref="BBCodeNodeCollection" /> class.
''' This is the default constructor for this class.</summary> ''' This is the default constructor for this class.</summary>
@ -31,7 +31,7 @@ Public Class BBCodeNodeCollection
''' <summary>Initializes an instance of the <see cref="BBCodeNodeCollection" /> class.</summary> ''' <summary>Initializes an instance of the <see cref="BBCodeNodeCollection" /> class.</summary>
''' <param name="owner">The collection owner.</param> ''' <param name="owner">The collection owner.</param>
''' <exception cref="ArgumentNullException">The argument <paramref name="owner" /> is <langword name="null" />.</exception> ''' <exception cref="ArgumentNullException">The argument <paramref name="owner" /> is <langword name="null" />.</exception>
Friend Sub New(ByVal owner As BBCodeNode) Friend Sub New(ByVal owner As BBCodeNode(Of TContext))
If (owner Is Nothing) Then If (owner Is Nothing) Then
Throw New ArgumentNullException("owner") Throw New ArgumentNullException("owner")
End If End If
@ -41,7 +41,7 @@ Public Class BBCodeNodeCollection
''' <summary> ''' <summary>
''' Gets or sets the owner of the collection. ''' Gets or sets the owner of the collection.
''' </summary> ''' </summary>
Friend ReadOnly Property Owner() As BBCodeNode Friend ReadOnly Property Owner() As BBCodeNode(Of TContext)
Get Get
Return __Owner Return __Owner
End Get End Get
@ -50,7 +50,7 @@ Public Class BBCodeNodeCollection
''' <summary>Adds an object to the end of the <see cref="BBCodeNodeCollection" />.</summary> ''' <summary>Adds an object to the end of the <see cref="BBCodeNodeCollection" />.</summary>
''' <param name="node">The object to be added to the end of the <see cref="BBCodeNodeCollection" />.</param> ''' <param name="node">The object to be added to the end of the <see cref="BBCodeNodeCollection" />.</param>
''' <exception cref="ArgumentNullException">The argument <paramref name="node" /> is <langword name="null" />.</exception> ''' <exception cref="ArgumentNullException">The argument <paramref name="node" /> is <langword name="null" />.</exception>
Public Shadows Sub Add(ByVal node As BBCodeNode) Public Shadows Sub Add(ByVal node As BBCodeNode(Of TContext))
If (node Is Nothing) Then If (node Is Nothing) Then
Throw New ArgumentNullException("node") Throw New ArgumentNullException("node")
End If End If
@ -61,7 +61,7 @@ Public Class BBCodeNodeCollection
''' <summary>Adds the elements of the specified collection to the end of the <see cref="BBCodeNodeCollection" />.</summary> ''' <summary>Adds the elements of the specified collection to the end of the <see cref="BBCodeNodeCollection" />.</summary>
''' <param name="collection">The collection whose elements should be added to the end of the <see cref="BBCodeNodeCollection" />.</param> ''' <param name="collection">The collection whose elements should be added to the end of the <see cref="BBCodeNodeCollection" />.</param>
''' <exception cref="ArgumentNullException">The argument <paramref name="collection" /> is <langword name="null" />.</exception> ''' <exception cref="ArgumentNullException">The argument <paramref name="collection" /> is <langword name="null" />.</exception>
Public Shadows Sub AddRange(ByVal collection As IEnumerable(Of BBCodeNode)) Public Shadows Sub AddRange(ByVal collection As IEnumerable(Of BBCodeNode(Of TContext)))
If (collection Is Nothing) Then If (collection Is Nothing) Then
Throw New ArgumentNullException("collection") Throw New ArgumentNullException("collection")
End If End If
@ -75,7 +75,7 @@ Public Class BBCodeNodeCollection
''' </summary> ''' </summary>
''' <param name="index">The zero-based index at which item should be inserted.</param> ''' <param name="index">The zero-based index at which item should be inserted.</param>
''' <param name="node">The object to insert.</param> ''' <param name="node">The object to insert.</param>
Public Shadows Sub Insert(ByVal index As Integer, ByVal node As BBCodeNode) Public Shadows Sub Insert(ByVal index As Integer, ByVal node As BBCodeNode(Of TContext))
node.SetParent(Me.Owner) node.SetParent(Me.Owner)
MyBase.Insert(index, node) MyBase.Insert(index, node)
End Sub End Sub
@ -85,7 +85,7 @@ Public Class BBCodeNodeCollection
''' </summary> ''' </summary>
''' <param name="index">The zero-based index at which item should be inserted.</param> ''' <param name="index">The zero-based index at which item should be inserted.</param>
''' <param name="collection">The collection whose elements should be inserted into the <see cref="BBCodeNodeCollection" />.</param> ''' <param name="collection">The collection whose elements should be inserted into the <see cref="BBCodeNodeCollection" />.</param>
Public Shadows Sub InsertRange(ByVal index As Integer, ByVal collection As IEnumerable(Of BBCodeNode)) Public Shadows Sub InsertRange(ByVal index As Integer, ByVal collection As IEnumerable(Of BBCodeNode(Of TContext)))
For Each node In collection For Each node In collection
node.SetParent(Me.Owner) node.SetParent(Me.Owner)
Next Next

@ -21,12 +21,12 @@ Imports System.Diagnostics.CodeAnalysis
''' <summary> ''' <summary>
''' The parser of ''' The parser of
''' </summary> ''' </summary>
Public NotInheritable Class BBCodeParser Public NotInheritable Class BBCodeParser(Of TContext As Class)
Private __Factory As BBCodeElementFactory Private __Factory As BBCodeElementFactory(Of TContext)
Private __Configuration As BBCodeConfiguration Private __Configuration As BBCodeConfiguration(Of TContext)
Private Shared ReadOnly __ConfigSerializer As New System.Xml.Serialization.XmlSerializer(GetType(BBCodeConfiguration)) Private Shared ReadOnly __ConfigSerializer As New System.Xml.Serialization.XmlSerializer(GetType(BBCodeConfiguration(Of TContext)))
Private Shared ReadOnly __Tokenizer As Tokenization.Tokenizer = PrepareTokenizer() Private Shared ReadOnly __Tokenizer As Tokenization.Tokenizer = PrepareTokenizer()
''' <summary>Initializes an instance of the <see cref="BBCodeParser" /> class. ''' <summary>Initializes an instance of the <see cref="BBCodeParser" /> class.
@ -40,7 +40,7 @@ Public NotInheritable Class BBCodeParser
Public ReadOnly Property Dictionary() As BBCodeElementDictionary Public ReadOnly Property Dictionary() As BBCodeElementDictionary
Get Get
If (__Configuration Is Nothing) Then If (__Configuration Is Nothing) Then
__Configuration = New BBCodeConfiguration() __Configuration = New BBCodeConfiguration(Of TContext)()
End If End If
Return __Configuration.Dictionary Return __Configuration.Dictionary
End Get End Get
@ -49,10 +49,10 @@ Public NotInheritable Class BBCodeParser
''' <summary> ''' <summary>
''' Gets the dictionary of types created by the parser. ''' Gets the dictionary of types created by the parser.
''' </summary> ''' </summary>
Public ReadOnly Property ElementTypes() As BBCodeElementTypeDictionary Public ReadOnly Property ElementTypes() As BBCodeElementTypeDictionary(Of TContext)
Get Get
If (__Configuration Is Nothing) Then If (__Configuration Is Nothing) Then
__Configuration = New BBCodeConfiguration() __Configuration = New BBCodeConfiguration(Of TContext)()
End If End If
Return __Configuration.ElementTypes Return __Configuration.ElementTypes
End Get End Get
@ -134,7 +134,7 @@ Public NotInheritable Class BBCodeParser
''' </summary> ''' </summary>
''' <param name="text">The text to be parsed.</param> ''' <param name="text">The text to be parsed.</param>
''' <returns>A <see cref="BBCodeNodeCollection"/> containing the parsed text.</returns> ''' <returns>A <see cref="BBCodeNodeCollection"/> containing the parsed text.</returns>
Public Function Parse(ByVal text As String) As BBCodeDocument Public Function Parse(ByVal text As String) As BBCodeDocument(Of TContext)
Using reader As New IO.StringReader(text) Using reader As New IO.StringReader(text)
Return Parse(reader) Return Parse(reader)
End Using End Using
@ -145,7 +145,7 @@ Public NotInheritable Class BBCodeParser
''' </summary> ''' </summary>
''' <param name="stream">The <see cref="IO.Stream"/> to be parsed.</param> ''' <param name="stream">The <see cref="IO.Stream"/> to be parsed.</param>
''' <returns>A <see cref="BBCodeNodeCollection"/> containing the parsed <see cref="IO.Stream"/>.</returns> ''' <returns>A <see cref="BBCodeNodeCollection"/> containing the parsed <see cref="IO.Stream"/>.</returns>
Public Function Parse(ByVal stream As IO.Stream) As BBCodeDocument Public Function Parse(ByVal stream As IO.Stream) As BBCodeDocument(Of TContext)
Return Parse(stream, Text.Encoding.UTF8) Return Parse(stream, Text.Encoding.UTF8)
End Function End Function
@ -155,7 +155,7 @@ Public NotInheritable Class BBCodeParser
''' <param name="stream">The <see cref="IO.Stream"/> to be parsed.</param> ''' <param name="stream">The <see cref="IO.Stream"/> to be parsed.</param>
''' <param name="encoding">The encoding of the stream.</param> ''' <param name="encoding">The encoding of the stream.</param>
''' <returns>A <see cref="BBCodeNodeCollection"/> containing the parsed <see cref="IO.Stream"/>.</returns> ''' <returns>A <see cref="BBCodeNodeCollection"/> containing the parsed <see cref="IO.Stream"/>.</returns>
Public Function Parse(ByVal stream As IO.Stream, ByVal encoding As Text.Encoding) As BBCodeDocument Public Function Parse(ByVal stream As IO.Stream, ByVal encoding As Text.Encoding) As BBCodeDocument(Of TContext)
Return Parse(New IO.StreamReader(stream, encoding)) Return Parse(New IO.StreamReader(stream, encoding))
End Function End Function
@ -164,11 +164,11 @@ Public NotInheritable Class BBCodeParser
''' </summary> ''' </summary>
''' <param name="reader">The <see cref="IO.TextReader"/> to be parsed.</param> ''' <param name="reader">The <see cref="IO.TextReader"/> to be parsed.</param>
''' <returns>A <see cref="BBCodeNodeCollection"/> containing the parsed <see cref="IO.TextReader"/>.</returns> ''' <returns>A <see cref="BBCodeNodeCollection"/> containing the parsed <see cref="IO.TextReader"/>.</returns>
Public Function Parse(ByVal reader As IO.TextReader) As BBCodeDocument Public Function Parse(ByVal reader As IO.TextReader) As BBCodeDocument(Of TContext)
Dim doc = New BBCodeDocument(Me) Dim doc = New BBCodeDocument(Of TContext)(Me)
Dim rootElement As New BBCodeElement(Me) Dim rootElement As New BBCodeElement(Of TContext)(Me)
Dim currentElement As BBCodeElement = rootElement Dim currentElement As BBCodeElement(Of TContext) = rootElement
Dim tk As Tokenization.Token Dim tk As Tokenization.Token
Dim sb As New Text.StringBuilder() Dim sb As New Text.StringBuilder()
@ -195,7 +195,7 @@ Public NotInheritable Class BBCodeParser
'* Add the text node '* Add the text node
'* '*
If (sb.Length > 0) Then If (sb.Length > 0) Then
currentElement.Nodes.Add(New BBCodeText(sb.ToString())) currentElement.Nodes.Add(New BBCodeText(Of TContext)(sb.ToString()))
End If End If
'* '*
@ -226,16 +226,16 @@ Public NotInheritable Class BBCodeParser
''' <summary> ''' <summary>
''' Gets the <see cref="BBCodeElementFactory"/>. ''' Gets the <see cref="BBCodeElementFactory"/>.
''' </summary> ''' </summary>
Private ReadOnly Property Factory() As BBCodeElementFactory Private ReadOnly Property Factory() As BBCodeElementFactory(Of TContext)
Get Get
If (__Factory Is Nothing) Then If (__Factory Is Nothing) Then
__Factory = New BBCodeElementFactory(Me) __Factory = New BBCodeElementFactory(Of TContext)(Me)
End If End If
Return __Factory Return __Factory
End Get End Get
End Property End Property
Private Sub ParseElement(ByVal rootElement As BBCodeElement, ByRef currentElement As BBCodeElement, ByVal token As Tokenization.Token, ByVal sb As Text.StringBuilder, ByVal tag As BBCodeTag) Private Sub ParseElement(ByVal rootElement As BBCodeElement(Of TContext), ByRef currentElement As BBCodeElement(Of TContext), ByVal token As Tokenization.Token, ByVal sb As Text.StringBuilder, ByVal tag As BBCodeTag)
'* '*
'* Check the token Type '* Check the token Type
@ -261,13 +261,13 @@ Public NotInheritable Class BBCodeParser
End Sub End Sub
Private Sub ParseTag(ByRef currentElement As BBCodeElement, ByVal sb As Text.StringBuilder, ByVal tag As BBCodeTag) Private Sub ParseTag(ByRef currentElement As BBCodeElement(Of TContext), ByVal sb As Text.StringBuilder, ByVal tag As BBCodeTag)
'* '*
'* Add the text previous to the current element '* Add the text previous to the current element
'* '*
If (sb.Length > 0) Then If (sb.Length > 0) Then
currentElement.Nodes.Add(New BBCodeText(sb.ToString())) currentElement.Nodes.Add(New BBCodeText(Of TContext)(sb.ToString()))
sb.Remove(0, sb.Length) sb.Remove(0, sb.Length)
End If End If
@ -286,7 +286,7 @@ Public NotInheritable Class BBCodeParser
End Sub End Sub
Private Shared Sub ParseClosingTag(ByVal rootElement As BBCodeElement, ByRef currentElement As BBCodeElement, ByVal token As Tokenization.Token, ByVal sb As Text.StringBuilder, ByVal tag As BBCodeTag) Private Shared Sub ParseClosingTag(ByVal rootElement As BBCodeElement(Of TContext), ByRef currentElement As BBCodeElement(Of TContext), ByVal token As Tokenization.Token, ByVal sb As Text.StringBuilder, ByVal tag As BBCodeTag)
'* '*
'* Check if the closing tag is closing a previously open tag '* Check if the closing tag is closing a previously open tag
@ -296,7 +296,7 @@ Public NotInheritable Class BBCodeParser
'* Add the inner text '* Add the inner text
'* '*
If (sb.Length > 0) Then If (sb.Length > 0) Then
currentElement.Nodes.Add(New BBCodeText(sb.ToString())) currentElement.Nodes.Add(New BBCodeText(Of TContext)(sb.ToString()))
sb.Remove(0, sb.Length) sb.Remove(0, sb.Length)
End If End If

@ -18,8 +18,8 @@
''' <summary> ''' <summary>
''' Represents a simple text in the BBCode. ''' Represents a simple text in the BBCode.
''' </summary> ''' </summary>
Public NotInheritable Class BBCodeText Public NotInheritable Class BBCodeText(Of TContext As Class)
Inherits BBCodeNode Inherits BBCodeNode(Of TContext)
Private __InnerText As String Private __InnerText As String
@ -37,7 +37,7 @@ Public NotInheritable Class BBCodeText
''' <summary>Transforms this instance of <see cref="BBCodeText" /> into its desired text representation.</summary> ''' <summary>Transforms this instance of <see cref="BBCodeText" /> into its desired text representation.</summary>
''' <param name="formatter">An object that implements the <see cref="ITextFormatter" /> interface.</param> ''' <param name="formatter">An object that implements the <see cref="ITextFormatter" /> interface.</param>
''' <returns>The text formatted by the <see cref="ITextFormatter" />.</returns> ''' <returns>The text formatted by the <see cref="ITextFormatter" />.</returns>
Public Overrides Function Format(ByVal formatter As ITextFormatter) As String Public Overrides Function Format(ByVal context As TContext, ByVal formatter As ITextFormatter) As String
Return formatter.Format(__InnerText) Return formatter.Format(__InnerText)
End Function End Function

@ -68,7 +68,7 @@ Friend Module Utils
''' Validates the specified type to ensure that it is a subclass of <see cref="BBCodeElement"/>. ''' Validates the specified type to ensure that it is a subclass of <see cref="BBCodeElement"/>.
''' </summary> ''' </summary>
''' <param name="value">The <see cref="Type"/> to be validated.</param> ''' <param name="value">The <see cref="Type"/> to be validated.</param>
Public Sub ValidateBBCodeElementType(ByVal value As Type) Public Sub ValidateBBCodeElementType(Of TContext As Class)(ByVal value As Type)
'* '*
'* Validate is nothing '* Validate is nothing
@ -80,7 +80,7 @@ Friend Module Utils
'* '*
'* Validates the BBCodeElement itself '* Validates the BBCodeElement itself
'* '*
Dim bbcodeType = GetType(BBCodeElement) Dim bbcodeType = GetType(BBCodeElement(Of TContext))
If (value.Equals(bbcodeType)) Then If (value.Equals(bbcodeType)) Then
Exit Sub Exit Sub
End If End If

Loading…
Cancel
Save