<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Circles and Crosses &#187; copyable</title>
	<atom:link href="http://ox.no/posts/tag/copyable/feed" rel="self" type="application/rss+xml" />
	<link>http://ox.no</link>
	<description>Håvard Stranden&#039;s website</description>
	<lastBuildDate>Sat, 20 Aug 2011 00:11:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Copyable available on GitHub</title>
		<link>http://ox.no/posts/copyable-available-on-github</link>
		<comments>http://ox.no/posts/copyable-available-on-github#comments</comments>
		<pubDate>Thu, 10 Dec 2009 23:10:29 +0000</pubDate>
		<dc:creator>Håvard</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[copyable]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://ox.no/?p=144</guid>
		<description><![CDATA[People actually download and use Copyable, and they tend to use it in scenarios I haven&#8217;t used it in. This results in bug reports and patch submissions. So far, these have been given to me by e-mail or by blog &#8230; <a href="http://ox.no/posts/copyable-available-on-github">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>People actually download and use Copyable, and they tend to use it in scenarios I haven&#8217;t used it in. This results in bug reports and patch submissions. So far, these have been given to me by e-mail or by blog comment, neither of which is a particularly great way of receiving them. So after receiving another one today, I finally got around to putting Copyable on <a href="http://github.com">GitHub</a>.</p>

<p>The version I put up includes several enhancements from the latest release:</p>

<ul>
<li>It uses <code>FormatterServices.GetUninitializedObject</code> and hence does not depend on a parameterless constructor or custom instance provider (but you can of course still create an instance provider if you want to control object initialization)</li>
<li>The bug with copy semantics for already visited objects submitted by Walter Oesch has been fixed</li>
<li>The bug with inherited fields found by Alex, and the patch submitted for it, has been incorporated</li>
</ul>

<p>Bleeding edge Copyable can be found at <a href="http://github.com/havard/copyable">http://github.com/havard/copyable</a>. The clone URL is <a href="git://github.com/havard/copyable.git">git://github.com/havard/copyable.git</a>. Now go fix your own bugs! Or even better, enhance the framework.</p>
]]></content:encoded>
			<wfw:commentRss>http://ox.no/posts/copyable-available-on-github/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Extension methods for copying or cloning objects</title>
		<link>http://ox.no/posts/extension-methods-for-copying-or-cloning-objects</link>
		<comments>http://ox.no/posts/extension-methods-for-copying-or-cloning-objects#comments</comments>
		<pubDate>Thu, 10 Jan 2008 19:23:32 +0000</pubDate>
		<dc:creator>Håvard</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[clone]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[copyable]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://ox.no/posts/extension-methods-for-copying-or-cloning-objects</guid>
		<description><![CDATA[C# 3.0 includes a new feature known as extension methods, and fiddling with it triggered the idea of creating a mechanism for copying or cloning (virtually) any .NET object or graph of objects. The manifestation of that idea has become &#8230; <a href="http://ox.no/posts/extension-methods-for-copying-or-cloning-objects">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>C# 3.0 includes a new feature known as extension methods, and fiddling with it triggered the idea of creating a mechanism for copying or cloning (virtually) any .NET object or graph of objects. The manifestation of that idea has become a rather decent little framework for copying objects. It performs a deep copy as automatically as it possibly can, and provides mechanisms to easily solve many of the cases which cannot be covered automatically. It is great for copying your custom object hierarchies, and saves you the pain of a solution like implementing <code>ICloneable</code> for an entire hierarchy of objects. Click <a href="http://ox.no/software/copyable" title="The Copyable framework">here</a> to grab it now, and read on for a presentation.<!-- more --></p>

<p>Let&#8217;s start off with a few words on extension methods. They are best explained through an example. Let&#8217;s say we want to be able to calculate area given size. Wouldn&#8217;t it be nice to be able to add <code>GetArea</code> to the already existing <code>Size</code> class? Well, let&#8217;s do so!</p>

<p><pre class="brush: csharp; ">
public static class ExtensionMethods
{
  public static int GetArea(this Size size)
  {
    return size.Width * size.Height;
  }
}
</pre>
As you can see, the new syntax simply allows you to tell the compiler that the <code>this</code> of this method is a <code>Size</code>. This means that the method is an extension of the <code>Size</code> class.</p>

<p>As mentioned, I had the idea of extending the very base of the C# class hierarchy (<code>System.Object</code>) with a method for copying or cloning &#8220;any&#8221; object. Obviously, the method cannot automatically copy <em>any</em> object, since it cannot possibly know how to construct an object from an arbitrary class. Hence, a small framework needed to be created. The goals were to:</p>

<ul>
<li>Enable copying of <em>many</em> objects automatically.</li>
<li>Enable copying of virtually <em>any</em> object with very little effort.</li>
<li>Automate and hide away as much as possible (The <a href="http://en.wikipedia.org/wiki/KISS_principle" title="The KISS Principle">KISS</a> Principle).</li>
</ul>

<p>The result is Copyable (pun intended). <!-- more --></p>

<h2>The Copyable framework</h2>

<p>Copyable is a small framework for copying (or cloning, if you will) objects. The straightforward way of using it is to just reference the assembly it&#8217;s in from your project, and start copying!</p>

<p><pre class="brush: csharp; ">
SomeType instance = new SomeType();
// ...do lots of stuff to the object...
SomeType copy = instance.Copy(); // Create a deep copy
</pre></p>

<p>The instance <code>copy</code> is now a deep copy of <code>instance</code>, no matter how complex the object graph for <code>instance</code> is. The relations in the <code>copy</code> graph is the same as in <code>instance</code>, but all objects in the <code>copy</code> object graph are copies of those in <code>instance</code>.</p>

<!--adsense-->

<p>For the automated copy to work, though, one of the following statements must hold for <code>instance</code>:</p>

<ul>
<li>Its type must have a parameterless constructor, or</li>
<li>It must be a <code>Copyable</code>, or</li>
<li>It must have an <code>IInstanceProvider</code> registered for its type.</li>
</ul>

<p>Besides the <code>Copy</code> method, The <code>Copyable</code> class and <code>IInstanceProvider</code> interface are the two major building blocks of the Copyable framework. Each of these blocks enable copying of objects that cannot automatically be copied.</p>

<h2>The Copyable base class</h2>

<p><code>Copyable</code> is an abstract base class for objects that can be copied. To create a copyable class, you simply subclass <code>Copyable</code> and call its constructor with the arguments of your constructor.</p>

<p><pre class="brush: csharp; ">
class MyClass : Copyable
{
  public MyClass(int a, double b, string c)
    : base(a, b, c)
  {
  }
}
</pre></p>

<p>This code above makes <code>MyClass</code> a copyable class. Note that if <code>MyClass</code> had had a parameterless constructor, subclassing <code>Copyable</code> would not be necessary.</p>

<p><code>MyClass</code> can now be copied just like the previous example.
<pre class="brush: csharp; ">
MyClass a = new MyClass(1, 2.0, &quot;3&quot;);
MyClass b = a.Copy();
</pre></p>

<p>The introduction of the <code>Copyable</code> base class solves many problems, but not all. Let&#8217;s say you wanted to copy a <code>System.Drawing.SolidBrush</code>. This class does not have a parameterless constructor, which means it cannot be copied &#8220;automatically&#8221; by the framework. Also, you cannot alter it so that it subclasses <code>Copyable</code>. So, what do you do? You create an instance provider.</p>

<h2>The IInstanceProvider interface</h2>

<p>An instance provider is defined by the interface <code>IInstanceProvider</code>. As the name clearly states, the implementation is a provider of instances. One instance provider can provide instances of one given type. The Copyable framework automatically detects <code>IInstanceProvider</code> implementations in all assembies in its application domain, so all you need to do to create a working instance provider is to define it. No registration or other additional operations are required. To simplify the implementation of instance providers and the <code>IInstanceProvider</code> interface, an abstract class <code>InstanceProvider</code> is included in the framework.</p>

<dl>
<dt><pre class="brush: csharp; ">
public class SolidBrushProvider&lt;/dt&gt;
&lt;dd&gt;InstanceProvider&lt;SolidBrush&gt;
{
public override SolidBrush CreateTypedCopy(SolidBrush s)
{
return new SolidBrush(s.Color);
}
}
</pre></dd>
</dl>

<p>This implementation will be used automatically by the Copyable framework. <strong>NOTE: To be usable, the instance provider MUST have a parameterless constructor.</strong></p>

<p>The instance provider pattern does not solve the case where you want different initial states for your SolidBrush instances depending on which context you use them for copying. For those cases, an overload of <code>Copy()</code> exists which takes an already created instance as an argument. This argument will become the copy.</p>

<p><pre class="brush: csharp; ">
SolidBrush instance = new SolidBrush(Color.Red);
instance.Color = Color.Black;
SolidBrush copy = new SolidBrush(Color.Red);
instance.Copy(copy); // Create a deep copy
</pre></p>

<p>In this example, <code>copy</code> is now of the color <code>Color.Black</code>.</p>

<h2>Limitations and pitfalls</h2>

<p>Although this solution works in most cases, it&#8217;s not a silver bullet. Be aware when you copy classes that hold unmanaged resources such as handles. If these classes are designed on the premise that their resources are exclusive to them, they will manage them as they see fit. Imagine if you copied a class which holds a handle, disposed one of the instances, and continued using the copy. The handle will (probably) be freed by the original instance, and the copy will generate an access violation by attempting reading or writing freed memory.</p>

<p>That&#8217;s it! The Copyable framework can be downloaded from <a href="http://ox.no/software/copyable" title="The Copyable framework">here</a>. For those interested in reading more on extension methods, For additional information, MSDN provides an excellent explanation in the <a href="http://msdn2.microsoft.com/en-us/library/bb383977.aspx" title="Extension methods in C# 3.0">C# Programming Guide</a>, and Scott Guthrie has an introduction article <a href="http://weblogs.asp.net/scottgu/archive/2007/03/13/new-orcas-language-feature-extension-methods.aspx" title="Scott Guthrie on extension methods">here</a>.</p>

<p>Enjoy Copyable, and please let me know if you find it useful or come across any problems with it.</p>

<p><strong>UPDATE 2009-12-11:</strong> Due to popular demand, I have made the source code for Copyable available under the MIT license. The source can be downloaded <a href="http://ox.no/software/copyable" title="The Copyable framework">here</a>.</p>

<p><strong>UPDATE 2010-01-31:</strong> The requirement of parameterless constructors has been removed in the latest version of Copyable available on GitHub. A new release will follow soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://ox.no/posts/extension-methods-for-copying-or-cloning-objects/feed</wfw:commentRss>
		<slash:comments>61</slash:comments>
		</item>
	</channel>
</rss>

