Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornhauge2008-10-14 13:14:46 +0000
committernhauge2008-10-14 13:14:46 +0000
commitf71dadc5d2f9c82a89f9f7dbd04b3fce3f02faa7 (patch)
tree9b6cc73eb6bbf6d56c9bcdc1cb4b02bb3fd05f03
parentfad9017f32c754855999e6c8cb5fc7e92152f1a4 (diff)
downloadwebtools.dali-f71dadc5d2f9c82a89f9f7dbd04b3fce3f02faa7.tar.gz
webtools.dali-f71dadc5d2f9c82a89f9f7dbd04b3fce3f02faa7.tar.xz
webtools.dali-f71dadc5d2f9c82a89f9f7dbd04b3fce3f02faa7.zip
245573 - Fix for validation deadlock. Lazily load connection profiles.
-rw-r--r--jpa/plugins/org.eclipse.jpt.db/src/org/eclipse/jpt/db/internal/DTPConnectionProfileRepository.java56
1 files changed, 35 insertions, 21 deletions
diff --git a/jpa/plugins/org.eclipse.jpt.db/src/org/eclipse/jpt/db/internal/DTPConnectionProfileRepository.java b/jpa/plugins/org.eclipse.jpt.db/src/org/eclipse/jpt/db/internal/DTPConnectionProfileRepository.java
index d6083c3a61..eebb5a1e0a 100644
--- a/jpa/plugins/org.eclipse.jpt.db/src/org/eclipse/jpt/db/internal/DTPConnectionProfileRepository.java
+++ b/jpa/plugins/org.eclipse.jpt.db/src/org/eclipse/jpt/db/internal/DTPConnectionProfileRepository.java
@@ -32,7 +32,7 @@ public final class DTPConnectionProfileRepository
private LocalProfileListener profileListener;
- private final Vector<DTPConnectionProfileWrapper> connectionProfiles = new Vector<DTPConnectionProfileWrapper>();
+ private Vector<DTPConnectionProfileWrapper> connectionProfiles;
// ********** singleton **********
@@ -58,27 +58,20 @@ public final class DTPConnectionProfileRepository
*/
public synchronized void start() {
this.dtpProfileManager = ProfileManager.getInstance();
- for (IConnectionProfile dtpProfile : this.dtpProfileManager.getProfiles()) {
- this.connectionProfiles.add(new DTPConnectionProfileWrapper(dtpProfile));
- }
- //add the profile listener after initializing the profiles. otherwise we end up
- //with duplicate connection profiles. The DTP loadProfiles() action both
- //loads the profiles and fires event notification for each added profile.
- //This is a temporary measure for bug 246948 and we can hopefully get DTP
- //to fix the underlying issue.
this.profileListener = new LocalProfileListener();
- this.dtpProfileManager.addProfileListener(this.profileListener);
}
/**
* called by plug-in
*/
public synchronized void stop() {
- for (DTPConnectionProfileWrapper profile : this.connectionProfiles) {
- profile.dispose();
+ if (this.connectionProfiles != null) {
+ for (DTPConnectionProfileWrapper profile : this.connectionProfiles) {
+ profile.dispose();
+ }
+ this.dtpProfileManager.removeProfileListener(this.profileListener);
+ this.connectionProfiles = null;
}
- this.connectionProfiles.clear();
- this.dtpProfileManager.removeProfileListener(this.profileListener);
this.profileListener = null;
this.dtpProfileManager = null;
}
@@ -86,16 +79,37 @@ public final class DTPConnectionProfileRepository
// ********** profiles **********
+ private synchronized Vector<DTPConnectionProfileWrapper> getConnectionProfiles() {
+ if (this.connectionProfiles == null) {
+ this.connectionProfiles = this.buildConnectionProfiles();
+ //Add the profile listener after initializing the profiles; otherwise we end up
+ //with duplicate connection profiles. The DTP #loadProfiles() method both
+ //loads the profiles and fires event notification for each added profile.
+ //This is a temporary measure for bug 246948 and we can hopefully get DTP
+ //to fix the underlying issue.
+ this.dtpProfileManager.addProfileListener(this.profileListener);
+ }
+ return this.connectionProfiles;
+ }
+
+ private Vector<DTPConnectionProfileWrapper> buildConnectionProfiles() {
+ Vector<DTPConnectionProfileWrapper> profiles = new Vector<DTPConnectionProfileWrapper>();
+ for (IConnectionProfile dtpProfile : this.dtpProfileManager.getProfiles()) {
+ profiles.add(new DTPConnectionProfileWrapper(dtpProfile));
+ }
+ return profiles;
+ }
+
public synchronized Iterator<ConnectionProfile> connectionProfiles() {
- return new CloneIterator<ConnectionProfile>(this.connectionProfiles); // read-only
+ return new CloneIterator<ConnectionProfile>(this.getConnectionProfiles()); // read-only
}
private synchronized Iterator<DTPConnectionProfileWrapper> connectionProfileWrappers() {
- return new CloneIterator<DTPConnectionProfileWrapper>(this.connectionProfiles); // read-only
+ return new CloneIterator<DTPConnectionProfileWrapper>(this.getConnectionProfiles()); // read-only
}
public int connectionProfilesSize() {
- return this.connectionProfiles.size();
+ return this.getConnectionProfiles().size();
}
public Iterator<String> connectionProfileNames() {
@@ -122,18 +136,18 @@ public final class DTPConnectionProfileRepository
}
synchronized DTPConnectionProfileWrapper addConnectionProfile(IConnectionProfile dtpConnectionProfile) {
- for (DTPConnectionProfileWrapper wrapper : this.connectionProfiles) {
+ for (DTPConnectionProfileWrapper wrapper : this.getConnectionProfiles()) {
if (wrapper.wraps(dtpConnectionProfile)) {
throw new IllegalStateException("duplicate connection profile: " + dtpConnectionProfile.getName()); //$NON-NLS-1$
}
}
DTPConnectionProfileWrapper wrapper = new DTPConnectionProfileWrapper(dtpConnectionProfile);
- this.connectionProfiles.add(wrapper);
+ this.getConnectionProfiles().add(wrapper);
return wrapper;
}
synchronized DTPConnectionProfileWrapper removeConnectionProfile(IConnectionProfile dtpConnectionProfile) {
- for (Iterator<DTPConnectionProfileWrapper> stream = this.connectionProfiles.iterator(); stream.hasNext(); ) {
+ for (Iterator<DTPConnectionProfileWrapper> stream = this.getConnectionProfiles().iterator(); stream.hasNext(); ) {
DTPConnectionProfileWrapper wrapper = stream.next();
if (wrapper.wraps(dtpConnectionProfile)) {
stream.remove();
@@ -144,7 +158,7 @@ public final class DTPConnectionProfileRepository
}
synchronized DTPConnectionProfileWrapper connectionProfile(IConnectionProfile dtpConnectionProfile) {
- for (DTPConnectionProfileWrapper wrapper : this.connectionProfiles) {
+ for (DTPConnectionProfileWrapper wrapper : this.getConnectionProfiles()) {
if (wrapper.wraps(dtpConnectionProfile)) {
return wrapper;
}

Back to the top