/xbmc/visualizations/Vortex/angelscript/docs/manual/doc_obj_handle.html
http://github.com/xbmc/xbmc · HTML · 69 lines · 66 code · 2 blank · 1 comment · 0 complexity · 5e5a4d60403a533214cf980a2bf9bd64 MD5 · raw file
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
- <title>AngelScript: Object handles</title>
- <link href="tabs.css" rel="stylesheet" type="text/css">
- <link href="doxygen.css" rel="stylesheet" type="text/css">
- </head><body>
- <!-- Generated by Doxygen 1.5.9 -->
- <div class="contents">
- <h1><a class="anchor" name="doc_obj_handle">Object handles </a></h1>In AngelScript an object handle is a reference counted pointer to an object. In the scripts they are used to pass the objects around by reference instead of by value. Depending on how an application type is registered the type will support handles.<p>
- <dl class="see" compact><dt><b>See also:</b></dt><dd><a class="el" href="doc_register_type.html">Registering an object type</a>, <a class="el" href="doc_script_handle.html">Object handles</a> in the script language</dd></dl>
- <h2><a class="anchor" name="doc_obj_handle_3">
- Managing the reference counter in functions</a></h2>
- Whenever the object handle is passed by value from the application to the script engine, or vice versa its reference should be accounted for. This means that the application must release any object handles it receives as parameters when it no longer needs them, it also means that the application must increase the reference counter for any object handle being returned to the script engine. Note that this is not the same for the <a class="el" href="doc_generic.html">generic calling convention</a> where AngelScript automatically takes care of most of work.<p>
- A function that creates an object and returns it to the script engine might look like this:<p>
- <div class="fragment"><pre class="fragment"><span class="comment">// Registered as "obj@ CreateObject()"</span>
- obj *CreateObject()
- {
- <span class="comment">// The constructor already initializes the ref count to 1</span>
- <span class="keywordflow">return</span> <span class="keyword">new</span> obj();
- }
- </pre></div><p>
- A function that receives an object handle from the script and stores it in a global variable might look like this:<p>
- <div class="fragment"><pre class="fragment"><span class="comment">// Registered as "void StoreObject(obj@)"</span>
- obj *o = 0;
- <span class="keywordtype">void</span> StoreObject(obj *newO)
- {
- <span class="comment">// Release the old object handle</span>
- <span class="keywordflow">if</span>( o ) o->Release();
- <span class="comment">// Store the new object handle</span>
- o = newO;
- }
- </pre></div><p>
- A function that retrieves a previously stored object handle might look like this:<p>
- <div class="fragment"><pre class="fragment"><span class="comment">// Registered as "obj@ RetrieveObject()"</span>
- obj *RetrieveObject()
- {
- <span class="comment">// Increase the reference counter to account for the returned handle</span>
- <span class="keywordflow">if</span>( o ) o->AddRef();
- <span class="comment">// It is ok to return null if there is no previous handle stored</span>
- <span class="keywordflow">return</span> o;
- }
- </pre></div><p>
- A function that receives an object handle in the parameter, but doesn't store it looks like this:<p>
- <div class="fragment"><pre class="fragment"><span class="comment">// Registered as "void DoSomething(obj@)"</span>
- <span class="keywordtype">void</span> DoSomething(obj *o)
- {
- <span class="comment">// When finished with the object it must be released</span>
- <span class="keywordflow">if</span>( o ) o->Release();
- }
- </pre></div><h2><a class="anchor" name="doc_obj_handle_4">
- Auto handles can make it easier</a></h2>
- The application can use auto handles (@+) to alleviate some of the work of managing the reference counter. When registering the function or method with AngelScript, add a plus sign to the object handles that AngelScript should automatically manage. For parameters AngelScript will then release the reference after the function returns, and for the return value AngelScript will increase the reference on the returned pointer. The reference for the returned value is increased before the parameters are released, so it is possible to have the function return one of the parameters.<p>
- <div class="fragment"><pre class="fragment"><span class="comment">// Registered as "obj@+ ChooseObj(obj@+, obj@+)"</span>
- obj *ChooseObj(obj *a, obj *b)
- {
- <span class="comment">// Because of the auto handles AngelScript will</span>
- <span class="comment">// automatically manage the reference counters</span>
- <span class="keywordflow">return</span> some_condition ? a : b;
- }
- </pre></div><p>
- However, it is not recommended to use this feature unless you can't change the functions you want to register to properly handle the reference counters. When using the auto handles, AngelScript needs to process all of the handles which causes an extra overhead when calling application registered functions.<p>
- The auto handles does not affect the behaviour of the handles when the <a class="el" href="doc_generic.html">generic calling convention</a> is used. </div>
- <hr size="1"><address style="text-align: right;"><small>Generated on Wed Dec 16 19:34:51 2009 for AngelScript by
- <a href="http://www.doxygen.org/index.html">
- <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.9 </small></address>
- </body>
- </html>