tijian_tieying/web/cyqdata-master/Xml/XHtmlBase.cs
2025-02-20 12:14:39 +08:00

648 lines
19 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Xml;
using CYQ.Data.Cache;
using System.IO;
using System.Threading;
using System.Collections.Generic;
using System.Text;
using CYQ.Data.Table;
using System.Text.RegularExpressions;
using CYQ.Data.Tool;
namespace CYQ.Data.Xml
{
/// <summary>
/// 操作Xml及XHtml的基类
/// </summary>
public abstract class XHtmlBase : IDisposable
{
private Encoding _Encoding = Encoding.UTF8;
/// <summary>
/// 文件编码
/// </summary>
public Encoding Encoding
{
get
{
return _Encoding;
}
set
{
_Encoding = value;
}
}
/// <summary>
/// 用于批量赋值LoadData(MDataRow,pre)方法装载)
/// </summary>
protected Dictionary<string, MDataRow> dicForAutoSetValue;
/// <summary>
/// xml对象
/// </summary>
protected XmlDocument _XmlDocument;
/// <summary>
/// 内部XmlDocument对象
/// </summary>
public XmlDocument XmlDoc
{
get
{
return _XmlDocument;
}
}
/// <summary>
/// 命名空间对象
/// </summary>
protected XmlNamespaceManager xnm;
/// <summary>
/// 缓存对象
/// </summary>
protected CacheManage theCache;
/// <summary>
/// Html名称空间
/// </summary>
protected string htmlNameSpace = "http://www.w3.org/1999/xhtml";
internal string PreXml = "preXml";
/// <summary>
/// 加载的Xml文件的完整路径名称
/// </summary>
public string FileName
{
get
{
return _FileName;
}
}
private string _FileName = string.Empty;
/// <summary>
/// xml缓存的key
/// </summary>
public string XmlCacheKey = string.Empty;
private bool _IsNoClone;
/// <summary>
/// 存取档不克隆此时XHtml应是只读模式)
/// </summary>
public bool IsNoClone
{
get
{
return _IsNoClone;
}
set
{
_IsNoClone = value;
}
}
private bool _IsLoadFromCache;
/// <summary>
/// 文档是否取自缓存
/// </summary>
public bool IsLoadFromCache
{
get
{
return _IsLoadFromCache;
}
set
{
_IsLoadFromCache = value;
}
}
private double _CacheMinutes = 5;
/// <summary>
/// 缓存分钟数
/// </summary>
public double CacheMinutes
{
get
{
return _CacheMinutes;
}
}
/// <summary>
/// 返回最终格式化后的XHtml内容。
/// </summary>
public virtual string OutXml
{
get
{
return _XmlDocument.OuterXml;
}
}
/// <summary>
/// 加载的Html是否已改变
/// </summary>
public bool IsXHtmlChanged
{
get
{
return !theCache.Contains(XmlCacheKey);
}
}
///// <summary>
///// 加载Html后是否清除所有注释节点。
///// </summary>
//private bool clearCommentOnLoad = false;
public XHtmlBase()
{
//License.Check(DAL.DalCreate.XHtmlClient);
_XmlDocument = new XmlDocument();
theCache = CacheManage.LocalInstance;
}
protected void LoadNameSpace(string nameSpace)
{
xnm = new XmlNamespaceManager(_XmlDocument.NameTable);
xnm.AddNamespace(PreXml, nameSpace);
}
/// <summary>
/// 从绝对路径中获得文件名做为Key值
/// </summary>
private string GenerateKey(string fileName)
{
_FileName = fileName;
fileName = fileName.Replace(AppConfig.WebRootPath, "XHtmlBase_");
fileName = fileName.Replace("/", "").Replace("\\", "");
return fileName;
}
#region xml
/// <summary>
/// docTypeHtml是一样的。
/// </summary>
protected static string docTypeHtml = string.Empty;
/// <summary>
/// 从xml字符串加载
/// </summary>
/// <param name="xml">xml字符串</param>
public void LoadXml(string xml)
{
try
{
if (xnm != null)
{
if (xml.StartsWith("<!DOCTYPE html"))
{
if (string.IsNullOrEmpty(docTypeHtml))
{
docTypeHtml = "<!DOCTYPE html PUBLIC \" -//W3C//DTD XHTML 1.0 Transitional//EN\" \"" + AppConfig.XHtml.DtdUri + "\">";
}
xml = xml.Replace(xml.Substring(0, xml.IndexOf('>') + 1), docTypeHtml);
}
// xml = xml.Replace("http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd", AppConfig.XHtml.DtdUri);
}
xml = Filter(xml);
_XmlDocument.LoadXml(xml);
}
catch (XmlException err)
{
throw new XmlException(err.Message);
}
}
/// <summary>
/// 从文件中加载Xml
/// </summary>
/// <param name="fileName"></param>
/// <returns></returns>
public bool Load(string fileName)
{
return Load(fileName, XmlCacheLevel.Lower);
}
/// <summary>
/// 加载XML
/// </summary>
public bool Load(string fileName, XmlCacheLevel level)
{
return Load(fileName, level, false);
}
/// <summary>
/// 加载Xml文件
/// </summary>
/// <param name="fileName">文件名</param>
/// <param name="level">文件缓存级别</param>
/// <param name="clearCommentNode">加载后是否清除注释节点</param>
public bool Load(string fileName, XmlCacheLevel level, bool clearCommentNode)
{
bool loadState = false;
XmlCacheKey = GenerateKey(fileName);//从路径中获得文件名做为key
//2019-03-21 zyk 注释掉从缓存加载,目的是方便调试代码,上线后可以再放开 kk 庄元客
//if (level != XmlCacheLevel.NoCache)
//{
// loadState = LoadFromCache(XmlCacheKey);//从Cache加载Xml
//}
if (!loadState)//Cache加载Xml失败
{
_CacheMinutes = (double)level;
loadState = LoadFromFile(fileName, clearCommentNode);//从文件加载Xml
}
return loadState;
}
/// <summary>
/// 从缓存中加载html
/// </summary>
/// <param name="key"></param>
/// <returns></returns>
public bool LoadFromCache(string key)
{
if (theCache.Contains(key))//缓存中存在对应值是key的对象
{
if (_IsNoClone)
{
_XmlDocument = theCache.Get(key) as XmlDocument;
}
else
{
_XmlDocument = GetCloneFrom(theCache.Get(key) as XmlDocument);
}
_IsLoadFromCache = true;
return true;
}
else
{
return false;
}
}
/// <summary>
/// 移除所有注释节点
/// </summary>
public virtual void RemoveCommentNode()
{
}
/// <summary>
/// 从文件加载XML (最终调用的方法)
/// </summary>
private bool LoadFromFile(string fileName, bool clearCommentNode)
{
if (!System.IO.File.Exists(fileName))
{
//Log.WriteLog("filename no exist : " + fileName);
return false;
}
try
{
string html = string.Empty;
if (xnm != null)
{
html = IOHelper.ReadAllText(fileName, 0, _Encoding);
ResolverDtd.Resolver(ref _XmlDocument);//指定才能生成DTD文件到本地目录。
}
if (html != string.Empty)
{
LoadXml(html);//从字符串加载html
}
else
{
_XmlDocument.Load(fileName);//从文件加载xml
}
if (clearCommentNode)
{
RemoveCommentNode();
}
XmlCacheKey = GenerateKey(fileName);
if (!theCache.Contains(XmlCacheKey))
{
SaveToCache(XmlCacheKey, !IsNoClone);
}
return true;
}
catch (Exception err)
{
Log.WriteLog(err.Message + "filename : " + fileName);
Error.Throw(err.Message + "filename : " + fileName);
}
return false;
}
#endregion
#region
/// <summary>
/// 将文档缓存到全局Cache中
/// </summary>
/// <param name="key">缓存的Key名称</param>
/// <param name="isClone">是否克隆副本存档</param>
public void SaveToCache(string key, bool isClone)
{
if (_CacheMinutes > 0)
{
SaveToCache(key, isClone, _CacheMinutes);
}
}
/// <summary>
/// 将文档缓存到全局Cache中
/// </summary>
/// <param name="key">缓存的Key名称</param>
/// <param name="isClone">是否克隆副本存档</param>
/// <param name="cacheTimeMinutes">存档的分钟数</param>
public void SaveToCache(string key, bool isClone, double cacheTimeMinutes)
{
if (_XmlDocument != null)
{
if (!isClone)
{
theCache.Set(key, _XmlDocument, cacheTimeMinutes, _FileName);//添加Cache缓存
}
else
{
theCache.Set(key, GetCloneFrom(_XmlDocument), cacheTimeMinutes, _FileName);//添加Cache缓存Clone
}
}
}
/// <summary>
/// 文件保存
/// </summary>
public bool Save()
{
return Save(_FileName);
}
/// <param name="fileName">指定保存路径</param>
public bool Save(string fileName)
{
if (Path.GetFileName(fileName).IndexOfAny(AppConst.InvalidFileNameChars) > -1)//包含无效的路径字符。
{
Log.WriteLogToTxt("XHtmlBase.Save : InvalidPath : " + fileName);
return false;
}
string xHtml = string.Empty;
if (_XmlDocument != null && _XmlDocument.InnerXml.Length > 0)
{
xHtml = _XmlDocument.InnerXml.Replace(AppConfig.XHtml.DtdUri, "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd");
}
if (!string.IsNullOrEmpty(xHtml))
{
if (Directory.Exists(Path.GetDirectoryName(fileName)))
{
try
{
File.WriteAllText(fileName, xHtml, _Encoding);
return true;
}
catch
{
Thread.Sleep(20);
try
{
File.WriteAllText(fileName, xHtml, _Encoding);
return true;
}
catch (Exception err)
{
Log.WriteLogToTxt(err);
}
}
//}
}
else
{
Log.WriteLogToTxt("No exist path folder:" + fileName);
}
}
return false;
}
private XmlDocument GetCloneFrom(XmlDocument xDoc)
{
XmlDocument newDoc = new XmlDocument();
//if (xnm != null)// && !AppConfig.XHtml.UseFileLoadXml
//{
// ResolverDtd.Resolver(ref newDoc); //不需要指定了因为第一次已经生成了DTD文件到本地另外路径已被替换指向本地。
//}
try
{
newDoc.LoadXml(xDoc.InnerXml);
}
catch (Exception err)
{
Log.WriteLogToTxt(err);
newDoc.InnerXml = xDoc.InnerXml;
}
return newDoc;
}
protected XmlNode Fill(string xPath, XmlNode parent)
{
try
{
if (parent != null)
{
return parent.SelectSingleNode(xPath.Replace("//", "descendant::"), xnm);
}
return _XmlDocument.SelectSingleNode(xPath, xnm);
}
catch
{
return null;
}
}
protected XmlNodeList Select(string xPath, XmlNode parent)
{
try
{
if (parent != null)
{
return parent.SelectNodes(xPath.Replace("//", "descendant::"), xnm);
}
return _XmlDocument.SelectNodes(xPath, xnm);
}
catch
{
return null;
}
}
protected XmlElement Create(string tag)
{
if (xnm == null)
{
return _XmlDocument.CreateElement(tag);
}
return _XmlDocument.CreateElement(tag, xnm.LookupNamespace(PreXml));
}
protected string GetXPath(string tag, string attr, string value)
{
string xPath = "//" + (xnm != null ? PreXml + ":" : "") + tag; //+ "[@" + attr + "='" + value + "']";
if (!string.IsNullOrEmpty(attr))
{
if (!string.IsNullOrEmpty(value))
{
//忽略大小写搜索
//xPath += "[@" + attr + "='" + value + "']";
xPath += "[translate(@" + attr + ",'ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopqrstuvwxyz')='" + value.ToLower() + "']";
//xPath += "[@" + attr + "=translate('" + value + "','ABCDEFGHIJKLMNOPQRSTUVWXYZ','abcdefghijklmnopqrstuvwxyz')]";
}
else
{
xPath += "[@" + attr + "]";
}
}
return xPath;
}
/// <summary>
/// 给指定的字符加上CDATA
/// </summary>
/// <param name="text">对象字符</param>
/// <returns></returns>
public string SetCDATA(string text)
{
if (string.IsNullOrEmpty(text))
{
return text;
}
text = text.Replace(AppConfig.XHtml.CDataLeft, string.Empty).Replace(AppConfig.XHtml.CDataRight, string.Empty);
text = text.Replace("<![CDATA[", "&lt;![CDATA[").Replace("]]>", "]]&gt;");
//text = text.Replace(((char)10).ToString(), "<BR>");
//text = text.Replace(((char)13).ToString(), "<BR>");
//text = text.Replace(((char)34).ToString(), "&quot;");
//text = text.Replace(((char)39).ToString(), "&#39;");
text = text.Replace("\\", "#!!#").Replace("\0", "#!0!#");
text = Filter(text);
return AppConfig.XHtml.CDataLeft + text + AppConfig.XHtml.CDataRight;
}
/// <summary>
/// 清除CDATA
/// </summary>
/// <param name="text">对象字符</param>
/// <returns></returns>
public string ClearCDATA(string text)
{
if (string.IsNullOrEmpty(text))
{
return text;
}
text = text.Replace("#!!#", "\\").Replace("#!0!#", "\\0");
text = text.Replace(AppConfig.XHtml.CDataLeft, string.Empty).Replace(AppConfig.XHtml.CDataRight, string.Empty);
return text;
}
/// <summary>
/// 替换掉MMS前缀
/// </summary>
/// <param name="text">对象字符</param>
/// <returns></returns>
public string ClearMMS(string text)
{
return text.Replace("MMS::", string.Empty).Replace("::MMS", string.Empty);
}
/// <summary>
/// 过滤XML(十六进制值 0x1D)无效的字符(同时替换&gt;符号)
/// </summary>
protected string Filter(string text)
{
if (string.IsNullOrEmpty(text))
{
return text;
}
StringBuilder info = new StringBuilder(text.Length + 20);
for (int i = 0; i < text.Length; i++)
{
char c = text[i];
if (((c >= 0) && (c <= 8)) || ((c >= 11) && (c <= 12)) || ((c >= 14) && (c <= 32)))
{
info.AppendFormat(" ", c);//&#x{0:X};
}
else if (c == '&')
{
info.Append("&amp;");
// &(逻辑与) &amp;
//<(小于) &lt;
//>(大于) &gt;
//"(双引号) &quot;
//'(单引号) &apos;
}
else
{
if (i > 50 && i != text.Length - 1)
{
char nc = text[i + 1];
if (c == '<' && nc != '/' && nc != '!' && !IsEnChar(nc)) // 非英文字母。
{
info.Append("&lt;");
continue;
}
}
info.Append(c);
}
}
return info.ToString();
}
private bool IsEnChar(char c)//英文字母
{
return (c > 64 && c < 91) || (c > 96 && c < 123);
}
///// <summary>
///// 二次正则替换。
///// </summary>
//private string RegexReplace(string text)
//{
// Regex regex = new Regex(@"</?[^>]*>", RegexOptions.Compiled | RegexOptions.IgnoreCase);
// MatchCollection collection = regex.Matches(text);
// foreach (Match mat in collection)
// {
// string value = mat.Value;
// }
// return text;
//}
#endregion
#region IDisposable
/// <summary>
/// 释放资源
/// </summary>
public virtual void Dispose()
{
if (_XmlDocument != null)
{
//if (!ReadOnly)
//{
//xmlDoc.RemoveAll();
//}
_XmlDocument = null;
//GC.Collect();
}
}
#endregion
}
}