找回密码
 立即注册

QQ登录

只需一步,快速开始

扫一扫,访问微社区

查看: 2077|回复: 1

[研讨] 关于智能指针的使用

[复制链接]

已领礼包: 8121个

财富等级: 富甲天下

发表于 2014-10-31 02:44:41 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

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

×
本帖最后由 Highflybird 于 2014-10-31 02:52 编辑

这个是我对Autodesk开发专家kean的一片文章的翻译:
原文请见如下链接:
http://through-the-interface.typ ... utomatic-closi.html
绿色部分为我的翻译,英文不是很好,凑合看吧。
Automatic closing of AutoCAD objects withObjectARX SmartPointers
ObjectARX的智能指针自动关闭AutoCAD物体
Thank you to Fenton Webb, from DevTech Americas, for writing this articlefor the recently published ADN Platform Technologies Customization Newsletter.This article also talks about the new AcDbSmartObjectPointer class referencedin this overview of the new APIs in AutoCAD 2009.
谢谢你 ,balala…..
Thoseof us who regular create ObjectARX code to manipulate the AutoCAD drawingdatabase are fully aware of the mechanism for opening an object for read (tosimply access data held inside it) or write (to update it with new data). Ohand I almost forgot - followed by a call to close() when you are done.
那些死板地用Objectarx代码来操纵AutoCAD图形数据库都很担心打开一个物体去读取(仅仅为了读取里面的数据)或者写(更新数据)的操作。哦,我几乎总是忘记-当你完成之后要调用close()函数。
Buthere lies a very common problem illustrated by that last sentence; the problemsstart when you accidentally forget to close an object once you are finishedwith it. AutoCAD follows a strict set of rules which allows the checking-in/outof data inside of AutoCAD and these rules must be adhered to. If not, thenAutoCAD will abort in order to do its best to save the previous valid state ofthe database.
但是像上面最后一句那样,这里存在一个普遍的问题。问题开始于你完成后却不经意忘记去关闭一个物体,而AutoCAD遵循一系列的严格的规则以允许检查和记录AutoCAD内部数据的,而且这些规则必须遵守。如不这样,为了最好地保存先前的有效的数据库状态,AutoCAD将会中止。
“Youmust be very careful to close your objects when you are finished with them”.It’s very easy for me to say that, but even I, the person shaking his fingersaying those infamous words will fail to remember my own advice time and timeagain, this is why using ObjectARX SmartPointers is a MUST.
Solet’s look at this thing in ObjectARX called SmartPointers.
“当你使用完后,你必须很小心地关闭那些物体”。我说起来容易,但是即使我-那个指指点点说这些无耻的话的人-依然会屡次不记得我自己的建议。这个正是我们为什么必须用ObjectARX智能指针的原因。
那么,我们来看看关于ObjectARX的智能指针。
Whatare they? First take a look at the MSDN article on “Template Classes” asthis explains the basic concept. Leading on from that article, and now in myown words, ObjectARX SmartPointers are C++ template classes which wrap anunderlying AutoCAD AcDbObject derived class pointer, and simply providesautomatic closure of that pointer, if valid, on destruction of the ObjectARXSmartPointer class (so the end of a function or closing brace “}”).
它们是什么?首先看一下MSDN的关于“模板类”的文章,它解释了基本概念。
根据这篇文章,现在用我自己的话来说,ObjectARX 智能指针是一个C++模板类,它封装在 AutoCAD AcDbObject派生的类指针里,当一个有效的ObjectARX智能指针类在析构时,能自动关闭.(函数的末尾或者封闭的花括号“}”)
Aquestion that often arises is on the usage of this class, in particular the wayto access the member functions. The template class itself has been implementedso that if you reference a member function with the dot “.” operator
经常被提及的问题是关于这个类的用法,以特别的方式去接口成员函数。模板类本身已提供了方法,所以你如果引用成员函数用点 “.” 操作符即可。
  1. line.openStatus()

then,you reference the ObjectARX SmartPointer specific functions. If you reference amember function with the arrow “->” operator
然后,你用ObjectARX 智能指针的某个函数。如果你用“->”操作符来引用某个成员函数,
  1. line->setStartPoint()
Then,because the arrow operator has been overridden to return the underlyingAcDbObject pointer, you simply reference the underlying AcDbObject derivedclass, in this case the AcDbLine::setStartPoint().
Sohow do we use them then…? Let’s start by showing old ObjectARX code which addsan AcDbLine to the Current Space using open and close.
因为箭头操作符已被重载返回封装的AcDbObject指针,你只不过引用了封装的AcDbObject派生类。如 AcDbLine:setStartPoint().
那么我们怎么用它…?让我们先看如下所示的老式做法的ObjectARX代码:
打开当前空间,增加一条AcDbLine后关闭。
// create a new line
AcDbLine *line = new AcDbLine();

// set the properties for it
line->setStartPoint(AcGePoint3d(10,10,0));
line->setEndPoint(AcGePoint3d(20,30,0));

// now add it to the current space
AcDbBlockTableRecord *curSpace = NULL;

// open the current space for write
Acad::ErrorStatus es =
  acdbOpenObject(
    (AcDbBlockTableRecord *&)curSpace,
    curDoc()->database()->currentSpaceId(),
    AcDb::kForWrite
  );

// if ok      
if (es == Acad::eOk)
{
  // add it to the space
  es = curSpace->appendAcDbEntity(line);

  // check that everything was ok
  if (es != Acad::eOk)
  {
    delete line;
    return;
  }

  // now close everything
  line->close();
  curSpace->close();
}

It'sthe 2 close statements at the end which are, first of all, very easy to forgetto put in, but also notice they return just before which indicates a very rarefailure, but just as importantly (and erroneously) bypasses the close ofcurSpace.
Thisis where ObjectARX SmartPointers not only provide automatic closure and cleanupbut also peace of mind…
Let’stake a look at the same code, but this time using ObjectARX SmartPointers.

这里在末尾有两个close语句,首先,我们很容易忘记放进去,同时也注意到
放在它们之前的一个return语句,表示很少有的错误导致函数返回。(注释:这个return语句前应该加curSpace->close();) 忽略关闭curSpace不仅严重而且错误。
这个地方用ObjectARX 智能指针不仅能提供自动关闭和清理,同时也带给我们内心的宁静。
现在让我们看看同样的事情,这次用ObjectARX智能指针来实现。
// create a new line 用智能指针创建一个AcDbLine物体
AcDbObjectPointer<AcDbLine> line;   
line.create();

// set the properties for it
line->setStartPoint(AcGePoint3d(10,10,0));
line->setEndPoint(AcGePoint3d(20,30,0));

// now add it to the current space
AcDbBlockTableRecordPointer
  curSpace(
  curDoc()->database()->currentSpaceId(),
    AcDb::kForWrite
  );

// if ok
if (curSpace.openStatus() == Acad::eOk)
{
  Acad::ErrorStatus es =
    curSpace->appendAcDbEntity(line);

  // check that everything was ok
  if (es != Acad::eOk)
  {
// no need for a delete as the smartpointer does this forus
//不需要删除智能指针
    return;
  }
}

// everything will be closed automatically for us
//所有的会为我们自动关闭

Notonly is this ObjectARX code "close" safe, it is also memoryleak-safe. Also, look how much tidier it is. Much more friendly in my opinion!
Here’ssome more SmartPointer code which selects an Entity on screen and opens it forread, just as an example.
不仅仅这个ObjectARX代码是安全的,而且内存也是安全释放。现在看起来也是相当整洁。依我看来是友好多了。
这里还有一些智能指针的代码,在屏幕上选择一个实体,打开后读取它,如代码:

ads_name ename;
ads_point pt;

// pick an entity to check
int res = acedEntSel (_T("\nPick a Line : "), ename, pt);

// if the user didn't cancel
if (res == RTNORM)
{
  AcDbObjectId objId;

  // convert the ename to an object id
  acdbGetObjectId (objId, ename);

  // open the entity for read
  AcDbObjectPointer<AcDbLine>ent (objId, AcDb::kForRead);

  // if ok
  if (ent.openStatus () == Acad::eOk)
  {
    AcGePoint3d startPnt;
    ent->startPoint(startPnt);

  // do something
  }
}
Butwhat if you have reams and reams of existing code using old-style open andclose, and you want to migrate to ObjectARX Smart Pointers with the leastamount of effort? Well, we’ve tried to make it easy for you. Since ObjectARX2007, in dbobjptr.h simply uncomment the #define DBOBJPTR_EXPOSE_PTR_REF andnow life should be easy! (Well, with one exception - see **NOTE below).
Here’sthe converted version of the original code we used at the beginning, convertingto use ObjectARX SmartPointers couldn’t be easier (I’ve highlighted the changesin bold).
但是如果你有一大堆一大堆旧式的现存代码,你像把ObjectARX智能指针合成进去,你不得花大把精力?好了,我们尽力使你弄起来容易些。自从ObjectARX 2007,在dbobjptr.h简单地取消注释#defineDBOBJPTR_EXPOSE_PTR_REF
现在活儿就变得So easy了!(不过,有一条例外,看下面的注释)
这里是我们开始用的原先代码的转换版。转换为ObjectARX 智能指针不会更容易些。(我已经用粗体字突出显示了 修改部分)

// create a new line
AcDbObjectPointer<AcDbLine> line = new AcDbLine();

// set the properties for it
line->setStartPoint(AcGePoint3d(10,10,0));
line->setEndPoint(AcGePoint3d(20,30,0));

// now add it to the current space
AcDbBlockTableRecordPointer curSpace = NULL;

// open the current space for write
Acad::ErrorStatus es =
  acdbOpenObject(
  (AcDbBlockTableRecord *&)curSpace,
    curDoc()->database()->currentSpaceId(),
    AcDb::kForWrite
  );

// if ok
if (es == Acad::eOk)
{
  // add it to the space
  es = curSpace->appendAcDbEntity(line);

  // check that everything was ok
  if (es != Acad::eOk)
  {
    delete line;
    return;
  }

  // now close everything
  line->close();
  curSpace->close();
}
Noticethat I didn’t bother to remove the two close() calls at the end, there’s noneed. If you close them by hand, or forget, it’s all good with ObjectARXSmartPointers.
注意:我并没有去费力删除结尾处两条close()调用,这个地方不需要。如果你手动关闭或者忘记了,对ObjectARX智能指针都是可以的。
**NOTE:So, in order to get the acdbOpenObject to accept the same code as before, indbobjptr.h, at line 467 (ObjectARX 2009 SDK), there is an assert which needs tobe omitted; either #define NDEBUG or I recommend that you simply change theassert to be enclosed by the #ifndef DBOBJPTR_EXPOSE_PTR_REF
注释:所以,为了能使acdbOpenObject能像先前一样接受相同的代码,在dbobjptr.h文件,467行(ObjectARX 2009 SDK),那里有个断言需要删除,同样,
#defineNDEBUG 或我推荐你仅仅改变包在#ifndef  DBOBJPTR_EXPOSE_PTR_REF为如下断言:
AcDbObjectPointerBase<T_OBJECT>::object(){
  #ifndef DBOBJPTR_EXPOSE_PTR_REF
    assert(m_status == Acad::eOk);
  #endif // DBOBJPTR_EXPOSE_PTR_REF
Lastbut not the least is the new AcDbSmartObjectPointer template class in ObjectARX2009, defined in the header file dbobjptr2.h.
最后却不是最小的新的 AcDbSmartObjectPointer模板类 出现在objectARX2009,定义在dbojbptr2.h的这个头文件中。
Thisnew template class works in the same way as AcDbObjectPointer template classexcept that it works by NOT opening an object at all if its open state isalready what was requested, or even closing an object multiple times beforeopening in the desired manner. It merely hands you the already opened objectpointer for your use. This means that it is much more efficient and also muchmore powerful in its usage. It also treats kForNotify and kForRead in the samemanner, which is effectively kForRead.
这个新的模板类跟AcDbObjectPointer模板类一样的方式,一样的作用,除了它
如果处于已打开状态就不能再打开一个物体,或甚至在以想要的方式打开前多次关闭一个物体。这只不过传给你一个已经打开的物体指针给你用。这意味着它更有效地更强大的用途。它同时也以相同方式处理kForNotify和kForRead,是有效率的kForRead.
Onefeature of this new SmartPointer class that I’d like to talk about is theability to multiply open an object for write, from different places, at thesame time, a bit like a Transaction can – this is extremely powerful when youthink about it.
我要说的新的智能指针类的一个特性是:能同时从不同地方多重打开一个物体以写入,这个有点像Transaction 。这是极其强大的。
Atthe same time though, I find thinking about the power that this can provide canstart generating some other complex thoughts and scenarios that maybe we shouldbe cautious of; the bottom line is that you should be very careful aboutmultiply opening an object for write no matter how good the class that controlsit.
同时,我在想它所提供的能力时生成其它一些复杂的顾虑和情况是我们应当注意的,底线是当你以写方式重复打开一个物体时,你应当小心,不管这个类如何好控制。
Anexample of where this type of functionality really might be useful to usdevelopers is in say an Object Reactor callback. Quite often you might want tomodify the current object’s state but of course you can’t because it is alreadyopen for notify. Using this new SmartPointer class it makes it possible tomodify the object as you see fit in this context, but be careful to handle therecursive object modified notifications that will be fired by doing this.
这类功能能真正对我们有用的地方的一个例子是物体反应器回调。你也许要相当频繁修改当前物体状态,但是当然你不能,因为它已经打开为回调用。用这个新的智能指针类,在这样情况下就使得修改你所见物体变得可能,但是应当注意处理做这事带来的循环物体修改通知。
All in all a very exciting new addition to the ObjectARX API, make sureyou check it out.
总的来说,这是ObjectARX API一个非常激动人心的新加功能 ,相信你能体验它。

论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!

已领礼包: 344个

财富等级: 日进斗金

发表于 2014-10-31 08:48:34 | 显示全部楼层
本帖最后由 牢固 于 2014-10-31 08:49 编辑

学习了!{:soso_e179:}智能指针使代码变得简洁,不容易犯错误,避免忘记关闭对象!以前一直没搞明白智能指针的"."操作符和"->"操作符的区别,不知道为什么有时用".",有时候用"->",现在终于明白了,"."操作符是智能指针的方法,"->"是智能指针指向对象的方法!

论坛插件加载方法
发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;
如果你在论坛求助问题,并且已经从坛友或者管理的回复中解决了问题,请把帖子标题加上【已解决】;
如何回报帮助你解决问题的坛友,一个好办法就是给对方加【D豆】,加分不会扣除自己的积分,做一个热心并受欢迎的人!
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|申请友链|Archiver|手机版|小黑屋|辽公网安备|晓东CAD家园 ( 辽ICP备15016793号 )

GMT+8, 2024-4-24 09:09 , Processed in 0.367570 second(s), 33 queries , Gzip On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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