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

add flag -nodefaultconfig to prevent loading system default dirs #174

Merged
merged 1 commit into from
Sep 9, 2019

Conversation

dradetsky
Copy link
Contributor

I made this to support another contribution I have (a handy, ready-to-go xephyr-for-dev setup), although I suppose it could have other applications.

This adds a flag -nodefaultconfig which prevents notion from loading the standard directories into its search path.

I've tested the basic cases manually (i.e. no arguments, one/two -s flags with/without the new flag), but it looks like the unit test setup doesn't really work, so I haven't tried to add any tests.

@dradetsky dradetsky mentioned this pull request Sep 2, 2019
Copy link
Owner

@raboof raboof left a comment

Choose a reason for hiding this comment

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

Hmm. Skipping ~/.notion is definitely useful. I'm not sure skipping the other search dirs makes sense - the configs in those places are needed for Notion to work, right?

Wouldn't a simpler way of achieving a 'clean slate' be to set your HOME directory to something else when testing something with notion?

@dradetsky
Copy link
Contributor Author

@raboof I'm not going to pretend I entirely understand what those directories are all for, but to the extent that I understand, no, that's not what we want. For example, in dev I want to use the compiled lua modules from the git repo, not the system.

As I recall (maybe this was changed?) last time I tried this it didn't work like this and I ended up having to comment out the relevant block of standard loads to get it to work. For example, I think it expects all the .lc files to be in $prefix/notion/lc (/usr/lib/notion/lc in my case), whereas the build system actually sticks them all in the various module directories. So if I want to load them from the dev repo only, I can't just reset $prefix.

Maybe there's a better way to do this, but it's not specified anywhere I was able to find easily.

@dradetsky
Copy link
Contributor Author

@raboof fwiw, I could add a flag that skips just ~/.notion and a flag that skips everything on the theory that the former is something that most people want & it's related to what I'm doing now. But I didn't really think about it because as I said, I'm pretty sure skipping everything is required for my use-case. Also, I thought maybe adding tons of flags would be a bad thing. But if you don't think so, then I guess it isn't.

@raboof
Copy link
Owner

raboof commented Sep 6, 2019

For example, in dev I want to use the compiled lua modules from the git repo, not the system

Ah, you want to test a freshly built notion without doing 'make install'. I agree this is desirable, and not supported right now.

I could add a flag that skips just ~/.notion and a flag that skips everything

I think we should always load ~/.notion - if someone doesn't want that he can simply point the HOME environment variable somewhere else.

Then there is 'everything else'. To support testing a freshly built notion without doing 'make install', I think we would not only need to skip loading things from /usr, but we should also make sure the scripts from inside your notion checkout are loaded, right?

@dradetsky
Copy link
Contributor Author

I think we should always load ~/.notion - if someone doesn't want that he can simply point the HOME environment variable somewhere else.

That's not a terrible idea, IMO, but here's a downside: suppose I don't know whether that env var is used for anything else by notion? As a matter of fact, I don't, since I didn't check the code. So I don't what to set home to something else, because I have no idea what that will affect, if anything. So that solution won't naturally occur to me.

In a sense, you've also added a weird dependency on HOME: it can't be part of the interface in any other way, because you have to be able to use it to determine where you load configuration from. So if somebody in the future wants to add a feature which uses HOME for something, they can't. Or, they can, but from the perspective of notion HOME isn't actually the user's home dir, it's wherever the user wants to load the user-level notion config from.

It was confusing just writing that, so I can't imagine it will be easy to explain to all future contributors. By contrast "load absolutely nothing" "load this specific stuff" is very easy to understand.

FWIW, I've recently done some work with emacs customization where the assumption that ~/.emacs.d is always an appropriate load path is really annoying. It's annoying even with the ability to say "don't load any of the default code". It may be a bad comparison, but it would be even worse if this option wasn't available.

To support testing a freshly built notion without doing 'make install', I think we would not only need to skip loading things from /usr, but we should also make sure the scripts from inside your notion checkout are loaded, right?

I agree in general, but not necessarily in practice. For example, if I run a version of notion that's reasonably close to the tip of master, I may not care about this stuff. It may not be relevant to use the checkout lua. I may just be changing the C. Also, doing this would presumably require changing the way we do the build, or the install, or both. Which I didn't know how to do. And which could presumably break downstream packages across every linux distro. I get that this has been a non-goal of the notion project since the Tuomo (PBUH) era, but it's still not a good thing. I'd only want to do it (i.e. change the build/install) if I knew how to do it properly.

With this change, you at least can do what you need to do for dev without having to comment out C code and rebuild. And you can fix it for developers in general in the short run by adding a utility wrapper script and saying "Run notion with notion $(./dev-search-path-flags.sh) -other -flags." And it doesn't prevent you from adding some more sophisticated way of ensuring that the appropriate stuff is loaded from a checkout.

I suppose I could add a note to the flag docs with "NOTE: this will break notion unless you add the appropriate -s flags to other places".

@wilhelmy
Copy link
Collaborator

wilhelmy commented Sep 7, 2019

Thanks, I've been running into this exact same issue (installed into a temporary DESTDIR and tried to run from there without using anything in /usr{,/local}) and if we were going to vote, my vote would be in favour of your approach instead of misusing $HOME.

Edit: I appreciate the idea of not having to install anywhere at all. FWIW, I haven't tested your change.

@raboof
Copy link
Owner

raboof commented Sep 9, 2019

I didn't realize before that setting HOME will also affect any programs running 'under' notion, so on second thought I agree that is not a nice way to prevent loading your custom config.

presumably break downstream packages across every linux distro. I get that this has been a non-goal of the notion project since the Tuomo (PBUH) era, but it's still not a good thing

Being 'downstream-friendly' is definitely a goal now, and a good part of the reason we've been putting in the work to make Notion properly LGPL again.

it doesn't prevent you from adding some more sophisticated way of ensuring that the appropriate stuff is loaded from a checkout

Right, I agree this is a good first step, and users can use -s to add source directories as needed. Some documentation (or even scripts) on how to do that for common scenario's might be nice, but that could be a subsequent PR.

@@ -203,6 +203,27 @@ int main(int argc, char*argv[])
}
}

char *tmp_searchpath=NULL;
Copy link
Owner

Choose a reason for hiding this comment

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

So this is done to make sure the search directories added with -s are appended to the search path rather than prepended, because the most recently added path has the highest precedence? That makes sense I guess.

@raboof raboof merged commit 6d72cf2 into raboof:master Sep 9, 2019
@knixeur
Copy link
Collaborator

knixeur commented Sep 9, 2019

Great work, thanks!

@raboof raboof added the development issues that don't impact end users directly label Dec 30, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
development issues that don't impact end users directly
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants