pinvokerepository.cs
来自「SharpDevelop2.0.0 c#开发免费工具」· CS 代码 · 共 112 行
CS
112 行
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="Matthew Ward" email="mrward@users.sourceforge.net"/>
// <version>$Revision: 975 $</version>
// </file>
using System;
using System.Collections;
using System.IO;
using System.Reflection;
using System.Xml;
namespace ICSharpCode.PInvokeAddIn
{
/// <summary>
/// Represents the repository of pinvoke information.
/// </summary>
/// <remarks>
/// All the main data is stored at http://www.pinvoke.net.
/// This class contains function names and module names for the drop
/// down lists read from the "signatures.xml" config file.
/// </remarks>
public sealed class PInvokeRepository
{
static string[] functionNames;
static string[] moduleNames;
static PInvokeRepository repository;
PInvokeRepository()
{
}
public static PInvokeRepository Instance
{
get {
if (repository == null) {
repository = new PInvokeRepository();
}
return repository;
}
}
public string[] GetSupportedLanguages()
{
return new string[] {"C#", "VB"};
}
public string[] GetFunctionNames()
{
if (functionNames == null) {
ReadConfig();
}
return functionNames;
}
public string[] GetModuleNames()
{
if (moduleNames == null) {
ReadConfig();
}
return moduleNames;
}
/// <summary>
/// Gets the folder where this assembly was loaded from.
/// </summary>
/// <returns>The folder where this assembly was loaded.</returns>
string GetAssemblyFolder()
{
Assembly assembly = GetType().Assembly;
string assemblyFilename = assembly.CodeBase.Replace("file:///", "");
string folder = Path.GetDirectoryName(assemblyFilename);
return folder;
}
void ReadConfig()
{
string configFile = Path.Combine(GetAssemblyFolder(), "signatures.xml");
XmlDocument doc = new XmlDocument();
doc.Load(configFile);
ArrayList moduleArrayList = new ArrayList();
ArrayList functionArrayList = new ArrayList();
foreach(XmlElement moduleElement in doc.DocumentElement.SelectNodes("//module"))
{
XmlAttribute moduleName = (XmlAttribute)moduleElement.SelectSingleNode("@name");
moduleArrayList.Add(moduleName.Value);
foreach(XmlAttribute functionName in moduleElement.SelectNodes("function/@name"))
{
functionArrayList.Add(functionName.Value);
}
}
moduleNames = new string[moduleArrayList.Count];
moduleArrayList.Sort();
moduleArrayList.CopyTo(moduleNames);
functionNames = new string[functionArrayList.Count];
functionArrayList.Sort();
functionArrayList.CopyTo(functionNames);
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?