using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;
using System.Windows.Forms;
class SampleForm : Form
{
static readonly int ExpectedHeaderMaxLines = 20;
static readonly Regex rxTableBeginTag = new Regex(@"
]*>", RegexOptions.Multiline | RegexOptions.IgnoreCase);
// 1 2 3 *?は最短マッチ o:pはMS office(word)対策
static readonly Regex rxTag = new Regex(@"<([a-z][a-z0-9]*|o:p)(|\s[^>]*)>|([a-z][a-z0-9]*|o:p)>|", RegexOptions.Multiline | RegexOptions.IgnoreCase);
//static readonly Regex rxTag = new Regex(@"<([a-z][a-z0-9]*)(|\s[^>]*)>|([a-z][a-z0-9]*)>|", RegexOptions.Multiline | RegexOptions.IgnoreCase);
TextBox txtAdoc;
SampleForm()
{
Text = "HTML table(Clipborad) to AsciiDoc";
ClientSize = new Size(700, 430);
var btn = new Button()
{
Size = new Size(280, 25),
Text = "Get AsciiDoc from Clipborad",
};
btn.Click += (s, e) => { ParseFromHtmlClipboard(); };
Controls.Add(btn);
var btnDbg = new Button()
{
Location = new Point(300, 0),
Size = new Size(220, 25),
Text = "Get HTML from Clipborad(開発者用)",
};
btnDbg.Click += (s, e) => { DumpHtmlClipboard(); };
Controls.Add(btnDbg);
txtAdoc = new TextBox()
{
Location = new Point(0, 30),
Size = new Size(700, 400),
Text = "",
Multiline = true,
WordWrap = false, // 折り返し表示をしない
ScrollBars = ScrollBars.Both,
};
Controls.Add(txtAdoc);
txtAdoc.KeyDown += (s, e) => { if (e.Control && e.KeyCode == Keys.A) { ((TextBox)s).SelectAll(); } };
Resize += (s, e) => { MyResize(); };
ResizeEnd += (s, e) => { MyResize(); };
}
void MyResize()
{
int h = ClientSize.Height - txtAdoc.Top;
if (h < 50) { h = 50; }
txtAdoc.Size = new Size(ClientSize.Width, h);
}
void ParseFromHtmlClipboard()
{
MemoryStream ms = GetHtmlClipboard();
if (ms != null)
{
string tmp = Parse(ms);
if (tmp != null)
{
txtAdoc.Text = tmp;
txtAdoc.Focus();
txtAdoc.SelectAll();
}
else
{
txtAdoc.Text = "Parse Failed";
}
}
else
{
txtAdoc.Text = "Clipboard Load failed";
}
}
void DumpHtmlClipboard()
{
MemoryStream ms = GetHtmlClipboard();
if (ms != null)
{
string tmp = GetHtmlText(ms);
if (tmp != null)
{
txtAdoc.Text = tmp;
//txtAdoc.Focus();
//txtAdoc.SelectAll();
}
else
{
txtAdoc.Text = "Parse Failed";
}
}
else
{
txtAdoc.Text = "Clipboard Load failed";
}
}
static MemoryStream GetHtmlClipboard()
{
return Clipboard.GetData("Html Format") as MemoryStream;
}
static string GetHtmlText(MemoryStream ms)
{
int startHtml = -1;
int endHtml = -1;
// ヘッダ情報(StartHTML, EndHTML)を取得
// StartHTML:nnnnnnnnnn
// EndHTML:nnnnnnnnnn
//public StreamReader(Stream stream, Encoding encoding, bool detectEncodingFromByteOrderMarks, int bufferSize, bool leaveOpen)
// leaveOpen=trueで開かないと、msが閉じてしまう。
using (var sr = new StreamReader(ms, Encoding.UTF8, true, 1024, true))
{
Regex rx = new Regex(@"^(StartHTML:|EndHTML:)([0-9]+)");
int lineCount = 0;
string s;
while ((s = sr.ReadLine()) != null)
{
lineCount++;
Match m = rx.Match(s);
if (m.Success)
{
int n = Convert.ToInt32(m.Groups[2].Value, 10); // 10進
if (m.Groups[1].Value == "StartHTML:")
{
startHtml = n;
}
else
{
endHtml = n;
}
if (startHtml >= 0 && endHtml > startHtml)
{
break;
}
}
if (lineCount >= ExpectedHeaderMaxLines)
{
break;
}
}
}
// HTML部分を取得(EndHTMLは無視)
ms.Position = startHtml;
using (var sr = new StreamReader(ms, Encoding.UTF8, false))
{
return sr.ReadToEnd();
}
}
// stypeタグの中身を返す
static string GetStyleText(string htmlText, out int endPos)
{
string retString = null;
endPos = 0;
int styleStartTagPos = 0;
int maxStyleTag = 50;
int styletagCounter = 0;
while (styletagCounter < maxStyleTag)
{
styletagCounter++;
styleStartTagPos = htmlText.IndexOf("", styleStartTagPos);
if (styleEndTagPos < 0)
{
break;
}
endPos = styleEndTagPos + "".Length;
int commentStartTagPos = htmlText.IndexOf("", commentStartTagPos);
if (commentStartTagPos >= 0 && commentEndTagPos > commentStartTagPos && commentEndTagPos < styleEndTagPos)
{
// コメントタグがある場合、コメントタグを除去(コメントタグ内のみを返す)
retString += htmlText.Substring(commentStartTagPos, commentEndTagPos - commentStartTagPos);
}
else
{
// コメントタグがない場合
retString += htmlText.Substring(styleStartTagPos, styleEndTagPos - styleStartTagPos);
}
styleStartTagPos = endPos;
}
return retString;
}
static int IndexOfUsingRegex(string src, int startPos, Regex rTarget, out int length)
{
Match m = rTarget.Match(src, startPos);
if (!m.Success)
{
length = 0;
return -1;
}
length = m.Groups[0].Length;
return m.Groups[0].Index;
}
// tableタグ込みで返す
// ネストは許容しない(検出してnullを返す)
static string GetFirstTableText(string htmlText, int pos)
{
int len;
int tableStartTagPos = IndexOfUsingRegex(htmlText, pos, rxTableBeginTag, out len);
if (tableStartTagPos < 0)
{
return null;
}
int tableEndTagPos = htmlText.IndexOf("
", tableStartTagPos + len);
if (tableEndTagPos < 0)
{
return null;
}
int dummy;
int tmpPos = IndexOfUsingRegex(htmlText, tableStartTagPos + len, rxTableBeginTag, out dummy);
if (tmpPos >= 0 && tmpPos < tableEndTagPos)
{
// ネストしている(閉じタグよりも手前の位置に2つ目の開始タグを検出した)
return null;
}
tableEndTagPos += "".Length;
return htmlText.Substring(tableStartTagPos, tableEndTagPos - tableStartTagPos);
}
//static readonly Regex rxCss = new Regex(@":;", RegexOptions.Multiline | RegexOptions.IgnoreCase);
//static Dictionary> ParseCssPart(string styleText)
//{
//}
// https://momdo.github.io/html/syntax.html#attributes-2
// 属性名は、制御文字、U+0020 SPACE、U+0022(")、U+0027(')、U+003E(>)、U+002F(/)、U+003D(=)、および非文字以外の1つ以上の文字で構成されなければならない。HTML構文において、外来要素に対するものでさえ、属性名は、ASCII小文字およびASCII大文字の任意の組み合わせで書かれてもよい。
// 属性値は、テキストが曖昧なアンパサンドを含めることができない追加の制限をもつ場合を除き、テキストおよび文字参照の混合物である。
// 引用符で囲まれない属性値構文
// ASCII空白文字 U+0022 QUOTATION MARK文字(")、
// U+0027 APOSTROPHE文字(')、U+003D EQUALS SIGN文字(=)、
// U+003C LESS-THAN SIGN文字(<)、U+003E GREATER-THAN SIGN文字(>)、
// またはU+0060 GRAVE ACCENT文字(`)文字を含んではならず、かつ空文字列であってはならない。
// 1 = 2 3 4
// <-------------------------------------> <--------------------------------> <-----> <------->
// <---------------------------------------------------------------->
static readonly Regex rxAttr = new Regex(@"\b([^\x00-\x1F\x20\x22\x27\x2F\x3D\x3E]+)\s*(?:=\s*(?:([^\x20\x22\x27\x3C\x3D\x3E\x60]+)|'([^']*)'|\x22([^x22]*)\x22))?", RegexOptions.Multiline | RegexOptions.IgnoreCase);
static Dictionary ParseAttrs(string attrsStr)
{
var dict = new Dictionary();
Match mAttr = rxAttr.Match(attrsStr);
while (mAttr.Success)
{
string key = mAttr.Groups[1].Value.ToLower();
string value = "";
if (mAttr.Groups[2].Length > 0)
{
value = mAttr.Groups[2].Value;
}
else if (mAttr.Groups[3].Length > 0)
{
value = mAttr.Groups[3].Value;
}
else if (mAttr.Groups[4].Length > 0)
{
value = mAttr.Groups[4].Value;
}
else
{ // without "="
// do nothing
}
if (!dict.ContainsKey(key))
{
dict.Add(key, value);
}
mAttr = mAttr.NextMatch();
}
return dict;
}
static string EscapeContentForAdocTableCell(string s)
{
// Replace (string input, string replacement);
s = rxTag.Replace(s, ""); // HTML全般のタグを消去
s = s.Replace("\r\n", " ")
.Replace("\n", " ")
.Replace("\r", " ")
.Replace("\t", " ")
.Replace(" ", " ")
.Replace("<", "<")
.Replace(">", ">")
.Replace("&", "&")
.Replace("|", "{VBar}"); // ADoc用
return s;
}
static string ParseTableToAdoc(string tableText, Dictionary> classFormat)
{
var sb = new StringBuilder();
Match m = rxTag.Match(tableText);
string lastStartTag = null;
int lastPos = -1;
int lastTdPos = -1;
int currentTdCount = 0;
int maxTdCount = 0;
sb.AppendLine("|===");
while (m.Success)
{
if (m.Groups[1].Length > 0)
{
string tag = m.Groups[1].Value;
string attrsStr = m.Groups[2].Value;
lastPos = m.Groups[0].Index + m.Groups[0].Length;
if (tag == "tr")
{
maxTdCount = Math.Max(maxTdCount, currentTdCount);
currentTdCount = 0;
}
else if (tag == "td")
{
lastTdPos = lastPos;
if (lastStartTag != "tr")
{
sb.Append(" ");
}
var attrs = ParseAttrs(attrsStr);
if (attrs.ContainsKey("colspan") || attrs.ContainsKey("rowspan"))
{
if (attrs.ContainsKey("colspan"))
{
sb.Append(attrs["colspan"]);
currentTdCount = currentTdCount + int.Parse(attrs["colspan"])-1;
}
if (attrs.ContainsKey("rowspan"))
{
sb.Append(".");
sb.Append(attrs["rowspan"]);
}
sb.Append("+");
}
if (attrs.ContainsKey("class"))
{
var format = classFormat["default"];
string classid = attrs["class"];
if (classFormat.ContainsKey(classid)){
format = classFormat[classid];
}
sb.Append(format["text-align"].Replace("general", "<").Replace("left", "<").Replace("center", "^").Replace("right", ">"));
sb.Append(".");
sb.Append(format["vertical-align"].Replace("general", "<").Replace("top", "<").Replace("middle", "^").Replace("bottom", ">"));
}
else
{
var format = classFormat["default"];
sb.Append(format["text-align"].Replace("general", "<").Replace("left", "<").Replace("center", "^").Replace("right", ">"));
sb.Append(".");
sb.Append(format["vertical-align"].Replace("general", "<").Replace("top", "<").Replace("middle", "^").Replace("bottom", ">"));
}
sb.Append("|");
currentTdCount++;
}
lastStartTag = tag;
}
else if (m.Groups[3].Length > 0)
{
string tag = m.Groups[3].Value;
int tagStartPos = m.Groups[0].Index;
//Console.WriteLine("" + m.Groups[3].Value +">");
if (tag == "tr")
{
sb.AppendLine("");
}
else if (tag == "td")
{
string s = tableText.Substring(lastTdPos, tagStartPos - lastTdPos);
sb.Append(EscapeContentForAdocTableCell(s));
lastTdPos = -1;
}
lastPos = -1;
lastStartTag = null;
}
m = m.NextMatch();
}
sb.AppendLine("|===");
//整形
sb = sb.Replace("<.<", "");
string firstLine = "[cols=\"<.> classFormat = GetFormat(styleText);
string tableText = GetFirstTableText(htmlText, pos);
return ParseTableToAdoc(tableText, classFormat);
}
static Dictionary> GetFormat(string styleText)
{
int maxFormatNum = 100;
int counter = 0;
int endPos = 0;
Regex reg = new Regex(@"[\t {};]");
// デフォルト値のデフォルト値
var dctDefault = new Dictionary();
dctDefault.Add("color", "black");
dctDefault.Add("background", "black");
dctDefault.Add("text-align", "left");
dctDefault.Add("vertical-align", "top");
// デフォルト値取得
int startTdTagPos = styleText.IndexOf("td\r\n\t{", 0);
int endTdTagPos = styleText.IndexOf(";}", startTdTagPos);
string defauletFromatText= styleText.Substring(startTdTagPos, endTdTagPos + ";}".Length-startTdTagPos);
var defaultLines = reg.Replace(defauletFromatText, "").Replace("\r\n", "\n").Split(new[] { '\n', '\r' });
foreach (string line in defaultLines)
{
string[] words = line.Split(':');
if (dctDefault.ContainsKey(words[0]))
{
dctDefault[words[0]] = words[1];
}
}
var ret = new Dictionary>();
ret.Add("default", dctDefault);
// 各クラスの書式を取得
while (counter < maxFormatNum)
{
counter++;
int formatStartTagPos = styleText.IndexOf(".xl", endPos);
if (formatStartTagPos < 0)
{
break;
}
formatStartTagPos += ".xl".Length;
int formatEndTagPos = styleText.IndexOf(";}", formatStartTagPos);
if (formatEndTagPos < 0)
{
break;
}
endPos = formatEndTagPos + ";}".Length;
string formatText = styleText.Substring(formatStartTagPos, endPos - formatStartTagPos);
var lines = reg.Replace(formatText, "").Replace("\r\n", "\n").Split(new[] { '\n', '\r' });
string classid = "xl" + lines[0];
var dctFormat = new Dictionary();
dctFormat.Add("color", dctDefault["color"]);
dctFormat.Add("background", dctDefault["background"]);
dctFormat.Add("text-align", dctDefault["text-align"]);
dctFormat.Add("vertical-align", dctDefault["vertical-align"]);
foreach (string line in lines)
{
string[] words = line.Split(':');
if (dctFormat.ContainsKey(words[0]))
{
dctFormat[words[0]] = words[1];
}
}
ret.Add(classid, dctFormat);
}
return ret;
}
[STAThread]
static void Main(string[] args)
{
Application.Run(new SampleForm());
}
private void InitializeComponent()
{
this.SuspendLayout();
//
// SampleForm
//
this.ClientSize = new System.Drawing.Size(284, 261);
this.Name = "SampleForm";
this.Load += new System.EventHandler(this.SampleForm_Load);
this.ResumeLayout(false);
}
private void SampleForm_Load(object sender, EventArgs e)
{
}
}