-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(mcp-mutator): new mcp mutator plugin #10904
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,80 @@ | ||||||||||||||||||||||||||||||||||
package com.linkedin.metadata.entity.ebean.batch; | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
import com.linkedin.common.AuditStamp; | ||||||||||||||||||||||||||||||||||
import com.linkedin.common.urn.Urn; | ||||||||||||||||||||||||||||||||||
import com.linkedin.data.template.RecordTemplate; | ||||||||||||||||||||||||||||||||||
import com.linkedin.events.metadata.ChangeType; | ||||||||||||||||||||||||||||||||||
import com.linkedin.metadata.aspect.batch.MCPItem; | ||||||||||||||||||||||||||||||||||
import com.linkedin.metadata.models.AspectSpec; | ||||||||||||||||||||||||||||||||||
import com.linkedin.metadata.models.EntitySpec; | ||||||||||||||||||||||||||||||||||
import com.linkedin.metadata.utils.GenericRecordUtils; | ||||||||||||||||||||||||||||||||||
import com.linkedin.mxe.MetadataChangeProposal; | ||||||||||||||||||||||||||||||||||
import com.linkedin.mxe.SystemMetadata; | ||||||||||||||||||||||||||||||||||
import javax.annotation.Nonnull; | ||||||||||||||||||||||||||||||||||
import javax.annotation.Nullable; | ||||||||||||||||||||||||||||||||||
import lombok.Builder; | ||||||||||||||||||||||||||||||||||
import lombok.Getter; | ||||||||||||||||||||||||||||||||||
import lombok.extern.slf4j.Slf4j; | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
/** Represents an unvalidated wrapped MCP */ | ||||||||||||||||||||||||||||||||||
@Slf4j | ||||||||||||||||||||||||||||||||||
@Getter | ||||||||||||||||||||||||||||||||||
@Builder(toBuilder = true) | ||||||||||||||||||||||||||||||||||
public class ProposedItem implements MCPItem { | ||||||||||||||||||||||||||||||||||
@Nonnull private final MetadataChangeProposal metadataChangeProposal; | ||||||||||||||||||||||||||||||||||
@Nonnull private final AuditStamp auditStamp; | ||||||||||||||||||||||||||||||||||
// derived | ||||||||||||||||||||||||||||||||||
@Nonnull private EntitySpec entitySpec; | ||||||||||||||||||||||||||||||||||
@Nullable private AspectSpec aspectSpec; | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
@Nonnull | ||||||||||||||||||||||||||||||||||
@Override | ||||||||||||||||||||||||||||||||||
public String getAspectName() { | ||||||||||||||||||||||||||||||||||
if (metadataChangeProposal.getAspectName() != null) { | ||||||||||||||||||||||||||||||||||
return metadataChangeProposal.getAspectName(); | ||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||
return MCPItem.super.getAspectName(); | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
@Nullable | ||||||||||||||||||||||||||||||||||
public AspectSpec getAspectSpec() { | ||||||||||||||||||||||||||||||||||
if (aspectSpec != null) { | ||||||||||||||||||||||||||||||||||
return aspectSpec; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
if (entitySpec.getAspectSpecMap().containsKey(getAspectName())) { | ||||||||||||||||||||||||||||||||||
return entitySpec.getAspectSpecMap().get(getAspectName()); | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
return null; | ||||||||||||||||||||||||||||||||||
Comment on lines
+40
to
+48
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Optimize The method - if (entitySpec.getAspectSpecMap().containsKey(getAspectName())) {
- return entitySpec.getAspectSpecMap().get(getAspectName());
- }
+ AspectSpec aspect = entitySpec.getAspectSpecMap().get(getAspectName());
+ return aspect; Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
@Nullable | ||||||||||||||||||||||||||||||||||
@Override | ||||||||||||||||||||||||||||||||||
public RecordTemplate getRecordTemplate() { | ||||||||||||||||||||||||||||||||||
if (getAspectSpec() != null) { | ||||||||||||||||||||||||||||||||||
return GenericRecordUtils.deserializeAspect( | ||||||||||||||||||||||||||||||||||
getMetadataChangeProposal().getAspect().getValue(), | ||||||||||||||||||||||||||||||||||
getMetadataChangeProposal().getAspect().getContentType(), | ||||||||||||||||||||||||||||||||||
getAspectSpec()); | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
return null; | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
@Nonnull | ||||||||||||||||||||||||||||||||||
@Override | ||||||||||||||||||||||||||||||||||
public Urn getUrn() { | ||||||||||||||||||||||||||||||||||
return metadataChangeProposal.getEntityUrn(); | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
@Nullable | ||||||||||||||||||||||||||||||||||
@Override | ||||||||||||||||||||||||||||||||||
public SystemMetadata getSystemMetadata() { | ||||||||||||||||||||||||||||||||||
return metadataChangeProposal.getSystemMetadata(); | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||
@Nonnull | ||||||||||||||||||||||||||||||||||
@Override | ||||||||||||||||||||||||||||||||||
public ChangeType getChangeType() { | ||||||||||||||||||||||||||||||||||
return metadataChangeProposal.getChangeType(); | ||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Approve the method design and suggest additional checks or optimizations.
The method
applyProposalMutationHooks
is well-designed and integrates seamlessly with existing functionality. Consider adding checks for null or empty collections to prevent unnecessary processing.Committable suggestion