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
{
///
/// 操作Xml及XHtml的基类
///
public abstract class XHtmlBase : IDisposable
{
private Encoding _Encoding = Encoding.UTF8;
///
/// 文件编码
///
public Encoding Encoding
{
get
{
return _Encoding;
}
set
{
_Encoding = value;
}
}
///
/// 用于批量赋值(LoadData(MDataRow,pre)方法装载)
///
protected Dictionary dicForAutoSetValue;
///
/// xml对象
///
protected XmlDocument _XmlDocument;
///
/// 内部XmlDocument对象
///
public XmlDocument XmlDoc
{
get
{
return _XmlDocument;
}
}
///
/// 命名空间对象
///
protected XmlNamespaceManager xnm;
///
/// 缓存对象
///
protected CacheManage theCache;
///
/// Html名称空间
///
protected string htmlNameSpace = "http://www.w3.org/1999/xhtml";
internal string PreXml = "preXml";
///
/// 加载的Xml文件的完整(路径)名称
///
public string FileName
{
get
{
return _FileName;
}
}
private string _FileName = string.Empty;
///
/// xml缓存的key
///
public string XmlCacheKey = string.Empty;
private bool _IsNoClone;
///
/// 存取档不克隆(此时XHtml应是只读模式)
///
public bool IsNoClone
{
get
{
return _IsNoClone;
}
set
{
_IsNoClone = value;
}
}
private bool _IsLoadFromCache;
///
/// 文档是否取自缓存
///
public bool IsLoadFromCache
{
get
{
return _IsLoadFromCache;
}
set
{
_IsLoadFromCache = value;
}
}
private double _CacheMinutes = 5;
///
/// 缓存分钟数
///
public double CacheMinutes
{
get
{
return _CacheMinutes;
}
}
///
/// 返回最终格式化后的XHtml内容。
///
public virtual string OutXml
{
get
{
return _XmlDocument.OuterXml;
}
}
///
/// 加载的Html是否已改变
///
public bool IsXHtmlChanged
{
get
{
return !theCache.Contains(XmlCacheKey);
}
}
/////
///// 加载Html后是否清除所有注释节点。
/////
//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);
}
///
/// 从绝对路径中获得文件名做为Key值
///
private string GenerateKey(string fileName)
{
_FileName = fileName;
fileName = fileName.Replace(AppConfig.WebRootPath, "XHtmlBase_");
fileName = fileName.Replace("/", "").Replace("\\", "");
return fileName;
}
#region 加载xml
///
/// docTypeHtml是一样的。
///
protected static string docTypeHtml = string.Empty;
///
/// 从xml字符串加载
///
/// xml字符串
public void LoadXml(string xml)
{
try
{
if (xnm != null)
{
if (xml.StartsWith("";
}
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);
}
}
///
/// 从文件中加载Xml
///
///
///
public bool Load(string fileName)
{
return Load(fileName, XmlCacheLevel.Lower);
}
///
/// 加载XML
///
public bool Load(string fileName, XmlCacheLevel level)
{
return Load(fileName, level, false);
}
///
/// 加载Xml文件
///
/// 文件名
/// 文件缓存级别
/// 加载后是否清除注释节点
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;
}
///
/// 从缓存中加载html
///
///
///
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;
}
}
///
/// 移除所有注释节点
///
public virtual void RemoveCommentNode()
{
}
///
/// 从文件加载XML (最终调用的方法)
///
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 其它方法
///
/// 将文档缓存到全局Cache中
///
/// 缓存的Key名称
/// 是否克隆副本存档
public void SaveToCache(string key, bool isClone)
{
if (_CacheMinutes > 0)
{
SaveToCache(key, isClone, _CacheMinutes);
}
}
///
/// 将文档缓存到全局Cache中
///
/// 缓存的Key名称
/// 是否克隆副本存档
/// 存档的分钟数
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
}
}
}
///
/// 文件保存
///
public bool Save()
{
return Save(_FileName);
}
/// 指定保存路径
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;
}
///
/// 给指定的字符加上CDATA
///
/// 对象字符
///
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("", "]]>");
//text = text.Replace(((char)10).ToString(), "
");
//text = text.Replace(((char)13).ToString(), "
");
//text = text.Replace(((char)34).ToString(), """);
//text = text.Replace(((char)39).ToString(), "'");
text = text.Replace("\\", "#!!#").Replace("\0", "#!0!#");
text = Filter(text);
return AppConfig.XHtml.CDataLeft + text + AppConfig.XHtml.CDataRight;
}
///
/// 清除CDATA
///
/// 对象字符
///
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;
}
///
/// 替换掉MMS前缀
///
/// 对象字符
///
public string ClearMMS(string text)
{
return text.Replace("MMS::", string.Empty).Replace("::MMS", string.Empty);
}
///
/// 过滤XML(十六进制值 0x1D)无效的字符(同时替换>符号)
///
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);//{0:X};
}
else if (c == '&')
{
info.Append("&");
// &(逻辑与) &
//<(小于) <
//>(大于) >
//"(双引号) "
//'(单引号) '
}
else
{
if (i > 50 && i != text.Length - 1)
{
char nc = text[i + 1];
if (c == '<' && nc != '/' && nc != '!' && !IsEnChar(nc)) // 非英文字母。
{
info.Append("<");
continue;
}
}
info.Append(c);
}
}
return info.ToString();
}
private bool IsEnChar(char c)//英文字母
{
return (c > 64 && c < 91) || (c > 96 && c < 123);
}
/////
///// 二次正则替换。
/////
//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 成员
///
/// 释放资源
///
public virtual void Dispose()
{
if (_XmlDocument != null)
{
//if (!ReadOnly)
//{
//xmlDoc.RemoveAll();
//}
_XmlDocument = null;
//GC.Collect();
}
}
#endregion
}
}