明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 4623|回复: 14

[运行时] 使用C# Late Binding Com类库

[复制链接]
发表于 2017-11-26 19:17:28 | 显示全部楼层 |阅读模式
之前发过32位版本的后绑定AutoCADCom库的方案,利用了PIA,但是64位AutoCad中桌子似乎偷懒了(常态),而且Cad库直接使用dynamic动态调用也是很麻烦,所以下面是解决方案

项目是VS2015编写的,。Net框架的版本为4.0,要注意几个问题:
1、代码使用了C#6.0中的新特性,较低版本的要改写,不过推荐使用VS2015+
2、主项目必须生成AnyCpu才能调用,原因未知。。。
3、没有做很详细的测试,欢迎大家参与测试。。。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

x
 楼主| 发表于 2017-11-27 14:13:31 | 显示全部楼层
2017/11/27
修改Assembly类加载不必要类型的Bug
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using ComTypes = System.Runtime.InteropServices.ComTypes;

  5. namespace NFox.Runtime.Com.Reflection
  6. {

  7.     /// <summary>
  8.     /// Com程序集,只有类型集合,类型别名、枚举等未处理
  9.     /// </summary>
  10.     public class Assembly
  11.     {

  12.         /// <summary>
  13.         /// 程序集字典
  14.         /// </summary>
  15.         private static Dictionary<AssemblyKey, Assembly> _openedAssemblies
  16.             = new Dictionary<AssemblyKey, Assembly>();

  17.         public static DirectoryInfo Root
  18.         {
  19.             get
  20.             {
  21.                 var assem = System.Reflection.Assembly.GetExecutingAssembly();
  22.                 var fi = new FileInfo(assem.Location);
  23.                 return fi.Directory.CreateSubdirectory("ComAssemblies");
  24.             }
  25.         }

  26.         /// <summary>
  27.         /// 获取IDispatch接口对象的类型信息
  28.         /// </summary>
  29.         /// <param name="obj">IDispatch接口对象</param>
  30.         /// <returns>对象的类型信息</returns>
  31.         public static Type GetType(IDispatch obj)
  32.         {

  33.             AssemblyKey key;

  34.             ComTypes.ITypeInfo info;
  35.             obj.GetTypeInfo(0, 0, out info);
  36.             ComTypes.ITypeLib lib;
  37.             int id;
  38.             info.GetContainingTypeLib(out lib, out id);
  39.             
  40.             IntPtr ip;
  41.             lib.GetLibAttr(out ip);
  42.             var la = Utils.GetObject<ComTypes.TYPELIBATTR>(ip);
  43.             key = new AssemblyKey(la.guid, la.wMajorVerNum, la.wMinorVerNum);
  44.             lib.ReleaseTLibAttr(ip);
  45.             if (!_openedAssemblies.ContainsKey(key))
  46.             {
  47.                 string name, doc, helpfile;
  48.                 int hc;
  49.                 lib.GetDocumentation(-1, out name, out doc, out hc, out helpfile);
  50.                 var dir = Root.CreateSubdirectory(name);
  51.                 var clsdir = dir.CreateSubdirectory(key.ClsId.ToString());
  52.                 var verdir = clsdir.CreateSubdirectory(key.Version);
  53.                 _openedAssemblies.Add(key, new Assembly(key, name, verdir));
  54.             }

  55.             return _openedAssemblies[key].GetType(id, info);

  56.         }

  57.         private Assembly(AssemblyKey key, string name, DirectoryInfo path)
  58.         {
  59.             Key = key;
  60.             Name = name;
  61.             _root = path;
  62.         }

  63.         public string Name { get; }

  64.         public AssemblyKey Key { get; }

  65.         private DirectoryInfo _root;

  66.         /// <summary>
  67.         /// 类型字典
  68.         /// </summary>
  69.         public Dictionary<int, Type> Types { get; }
  70.             = new Dictionary<int, Type>();

  71.         /// <summary>
  72.         /// 按索引获取Com程序集中的类型信息
  73.         /// </summary>
  74.         /// <param name="id">索引</param>
  75.         /// <param name="info">ITypeInfo接口</param>
  76.         /// <returns>对应索引的类型信息</returns>
  77.         public Type GetType(int id, ComTypes.ITypeInfo info)
  78.         {
  79.             if (!Types.ContainsKey(id))
  80.             {
  81.                 var name = $"{_root.FullName}/{id}.typ";
  82.                 if (File.Exists(name))
  83.                 {
  84.                     Types.Add(id, new Type(this, name));
  85.                 }
  86.                 else
  87.                 {
  88.                     Type type = new Type(this, info);
  89.                     type.Save(name);
  90.                     Types.Add(id, type);
  91.                 }
  92.             }
  93.             return Types[id];
  94.         }

  95.         public override string ToString()
  96.         {
  97.             return Name;
  98.         }

  99.     }
  100. }
 楼主| 发表于 2017-11-26 19:19:30 | 显示全部楼层
下列代码对AutoCad2016 64位和AutoCad2010 32位均测试通过
  1.             var app = Comproxy.GetObject("AutoCad.Application");
  2.             var doc = app.ActiveDocument;
  3.             var util = doc.Utility;
  4.             var mspace = doc.ModelSpace;

  5.             dynamic obj, pt;
  6.             util.GetEntity(out obj, out pt);

  7.             double[] p1 = { 0, 0, 0 };
  8.             double[] p2 = { 0, 10, 0 };
  9.             double[] p3 = { 10, 0, 0 };

  10.             var objs =
  11.                 Comproxy.CreateArray(
  12.                     mspace.AddLine(p1, p2),
  13.                     mspace.AddLine(p2, p3),
  14.                     mspace.AddLine(p3, p1));
  15.             var r = mspace.AddRegion(objs);
发表于 2017-11-30 16:42:07 | 显示全部楼层
2016 执行到红色这句错误
public static Type GetType(IDispatch obj)
        {

            AssemblyKey key;

            ComTypes.ITypeInfo info;
            obj.GetTypeInfo(0, 0, out info);
            ComTypes.ITypeLib lib;
            int id;
            info.GetContainingTypeLib(out lib, out id);

            IntPtr ip;
            lib.GetLibAttr(out ip);
            var la = Utils.GetObject<ComTypes.TYPELIBATTR>(ip);
            key = new AssemblyKey(la.guid, la.wMajorVerNum, la.wMinorVerNum);
            lib.ReleaseTLibAttr(ip)
发表于 2017-11-26 20:07:06 | 显示全部楼层
狐哥雄壮!狐哥威武!
发表于 2017-11-29 23:16:43 | 显示全部楼层
下载你的程序,直接运行,出现如下错误
请问是什么原因?

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?注册

x
 楼主| 发表于 2017-11-30 06:28:35 来自手机 | 显示全部楼层
你的cad版本多少? 测试代码运行到哪一步?
 楼主| 发表于 2017-11-30 19:19:54 来自手机 | 显示全部楼层
你在窗体的代码里设个断点 看走到哪一步
发表于 2017-12-2 15:46:00 | 显示全部楼层
今天重新运行一下,又成功了,有点莫名其妙!
发表于 2018-1-17 17:51:47 | 显示全部楼层
想下载一个试试
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 07:10 , Processed in 0.170465 second(s), 25 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表