Skip to content

Commit

Permalink
Fix a memory leak on listener (microsoft#10294)
Browse files Browse the repository at this point in the history
* Fix leak

* We don't need the full connection profiles for drag drop control

* Remove unused code

* Change test definition

* Change test definition

* Change equality check
  • Loading branch information
Amir Omidi authored Jun 17, 2020
1 parent fb4e400 commit 21fd8b2
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 13 deletions.
32 changes: 20 additions & 12 deletions src/sql/platform/connection/common/connectionConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,12 +183,7 @@ export class ConnectionConfig {
return changed;
}

/**
* Get a list of all connections in the connection config. Connections returned
* are sorted first by whether they were found in the user/workspace settings,
* and next alphabetically by profile/server name.
*/
public getConnections(getWorkspaceConnections: boolean): ConnectionProfile[] {
public getIConnectionProfileStores(getWorkspaceConnections: boolean): IConnectionProfileStore[] {
let profiles: IConnectionProfileStore[] = [];
//TODO: have to figure out how to sort connections for all provider
// Read from user settings
Expand All @@ -207,7 +202,16 @@ export class ConnectionConfig {
}
}

let connectionProfiles = profiles.map(p => {
return profiles;
}

/**
* Get a list of all connections in the connection config. Connections returned
* are sorted first by whether they were found in the user/workspace settings,
* and next alphabetically by profile/server name.
*/
public getConnections(getWorkspaceConnections: boolean): ConnectionProfile[] {
let connectionProfiles = this.getIConnectionProfileStores(getWorkspaceConnections).map(p => {
return ConnectionProfile.createFromStoredProfile(p, this._capabilitiesService);
});

Expand Down Expand Up @@ -277,9 +281,14 @@ export class ConnectionConfig {
* Returns true if connection can be moved to another group
*/
public canChangeConnectionConfig(profile: ConnectionProfile, newGroupID: string): boolean {
let profiles = this.getConnections(true);
let existingProfile = find(profiles, p => p.getConnectionInfoId() === profile.getConnectionInfoId()
&& p.groupId === newGroupID);
let profiles = this.getIConnectionProfileStores(true);
let existingProfile = find(profiles, p =>
p.providerName === profile.providerName &&
p.options.authenticationType === profile.options.authenticationType &&
p.options.database === profile.options.database &&
p.options.server === profile.options.server &&
p.options.user === profile.options.user &&
p.groupId === newGroupID);
return existingProfile === undefined;
}

Expand All @@ -295,8 +304,7 @@ export class ConnectionConfig {
profiles.push(ConnectionProfile.convertToProfileStore(this._capabilitiesService, profile));
} else {
profiles.forEach((value) => {
let configProf = ConnectionProfile.createFromStoredProfile(value, this._capabilitiesService);
if (configProf.getOptionsKey() === profile.getOptionsKey()) {
if (value.id === profile.id) {
value.groupId = newGroupID;
}
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,31 @@ export class ServerTreeDragAndDrop implements IDragAndDrop {
return;
}


public canDragToConnectionProfileGroup(source: any, targetConnectionProfileGroup: ConnectionProfileGroup) {
let canDragOver: boolean = true;

if (source instanceof ConnectionProfile) {
if (!this._connectionManagementService.canChangeConnectionConfig(source, targetConnectionProfileGroup.id)) {
canDragOver = false;
}
} else if (source instanceof ConnectionProfileGroup) {
// Dropping a group to itself or its descendants nodes is not allowed
// to avoid creating a circular structure.
canDragOver = source.id !== targetConnectionProfileGroup.id && !source.isAncestorOf(targetConnectionProfileGroup);
}

return canDragOver;
}

/**
* Returns a DragOverReaction indicating whether sources can be
* dropped into target or some parent of the target.
* Returns DRAG_OVER_ACCEPT_BUBBLE_DOWN when element is a connection group or connection
*/
public onDragOver(tree: ITree, data: IDragAndDropData, targetElement: any, originalEvent: DragMouseEvent): IDragOverReaction {

let canDragOver: boolean = true;

if (targetElement instanceof ConnectionProfile || targetElement instanceof ConnectionProfileGroup) {
let targetConnectionProfileGroup = this.getTargetGroup(targetElement);
// Verify if the connection can be moved to the target group
Expand Down

0 comments on commit 21fd8b2

Please sign in to comment.