Performance optimization to avoid loading Collaboration table per map.

This commit is contained in:
Paulo Gustavo Veiga 2022-09-26 10:25:23 -07:00
parent 0c88b8a474
commit 86964febc1
3 changed files with 33 additions and 17 deletions

View File

@ -112,10 +112,18 @@ public class Collaborator implements Serializable {
public boolean identityEquality(@Nullable Collaborator that) { public boolean identityEquality(@Nullable Collaborator that) {
if (this == that) return true; if (this == that) {
if (that == null) return false; return true;
}
if (that == null) {
return false;
}
if (id != that.getId()) {
return false;
}
if (id != that.getId()) return false;
return email != null ? email.equals(that.getEmail()) : that.getEmail() == null; return email != null ? email.equals(that.getEmail()) : that.getEmail() == null;
} }

View File

@ -63,7 +63,7 @@ public class Mindmap implements Serializable {
@Column(name = "public") @Column(name = "public")
private boolean isPublic; private boolean isPublic;
@OneToMany(mappedBy = "mindMap", orphanRemoval = true, cascade = {CascadeType.ALL}) @OneToMany(mappedBy = "mindMap", orphanRemoval = true, cascade = {CascadeType.ALL}, fetch = FetchType.LAZY)
private Set<Collaboration> collaborations = new HashSet<>(); private Set<Collaboration> collaborations = new HashSet<>();
@ManyToMany(cascade = {CascadeType.PERSIST, CascadeType.REFRESH, CascadeType.MERGE}) @ManyToMany(cascade = {CascadeType.PERSIST, CascadeType.REFRESH, CascadeType.MERGE})
@ -177,15 +177,14 @@ public class Mindmap implements Serializable {
return result; return result;
} }
public boolean isCreator(@NotNull User user) {
return this.getCreator()!=null && this.getCreator().identityEquality(user);
}
public boolean isPublic() { public boolean isPublic() {
return isPublic; return isPublic;
} }
//@Todo: This is a hack to overcome some problem with JS EL. For some reason, ${mindmap.public} fails as not supported.
// More research is needed...
public boolean isAccessible() {
return isPublic();
}
public void setPublic(boolean isPublic) { public void setPublic(boolean isPublic) {
this.isPublic = isPublic; this.isPublic = isPublic;

View File

@ -91,7 +91,7 @@ public class RestMindmapInfo {
public Set<RestLabel> getLabels() { public Set<RestLabel> getLabels() {
// Support test deserialization... // Support test deserialization...
Set<RestLabel> result = this.restLabels; Set<RestLabel> result = this.restLabels;
if(result==null) { if (result == null) {
final User me = Utils.getUser(); final User me = Utils.getUser();
result = mindmap.getLabels(). result = mindmap.getLabels().
stream() stream()
@ -108,7 +108,7 @@ public class RestMindmapInfo {
public int getId() { public int getId() {
int result = this.mapId; int result = this.mapId;
if(mapId==-1) { if (mapId == -1) {
result = mindmap.getId(); result = mindmap.getId();
} }
return result; return result;
@ -132,8 +132,17 @@ public class RestMindmapInfo {
} }
public String getRole() { public String getRole() {
final Optional<Collaboration> collaboration = mindmap.findCollaboration(Utils.getUser()); final User user = Utils.getUser();
return collaboration.map(value -> value.getRole().getLabel()).orElse(ROLE_NONE); String result;
if (mindmap.isCreator(user)) {
// Performance hack. In case that the person is the creator, assume that the role is owner.
// This is to avoid loading all the collaboration maps per map.
result = CollaborationRole.OWNER.getLabel();
} else {
final Optional<Collaboration> collaboration = mindmap.findCollaboration(user);
result = collaboration.map(value -> value.getRole().getLabel()).orElse(ROLE_NONE);
}
return result;
} }
public void setRole(String value) { public void setRole(String value) {