vote up 1 vote down star

Hi;

I have a requirement in my project. There are 2 different UCM VOBs. Since some of the elements(directories) in one VOB needs to be reused in another VOB the team use to copy and paste the files manually.

We have come up with the idea of creating hyperlinks to link the Directories across 2 different VOBs. I have used "to create a VOB symbolic link in the checked-in directory version \vobs_hw@@\main\3 that points to hello.c in the current working directory" option(Not sure this is the correct option!) Refer to ln command.

Since I want to link DirectoryA of VOBA, I used the below command while my present working directory is my destination to which the link should be created.

 VOBS/VOBB/FolderB/ $ct ln -slink -nco /VOBS/VOBA/FolderA/DirectoryA .

After the execution though the link is created I couldn't traverse to the folders since my view is set for VOBB and the link is from VOBA. Please advice.

Any small info would be useful to me. If there is any other way to dynamically link the Clearcase elements across VOBS please suggest.

flag

0% accept rate
Just added advices, plus a solution to your rebase problem. – VonC Sep 18 at 8:38
I take from your last comment that you did solve your problem, right? – VonC Sep 18 at 8:55
You're welcome. If you have any further question/clarification about those UCM concepts, you know where to ask ;) – VonC Sep 18 at 10:34
Just completed my answer with technotes relatives to symlink and CCRC views – VonC Sep 22 at 6:16
I think, based on your latest comment, that the main problem is for symlink defined with absolute paths instead of relative path. Relative path should always be used when defining a symlink. – VonC Sep 22 at 8:04
show 1 more comment

1 Answer

vote up 0 vote down

If you have a snapshot view, you need to add the relevant load rule to see VOBA elements.
If you have a dynamic view, you need to make sure VOBA is mounted.

In both case, you need to make sure your stream contains a baseline for a VOBA component, otherwise your link will point to an unknown version of DirectoryA.

Remember:

Use relative VOB symbolic links instead of absolute VOB symbolic links.
Absolute VOB symbolic links require you to use absolute pathnames from the VOB tag level; if the VOB mount point should change, the link becomes invalid


Personally, I would never use symbolic link to link directories, only files.
And I would not use it between different UCM VOB (meaning between two different UCM component). I would rather use relative path to refer to or include files from another component from one of my files. But I would not make those files appears magically within my component. That way, the dependency between the two components is less "obfuscated";)

Note: I am not sure how linking a a directory work in term of content it displays.
Linking a file works just fine, provided:

  • you have the other VOB load/mounted if your symbolic link is just a name '../myOtherVob/myFile.txt'
  • you have provided the symbolic link with a full complexte extended pathname: :../myOtherVob/myFile.txt@@/main/myBranch/3. That means this symbolic link will always display the same version of the file. In that case, you do not need to mount/load the other vob.


I use dynamic views. I couldn't add the baseline of VOB B to VOB A since it says VOB B dynamic view has check outs. But I couldn't see any such check outs.

1/ You do not add a baseline of VobB to VobA: that does not make sense.
What you do is adding a baseline of a component defined in VobB (its root directoryory refers to VobB) to the stream which, up until now, only contained a baseline of a component defined in VobA.
You expend your "recipe list": before, you needed only a component from VobA. Now, you need also one from VobB.

2/ If the rebase operation fails because of checkout files, simply:

  • create another dyanmic view referring to same stream
  • add your baseline (rebase)
  • go to your first view
  • type "cleartool setcs -stream"

And you will see the files from VobB in your first view, even though it contains checkouts.
Again, I believe you only need to do that is your symbolic link was not referring to an extended pathname. If it did, you should not need to add explicitly a baseline from component on VobB to your stream.


Note: Symbolic link with CCRC is a tricky matter.

  • First, you need to have the full client to create symbolic link (see this feature matrix, and search for "symbolic links" within that page)
  • Then you need at least a CCRC 7.0.1 to see them (see this thread)
  • If you need to delete a symbolic link, you would better do it from a full client, not a CCRC one (see technote 1396589)
  • Directory element symlinks that are using absolute path or previous directory (..) are not loaded (PK74531):
    Maybe relative paths to different directories will work (....\otherDir\otherPath), but just '..' will definitively fail.
  • CCRC does not load symlinks to files outside of the VOB and returns Copy area isn't parent of pname (PK74841)
    If you refer not just to files outside your own vob, but to files inside another vob, make sure it is loaded ion your CCRC view. But even with that, that may still not work and be a severe limitation.

Again, symlink are not always a good solution. Rather to import directories within your own space, you would be better off referencing those other components (with other paths to other vobs) in your view, adjusting your scripts or classpath to reference those paths, instead of wanting to see them directly within your directories.

link|flag
Thanks Von. I use dynamic views. I couldn't add the baseline of VOB B to VOB A since it says VOB B dynamic view has check outs. But I couldn't see any such check outs. I am struck with this. Please advice – Rational Admin Sep 18 at 8:32
Von; solving the check out on the dynamic view looks like a magic.I can't imagine. I executed cleartool setcs -stream. Amazing! I could look at my files. About the 1st baseline point - I made a typo while explaining the baseline concept. I did the right basleine in the past but it failed due to check out on the 1st dynamic view. – Rational Admin Sep 18 at 8:52
Yes you are correct. Your suggestions helped me solve the issue. You are so helpful. – Rational Admin Sep 18 at 9:04
Von; I didn't expect soon I will have a problem with the same funda. I continued to link the directories and it was fine.Now I got a strange situation where in some of the links are reflecting in UNIX command prompts but not in CCRC. All the developers work with CCRC and it becomes really difficult to answer the reason when it shows up in UNIX and not in CCRC. Any idea?? Please help – Rational Admin Sep 21 at 15:48
Thanks. The technotes are informative. One of my project mates has wrote to me - "The issue was that relative paths need to be used as /vobs/NwaFound/etc… is irrelevant in a windows environment, however it will work in UNIX. Instead we need to use ../../../etc../vobs/NwaFound. The incorrect directory reference did not throw an error in CCRC as failed symlinks only throw a warning thus do not prompt the user for action". Will this be the primary reason for the links not showing up in CCRC - Windows when I created the links in UNIX. It exists for only 1 symlink and not to all of them I created. – Rational Admin Sep 22 at 7:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.