How do I shorten a clearcase view's load directory? - Stack Overflow most recent 30 from stackoverflow.com2009-11-24T14:44:27Zhttp://stackoverflow.com/feeds/question/540179http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/540179/how-do-i-shorten-a-clearcase-views-load-directory2How do I shorten a clearcase view's load directory?orj2009-02-12T05:33:36Z2009-02-12T17:10:01Z
<p>In Clearcase I have a VOB with a path like this:</p>
<pre><code>\Department\ProductGroup\Product1\Development
</code></pre>
<p>I have a view with a Config Spec like this:</p>
<pre><code>element * CHECKEDOUT
element * .../mybranch/LATEST
element * /main/LATEST -mkbranch mybranch
load \Department\ProductGroup\Product1
</code></pre>
<p>All the source code for Product1 is in the Development directory. Nothing I care about exists outside this directory. All references in the code are relative to this directory.</p>
<p>I have created the above Clearcase view in the directory c:\dev</p>
<p>Presently the above setup creates a directory:</p>
<pre><code>c:\dev\Department\ProductGroup\Product1\Development
</code></pre>
<p>All the parent directories to <code>Development</code> are empty. I'd rather have just the following directories.</p>
<pre><code>c:\dev\Product1
</code></pre>
<p>Where <code>c:\dev\Product1</code> mapped to the VOB path <code>\Department\ProductGroup\Product1\Development</code>. Is this possible?</p>
http://stackoverflow.com/questions/540179/how-do-i-shorten-a-clearcase-views-load-directory/540289#5402891Answer by VonC for How do I shorten a clearcase view's load directory?VonC2009-02-12T06:39:49Z2009-02-12T17:10:01Z<p>1/ Why not only load \Department\ProductGroup\Product1\Development ?</p>
<pre><code>load /Department/ProductGroup/Product1/Development
</code></pre>
<p>Note: you can use '<code>/</code>', easier than '<code>\</code>' and Windows config spec does interpret it correctly.</p>
<p>1bis/ If you want to keep a general rule, you could use some "<strong>cleaning rules</strong>"</p>
<p>Consider this config spec<br />
(<strong>test it in a dynamic view first</strong>, to check quickly -- that is without endless update reloading steps -- if the result does match what you need: files under <code>Development</code> and no files anywhere else)</p>
<pre><code>element * CHECKEDOUT
# read/write selection rule for the directory and sub-directory
# where you need to work
element /Department/ProductGroup/Development/... .../mybranch/LATEST
element /Department/ProductGroup/Development/... /main/LATEST -mkbranch mybranch
# specific selection rule for the parent directories of Development
# those rules do not contain a mkbranch directive
element /Department/ProductGroup .../mybranch/LATEST
element /Department/ProductGroup /main/LATEST
element /Department .../mybranch/LATEST
element /Department /main/LATEST
# cleaning rule right there: anything outside /Department/ProductGroup/Development
# will not be selected, hence not loaded
element /Department/* -none
load \Department
</code></pre>
<p>That way, you always keep the same load rule <code>load \Department</code>, and your selection rules do the cleaning for you.</p>
<p>2/ Regarding your path issue, you can use Symlink but the easiest way is to use a <strong>subst</strong></p>
<pre><code>subst X: c:\dev\Department\ProductGroup\Product1\Development
</code></pre>
<p>And you could go on using your snapshot view within X:\</p>
<p>BUT that would not work because ClearCase needs:</p>
<ul>
<li>view.dat (the hidden file indicating a directory tree is in fact a snapshot view)</li>
<li><p>a vob (which is <code>Department</code> in your case. <code>ProductGroup\Product1\Development</code> is a path within the Vob <code>Department</code>)</p>
<p>X:>ct lsview -l -full -pro -cview
cleartool: Error: Cannot get view info for current view: not a ClearCase object.
X:>ct ls
cleartool: Error: Pathname is not within a VOB: "."</p></li>
</ul>
<p>For those same reasons, <strong>a hardlink with <a href="http://technet.microsoft.com/en-us/sysinternals/bb896768.aspx" rel="nofollow">Junction</a> on windows will not work</strong>:</p>
<pre><code>c:\dev>junction Product1 Department\ProductGroup\Product1
Junction v1.05 - Windows junction creator and reparse point viewer
Copyright (C) 2000-2007 Mark Russinovich
Systems Internals - http://www.sysinternals.com
Created: C:\dev\Product1
Targetted at: C:\dev\Department\ProductGroup\Product1
C:\cc\xxx>ct ls
cleartool: Error: Pathname is not within a VOB: "."
</code></pre>
<p>So what you can do is:</p>
<pre><code>subst X: c:\dev
</code></pre>
<p>That combined with the specific load rules from 1/ or the cleaning rules from 1bis/ will give you:</p>
<ul>
<li>a slightly shorter path</li>
<li>no extra empty sub-directories</li>
</ul>
<p><hr /></p>
<p>2bis/ "Devious" solution:</p>
<p>From the ClearCase explorer, move <code>Development</code> from <code>Department\ProductGroup\Product1</code> to <code>Department</code>! That move will be recording within '<code>mybranch</code>' version tree, and will not be visible for anyone else working in <code>/main/LATEST</code>.</p>
<p>Then with the <code>subst</code> from above, you will work within 'mybranch' in <code>Department\Development</code>. </p>
<pre><code>X:\Department\Development
</code></pre>
<p>When you want to go public, make the inverse move.</p>