Skip to content
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

refactor: simplify jq filter initialization and remove unused libpath #743

Open
wants to merge 15 commits into
base: main
Choose a base branch
from

Conversation

juev
Copy link
Contributor

@juev juev commented Mar 27, 2025

Overview

fixed: #730

What this PR does / why we need it

replace libjq library with itchyny/gojq

@juev juev added the enhancement New feature or request label Mar 27, 2025
@juev juev requested review from ldmonster and Copilot March 27, 2025 15:34
@juev juev self-assigned this Mar 27, 2025
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR refactors the jq filter initialization by removing the unused libpath parameter and replacing the libjq-based implementation with itchyny/gojq. The changes simplify the code by removing legacy code paths and updating calls to the new API.

  • Removed the libpath parameter from all jq filter constructions.
  • Eliminated legacy implementations (libjq and jq subprocess methods) and introduced a new gojq-based implementation.
  • Cleaned up related configuration and flag definitions.

Reviewed Changes

Copilot reviewed 12 out of 13 changed files in this pull request and generated 2 comments.

Show a summary per file
File Description
pkg/shell-operator/bootstrap.go Updated jq.NewFilter call syntax to remove the unused libpath parameter.
pkg/kube_events_manager/resource_informer.go Removed libpath parameter from multiple jq.NewFilter calls.
pkg/kube_events_manager/filter_test.go Updated test to match the new jq.NewFilter API.
pkg/kube/object_patch/operation.go Removed redundant libpath parameter from filter initialization.
pkg/filter/jq/apply_jq.go Introduced new implementation using itchyny/gojq.
pkg/filter/jq/jq_exec.go, apply_libjq_go.go, apply_jq_exec.go Deleted obsolete implementations.
pkg/app/jq.go Removed file which defined jq flags for the removed libjq implementation.
pkg/app/app.go Removed call to DefineJqFlags.
cmd/shell-operator/main.go Updated jq.NewFilter call in version command to align with new API.
Files not reviewed (1)
  • go.mod: Language not supported

@juev juev force-pushed the feature/jq-filter branch from 6a6c913 to f205383 Compare March 27, 2025 15:42
@juev juev requested a review from Copilot March 28, 2025 09:02
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR refactors the jq filter initialization by removing the unused library path argument and replacing the legacy libjq implementation with itchyny/gojq. Key changes include:

  • Removing the libpath argument from jq.NewFilter() across multiple files.
  • Eliminating obsolete libjq-related code and build configurations.
  • Updating tests and workflows to reflect the new jq filter implementation.

Reviewed Changes

Copilot reviewed 15 out of 17 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
pkg/shell-operator/bootstrap.go Updated filter initialization by removing libpath.
pkg/kube_events_manager/resource_informer.go Adjusted filter creation in event handling functions.
pkg/kube_events_manager/filter_test.go Updated test filter initialization.
pkg/kube/object_patch/operation.go Updated filter creation in patch operations.
pkg/filter/jq/apply_libjq_go.go Removed obsolete libjq-based implementation.
pkg/filter/jq/apply_jq_exec.go Removed obsolete jq exec-based implementation.
pkg/filter/jq/apply.go Added a new implementation using itchyny/gojq.
pkg/app/jq.go Removed jq flag definition and associated globals.
pkg/app/app.go Removed flag registration for libjq filter usage.
cmd/shell-operator/main.go Updated filter initialization in the version command.
.github/workflows/*.yaml Removed steps for downloading prebuilt libjq libraries.
Files not reviewed (2)
  • Dockerfile: Language not supported
  • go.mod: Language not supported

@juev juev marked this pull request as ready for review March 28, 2025 09:27
@ldmonster
Copy link
Contributor

ldmonster commented Mar 28, 2025

We need to cover jq filter with tests

@juev
Copy link
Contributor Author

juev commented Mar 28, 2025

We already have this and this and this

@juev
Copy link
Contributor Author

juev commented Mar 29, 2025

Added a number of tests for the jq package

@juev juev force-pushed the feature/jq-filter branch from 78ada8d to 32665cd Compare March 29, 2025 12:39
@juev juev force-pushed the feature/jq-filter branch from 5eea971 to 4398c45 Compare March 29, 2025 13:55
return nil, err
}

iter := query.Run(data)
Copy link
Contributor

@ldmonster ldmonster Apr 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

under hood this method can change map from input

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In order to ensure that the input data does not change, I created a separate data instance

@ldmonster ldmonster self-requested a review April 2, 2025 10:54
@juev juev requested a review from yalosev April 2, 2025 13:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[dependencies] Remove libjq from dependencies
2 participants