- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
如何以合理有效的方式获取 .NET 4 中 XElement 的流位置?
1 2 3 4 5 6 7 8
01234567890123456789012345678901234567890123456789012345678901234567890123456789012
<root><group id="0" combiner="or"><filter id="1" /><filter id="2" /></group></root>
我想从上面创建一个到段的映射
{ { "/root", Segment(0 , 82) },
{ "/root/group-0", Segment(6 , 75) },
{ "/root/group-0/filter-1", Segment(34, 50) },
{ "/root/group-0/filter-2", Segment(51, 67) } }
注意事项
关于我的答案的博文和内存分析屏幕截图
http://corsis.posterous.com/xml-keyvalue-cache-optimizations
奖金
奖励示例
store["/root"].Decompress() **O(1)**
store["/root/group-0"].Decompress() **O(1)**
最佳答案
这是我最初的尝试:
using System;
using System.Collections.Generic;
using System.Collections.Concurrent;
using System.Linq;
using System.IO;
using System.Xml;
using System.Xml.Linq;
using System.Text;
namespace XMLTest
{
public struct Segment
{
public Segment(long index, long length)
{
Index = index;
Length = length;
}
public long Index;
public long Length;
public override string ToString()
{
return string.Format("Segment({0}, {1})", Index, Length);
}
}
public static class GeneralSerializationExtensions
{
public static string Segment(this string buffer, Segment segment)
{
return buffer.Substring((int)segment.Index, (int)segment.Length);
}
public static byte[] Bytes(this Stream stream, int startIndex = 0, bool setBack = false)
{
var bytes = new byte[stream.Length];
if (stream.CanSeek && stream.CanRead)
{
var position = stream.Position;
stream.Seek(startIndex, SeekOrigin.Begin);
stream.Read(bytes, 0, (int)stream.Length);
if (setBack)
stream.Position = position;
}
return bytes;
}
}
class Program
{
static void Main(string[] args)
{
var stream = new MemoryStream();
var element = XElement.Parse(@"<root><group id=""0"" combiner=""or""><filter id=""1"" /><filter id=""2"" /></group></root>");
//var element = XElement.Parse("<a>i<b id='1' o='2' p=''/><b id='2'><c /></b><b id='3' /><b id='4' o='u'>2</b></a>");
var pie = new PathIndexedXElement(element);
foreach (var path in pie.Paths.OrderBy(p => p))
{
var s = pie.store[path];
var t = pie[path];
Console.WriteLine("> {2,-30} {0,-20} {1}", s, t, path);
}
}
}
public class PathIndexedXElement
{
internal string buffer;
internal ConcurrentDictionary<string, Segment> store;
public PathIndexedXElement(XElement element)
{
buffer = XmlPathSegmenter.StringBuffer(element);
store = element.PathSegments();
}
public IEnumerable<string> Paths
{
get { return store.Keys; }
}
public string this[string path]
{
get { return buffer.Segment(store[path]); }
}
public bool TryGetValue(string path, out string xelement)
{
Segment segment;
if (store.TryGetValue(path, out segment))
{
xelement = buffer.Segment(segment);
return true;
}
xelement = null;
return false;
}
}
public static class XmlPathSegmenter
{
public static XmlWriter CreateWriter(Stream stream)
{
var settings = new XmlWriterSettings() { Encoding = Encoding.UTF8, Indent = false, OmitXmlDeclaration = true, NewLineHandling = NewLineHandling.None };
return XmlWriter.Create(stream, settings);
}
public static MemoryStream MemoryBuffer(XElement element)
{
var stream = new MemoryStream();
var writer = CreateWriter(stream);
element.Save(writer);
writer.Flush();
stream.Position = 0;
return stream;
}
public static string StringBuffer(XElement element)
{
return Encoding.UTF8.GetString(MemoryBuffer(element).Bytes()).Substring(1);
}
public static ConcurrentDictionary<string, Segment> PathSegments(string xmlElement, ConcurrentDictionary<string, Segment> store = null)
{
return PathSegments(XElement.Parse(xmlElement), store);
}
public static ConcurrentDictionary<string, Segment> PathSegments(this XElement element, ConcurrentDictionary<string, Segment> store = null)
{
var stream = new MemoryStream();
var writer = CreateWriter(stream);
element.Save(writer);
writer.Flush();
stream.Position = 0;
return PathSegments(stream, store);
}
public static ConcurrentDictionary<string, Segment> PathSegments(Stream stream, ConcurrentDictionary<string, Segment> store = null)
{
if (store == null)
store = new ConcurrentDictionary<string, Segment>();
var stack = new ConcurrentStack<KeyValuePair<string, int>>();
PathSegments(stream, stack, store);
return store;
}
//
static void PathSegments(Stream stream, ConcurrentStack<KeyValuePair<string, int>> stack, ConcurrentDictionary<string, Segment> store)
{
var reader = XmlReader.Create(stream, new XmlReaderSettings() { });
var line = reader as IXmlLineInfo;
while (reader.Read())
{
KeyValuePair<string, int> ep;
ok:
if (reader.IsStartElement())
{
stack.TryPeek(out ep);
stack.Push(new KeyValuePair<string, int>(ep.Key + Path(reader), line.LinePosition - 2));
}
if (reader.IsEmptyElement)
{
var name = reader.LocalName;
var d = reader.Depth;
reader.Read();
if (stack.TryPop(out ep))
{
var length = line.LinePosition - 2 - ep.Value - (d > reader.Depth ? 1 : 0);
Console.WriteLine("/{3}|{0} : {1} -> {2}", name, ep.Value, length, line.LineNumber);
store.TryAdd(ep.Key, new Segment(ep.Value, length));
}
goto ok;
}
if (reader.NodeType == XmlNodeType.EndElement)
{
if (stack.TryPop(out ep))
{
var length = line.LinePosition + reader.LocalName.Length - ep.Value;
Console.WriteLine("|{3}|{0} : {1} -> {2}", reader.LocalName, ep.Value, length, line.LineNumber);
store.TryAdd(ep.Key, new Segment(ep.Value, length));
}
}
}
}
//
public static string Path(XmlReader element)
{
if (!(element.IsStartElement() || element.IsEmptyElement))
return null;
if (!element.HasAttributes)
return "/" + element.LocalName;
var id = element.GetAttribute("id");
return string.Format(id == null ? "/{0}" : "/{0}-{1}", element.LocalName, id);
}
}
}
输出:
/1|filter : 34 -> 17
/1|filter : 51 -> 17
|1|group : 6 -> 70
|1|root : 0 -> 83
> /root Segment(0, 83) <root><group id="0" combiner="or"><filter id="1" /><filter id="2" /></group></root>
> /root/group-0 Segment(6, 70) <group id="0" combiner="or"><filter id="1" /><filter id="2" /></group>
> /root/group-0/filter-1 Segment(34, 17) <filter id="1" />
> /root/group-0/filter-2 Segment(51, 17) <filter id="2" />
插入者正在发现 IXmlLineInfo由 XmlReader 类显式实现的接口(interface),这是一条很难找到的信息。
注意事项
在我收到关于 this question 的所有评论之后,现在有点预防 :) :
关于c# - 如何在 .NET 中获取 xml 元素的流位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3613713/
正如标题中所问,我有两个如下结构的 XML 文件 A.xml //here I want to include B.xml
我有一个 xml 文件。根据我的要求,我需要更新空标签,例如我需要更改 to .是否可以像那样更改标签.. 谢谢... 最佳答案 var xmlString=" "; var properStri
我有这样简单的 XML: Song Playing 09:41:18 Frederic Delius Violin Son
在我的工作中,我们有自己的 XML 类来构建 DOM,但我不确定应该如何处理连续的空格? 例如 Hello World 当它被读入 DOM 时,文本节点应该包含 Hello 和 World
我有以下 2 个 xml 文件,我必须通过比较 wd:Task_Name_ID 和 TaskID 的 XML 文件 2。 例如,Main XML File-1 wd:Task_Name_ID 具有以下
我在 Rails 应用程序中有一个 XML View ,需要从另一个文件插入 XML 以进行测试。 我想说“构建器,只需盲目地填充这个字符串,因为它已经是 xml”,但我在文档中看不到这样做的任何内容
我正在重建一些 XML 提要,因此我正在研究何时使用元素以及何时使用带有 XML 的属性。 一些网站说“数据在元素中,元数据在属性中。” 那么,两者有什么区别呢? 让我们以 W3Schools 为例:
在同一个文档中有两个 XML 声明是否是格式正确的 XML? hello 我相信不是,但是我找不到支持我的消息来源。 来自 Extensible Markup Language
我需要在包装器 XML 文档中嵌入任意(语法上有效的)XML 文档。嵌入式文档被视为纯文本,在解析包装文档时不需要可解析。 我知道“CDATA trick”,但如果内部 XML 文档本身包含 CDAT
XML 解析器和 XML 处理器是两个不同的东西吗?他们是两个不同的工作吗? 最佳答案 XML 解析器和 XML 处理器是一样的。它不适用于其他语言。 XML 是通用数据标记语言。解析 XML 文件已
我使用这个 perl 代码从一个文件中读取 XML,然后写入另一个文件(我的完整脚本有添加属性的代码): #!usr/bin/perl -w use strict; use XML::DOM; use
我正在编写一个我了解有限的历史脚本。 对象 A 的类型为 system.xml.xmlelement,我需要将其转换为类型 system.xml.xmldocument 以与对象 B 进行比较(类型
我有以下两个 XML 文件: 文件1 101 102 103 501 502 503
我有以下两个 XML 文件: 文件1 101 102 103 501 502 503
我有一个案例,其中一个 xml 作为输入,另一个 xml 作为输出:我可以选择使用 XSL 和通过 JAXB 进行 Unmarshalling 编码。性能方面,有什么真正的区别吗? 最佳答案 首先,程
我有包含 XML 的 XML,我想使用 JAXB 解析它 qwqweqwezxcasdasd eee 解析器 public static NotificationRequest parse(Strin
xml: mario de2f15d014d40b93578d255e6221fd60 Mario F 23 maria maria
尝试更新 xml 文件数组时出现以下错误。 代码片段: File dir = new File("c:\\XML"); File[] files = dir.listFiles(new Filenam
我怎样才能完成这样的事情: PS /home/nicholas/powershell> PS /home/nicholas/powershell> $date=(Get-Date | ConvertT
我在从 xml 文件中删除节点时遇到一些困难。我发现很多其他人通过各种方式在 powershell 中执行此操作的示例,下面的代码似乎与我见过的许多其他示例相同,但我没有得到所需的行为。 我的目标是将
我是一名优秀的程序员,十分优秀!