Need help trying to show changed files between baselines.
Hi,
I'm relativity new to Java and quite new to RTC. I am looking for samples with the Plain Java API to help me try to list files that have changed in each component between releases (Baselines).
I've looked at the samples that come with the plain Java API's which explain some of the basics but there doesn't seem to be much that shows much more detail, especially with the source control side. Is it possible for someone to post a sample to achieve the above.
Thanks for any help,
Regards,
Jason
I'm relativity new to Java and quite new to RTC. I am looking for samples with the Plain Java API to help me try to list files that have changed in each component between releases (Baselines).
I've looked at the samples that come with the plain Java API's which explain some of the basics but there doesn't seem to be much that shows much more detail, especially with the source control side. Is it possible for someone to post a sample to achieve the above.
Thanks for any help,
Regards,
Jason
13 answers
When you have the IBaselineConnections, there is a compareTo method that
returns a IChangeHistorySyncReport. That should give you somewhere to
start looking.
On Fri, 27 Nov 2009 11:38:00 -0500, jasuk70
<jdean> wrote:
returns a IChangeHistorySyncReport. That should give you somewhere to
start looking.
On Fri, 27 Nov 2009 11:38:00 -0500, jasuk70
<jdean> wrote:
Hi,
I'm relativity new to Java and quite new to RTC. I am looking for
samples with the Plain Java API to help me try to list files that
have changed in each component between releases (Baselines).
I've looked at the samples that come with the plain Java API's which
explain some of the basics but there doesn't seem to be much that
shows much more detail, especially with the source control side. Is
it possible for someone to post a sample to achieve the above.
Thanks for any help,
Regards,
Jason
Hi,
Thanks for replying, so far I've managed to get a workspace manager:
I was hoping to be able to list the streams in this project and then a list of baselines for the streams. But I'm finding it hard to find documentation or samples on how to do this.
Jas
Thanks for replying, so far I've managed to get a workspace manager:
String repositoryURI= "http://xxx.xxx.com:9080/jazz";
String userId= "xxxxx";
String password= "xxxxx";
String projectAreaName= "Test Project";
ITeamRepository teamRepository= TeamPlatform.getTeamRepositoryService().getTeamRepository(repositoryURI);
teamRepository.registerLoginHandler(new LoginHandler(userId, password));
try {
teamRepository.login(null);
} catch (TeamRepositoryException e1) {
System.out.println("Login failed with user "+userId);
return;
}
IWorkspaceManager wm = SCMPlatform.getWorkspaceManager(teamRepository);
I was hoping to be able to list the streams in this project and then a list of baselines for the streams. But I'm finding it hard to find documentation or samples on how to do this.
Jas
The main thing I'm trying to work out is how to use the "Searches" to find baselines (And snapshots) linked to a stream or a component within a stream.
The search doesn't seem to have any understandable methods to do this.
Cheers,
Jas
IWorkspaceManager wm = SCMPlatform.getWorkspaceManager(teamRepository);
IBaselineSearchCriteria search = IBaselineSearchCriteria.FACTORY.newInstance();
search.????
List<IBaselineHandle> baselines = wm.findBaselines(search, 0, null);
for (Iterator<IBaselineHandle> baseline = baselines.iterator() ; baseline.hasNext(); ) {
System.out.println("Baseline = ["+baseline.next()+"]");
}
The search doesn't seem to have any understandable methods to do this.
Cheers,
Jas
Unfortunately I think you have to work from the other end, start with the
workspaces/streams and then fetch baselines from them, if you know of the
set of workspaces/streams/snapshot that you want to inspect.
On Wed, 02 Dec 2009 12:23:00 -0500, jasuk70
<jdean> wrote:
--
workspaces/streams and then fetch baselines from them, if you know of the
set of workspaces/streams/snapshot that you want to inspect.
On Wed, 02 Dec 2009 12:23:00 -0500, jasuk70
<jdean> wrote:
The main thing I'm trying to work out is how to use the
"Searches" to find baselines (And snapshots) linked to a
stream or a component within a stream.
IWorkspaceManager wm =
SCMPlatform.getWorkspaceManager(teamRepository);
IBaselineSearchCriteria search =
IBaselineSearchCriteria.FACTORY.newInstance();
search.????
List<IBaselineHandle> baselines =
wm.findBaselines(search, 0, null);
for (Iterator<IBaselineHandle> baseline =
baselines.iterator() ; baseline.hasNext(); )
{
System.out.println("Baseline =
");
}
The search doesn't seem to have any understandable methods to do
this.
Cheers,
Jas
--
Here's a thread that shows a couple of ways to get a list of changeSets by comparing two baselines.
http://jazz.net/forums/viewtopic.php?p=22460
I didn't find the baselineQueries very easy to use...maybe I was just using them wrong. The query would just return 25 or so and I wanted all of them. So I just get a list of all the baselines and then grab the baseline id that I'm looking for or sort them and grab the latest one.
http://jazz.net/forums/viewtopic.php?p=22460
I didn't find the baselineQueries very easy to use...maybe I was just using them wrong. The query would just return 25 or so and I wanted all of them. So I just get a list of all the baselines and then grab the baseline id that I'm looking for or sort them and grab the latest one.
List<IBaseline> baselines = this.workspaceMgr.findAllBaselines(component, "", this.monitor);
Unfortunately I think you have to work from the other end, start with the
workspaces/streams and then fetch baselines from them, if you know of the
set of workspaces/streams/snapshot that you want to inspect.
Thanks,
I know the stream name, I need to iterate through the components in that stream and then compare using the baselines. (I.e. I know the baseline name will start with certain characters and and then if it exists, I then need to check the previous baseline and see what has changed.)
If that makes sense.
We use this information to create an update package to allow users to only update the relevant components. Under perforce this was a very simple task that used the command line tool p4.
Any tips on doing the "Iterate through components in a stream" bit that should get me well on the way.
Thanks again for the help,
Jas
Just for interest's sake, why are you writing code to do this?
It is built-in functionality of the Jazz SCM system.
Cheers,
Geoff
jasuk70 wrote:
It is built-in functionality of the Jazz SCM system.
Cheers,
Geoff
jasuk70 wrote:
adhoowrote:
Unfortunately I think you have to work from the other end, start with
the
workspaces/streams and then fetch baselines from them, if you know
of the
set of workspaces/streams/snapshot that you want to inspect.
Thanks,
I know the stream name, I need to iterate through the components in
that stream and then compare using the baselines. (I.e. I know the
baseline name will start with certain characters and and then if it
exists, I then need to check the previous baseline and see what has
changed.)
If that makes sense.
We use this information to create an update package to allow users to
only update the relevant components. Under perforce this was a very
simple task that used the command line tool p4.
Any tips on doing the "Iterate through components in a
stream" bit that should get me well on the way.
Thanks again for the help,
Jas
Just for interest's sake, why are you writing code to do this?
It is built-in functionality of the Jazz SCM system.
Cheers,
Geoff
Can it be done from the command line?
We need to use this in our build process. (Which is done using makefiles on multiple Unix and windows platforms using the same source code)
Cheers,
Jas
Yes, you can use the Jazz SCM command line to efficiently update your
file area.
Cheers,
Geoff
jasuk70 wrote:
file area.
Cheers,
Geoff
jasuk70 wrote:
gmclemmwrote:
Just for interest's sake, why are you writing code to do this?
It is built-in functionality of the Jazz SCM system.
Cheers,
Geoff
Can it be done from the command line?
We need to use this in our build process. (Which is done using
makefiles on multiple Unix and windows platforms using the same
source code)
Cheers,
Jas
Yes, you can use the Jazz SCM command line to efficiently update your
file area.
Cheers,
Geoff
Hi,
We need a list of files that have changed in each component so we can generate an upgrade package for each component that has changed for our auto update system.
An example of the perforce way is:
ukvir-jdrh5_64-~: p4 changes -m 1 //depot/APP/COMP1/...
Change 86367 on 2009/11/25 by xxx@xxx 'xxxxxxxxxxxxxx'
The routine will then check the last change that was made to the component and work out if this "Component" has been updated since the last release (By checking a file that has been checked into an area of perforce). If it has changed, then it will update this area with the latest change number and then mark this component as needing to be updated.
This is all done by the build process.
Cheers,
Jas
page 1of 1 pagesof 2 pages