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

engine: resources: file: Add File -> Owner/Group Auto Edges #764

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

cianyleow
Copy link
Contributor

Adds auto edges between a file resource and relevant user/group resources if they are defined as an owner/group of the file.

Adds auto edges between a file resource and relevant user/group resources if they are defined as an owner/group of the file.
}

if e := g.FindEdge(group, fres); e == nil {
t.Errorf("should have an edge from group -> file, got nil")
Copy link
Contributor Author

Choose a reason for hiding this comment

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

I need a bit of help here, the test keeps failing with these edges (group -> file missing) - my guess is I'm adding to data with something that isn't unique enough, but I can't figure it out

Copy link
Owner

Choose a reason for hiding this comment

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

Awesome, thank you! I'll have a look at this within about a day.

Copy link
Owner

Choose a reason for hiding this comment

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

I think I know what the issue is, just confirming now...

@purpleidea
Copy link
Owner

Okay, here is what I think is happening, and also a suggestion on how to approach the problem.

Firstly, the file resource already does a good amount of fancy autoedges stuff. This is because it makes edges both with directories, and also with "fragments". (You don't need to know what fragments are.)

The way AutoEdges roughly works, is that a resource kind can have an AutoEdges method:

func (obj *FileRes) AutoEdges() (engine.AutoEdge, error)

which returns a struct that has some magic machinery that we can run to build autoedges...

The problem is that you've added on some user and group data into the existing autoedge machinery, but that machinery was not ever expecting to be able to run that...

It likely fails because it ends as soon as the obj.data matches successfully once! See here:

if input[0] { // if a match is found, we're done!

...this probably ends the whole process early!

So how would I fix this or approach this?

Firstly to get some confidence in the AutoEdges API, I'd try implementing this for just group. (User is slightly harder.)

Secondly instead of having the File resource machinery point to the User/Group, you can instead have the User/Group machinery point to the file! I suspect this might be slightly easier. The User already has machinery, but the Group doesn't, which is why I said it might be easier.

Seeing how the "machinery" works might be interesting... Basically it's a back and forth conversation where the AutoEdges engine asks (via Next()) hey, are there some things I should try? and after they are tried, the engine tells the machinery (via Test()) which of those worked!

Using the obj.data tries one at a time, where as you likely want to try all of the edges you built together...

Alternate future things to think about:

If @frebib lands his autoedges patch, things might change a bit. So getting that in first is ideal, but we won't block on that.

We could also consider changing the API to instead be:

func (obj *FileRes) AutoEdges() ([]engine.AutoEdge, error) # note this is a list of machinery now

but I don't think that's needed yet.

I hope this helped, please let me know if you have more questions!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants