History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: SCM-292
Type: Bug Bug
Status: Open Open
Priority: Critical Critical
Assignee: Patrick Schneider
Reporter: Emmanuel Venisse
Votes: 2
Watchers: 3
Operations

If you were logged in you would be able to see more operations.
Maven SCM

Replace DEFAULT_CLIENTSPEC_PROPERTY system property by a map to store in memory clientspec names

Created: 27/Mar/07 08:53 AM   Updated: 16/May/07 03:41 PM
Component/s: maven-scm-provider-perforce
Affects Version/s: 1.0-beta-4
Fix Version/s: 1.x

Time Tracking:
Not Specified

Complexity: Intermediate


 Description  « Hide
With a Map instead of a system property, we'll can support more that one clientspec in the jvm. It's necessary for Continuum because it access to more than one project in Perforce.

 All   Comments   Work Log   Change History      Sort Order: Ascending order - Click to sort in descending order
Mike Perham - 27/Mar/07 04:45 PM
E, I'm on vacation for the next week.

Mike Perham - 02/Apr/07 03:26 PM
Patrick, do you have any time to work on this?

Mike Perham - 02/Apr/07 03:35 PM
E, can you give more details about how you expect this to work? Am I supposed to map { directory -> clientspec-name }? The SCM provider really only knows the current directory it is working with. So how will Continuum pass me the clientspec name to use?

Emmanuel Venisse - 02/Apr/07 03:45 PM
Continuum know only the scm url.and the working directory.
The actual DEFAULT_CLIENTSPEC_PROPERTY system property can't be used because in a CI tool like continuum, we manage more that one project so more than one clientspec, and this system property allow only one.

I thought to a map that will contain all client specs with the scm url in the key and the client spec in the value.
Do you think it can work? The client spec is generated at the end of the checkout, right?


Patrick Schneider - 02/Apr/07 04:52 PM
I am pretty busy, but I can take a look.

Mike Perham - 02/Apr/07 05:32 PM
But where does this map come from? Who creates it? No, the clientspec is completely independent from the checkout and in most cases is not created by the provider.

Mike Perham - 02/Apr/07 05:35 PM
I might be able to get the existing clientspec name using 'p4 where pom.xml' and examining the output but this doesn't help in the case where I want to checkout a new project using an existing clientspec. Let me think about this more.

Mike Perham - 04/Apr/07 06:56 PM
I don't see any way to support multiple clientspecs without explicit support in Continuum and SCM. We need support for ad hoc variables associated with a build which can be passed to the provider. The system property is a hack which obviously doesn't scale.

Emmanuel Venisse - 05/Apr/07 02:56 AM
Possible solution without modification in continuum:

instead of system property, we can store the clientspec in ${user.home}/.scm/perforce.xml (other providers use a xml file to configure the provider too)
In this file we store a mapping between the scmurl and the clientspec

<settings>
    <clientSpecMappings>
        <clientSpecMapping>
            <scmUrl>scm:perforce:username@host:port:path_to_repository1</scmUrl>
            <clientSpecName>username-host-MavenSCM-path-to-repo1</clientSpecName>
        </clientSpecMapping>
        <clientSpecMapping>
            <scmUrl>scm:perforce:username@host:port:path_to_repository2</scmUrl>
            <clientSpecName>username-host-MavenSCM-path-to-repo2</clientSpecName>
        </clientSpecMapping>
    </clientSpecMappings>
</settings>

and in PerforceScmProvider.getClientspecName(...) we return the clientSpecName from the xml file. If if doesn't exist, we generate a default name and we store it in the xml file.

WDYT?


Emmanuel Venisse - 10/Apr/07 02:51 PM
Mike, ping.

Raphael PETIT - 01/May/07 03:44 AM
Currently, each client spec has
  • a root with the unique number at the end
  • a view defined by one line

Maybe, it can be changed to a unique client spec

  • a root (global definition)
  • a view defined by several line the unique number at the end

So things seems to be manageable without continnum concept in the scm...