-
-
Notifications
You must be signed in to change notification settings - Fork 66
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
Conversation
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.
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?
@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 Maybe there's a better way to do this, but it's not specified anywhere I was able to find easily. |
@raboof fwiw, I could add a flag that skips just |
Ah, you want to test a freshly built notion without doing 'make install'. I agree this is desirable, and not supported right now.
I think we should always load 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 |
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
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 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". |
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. |
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.
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.
Right, I agree this is a good first step, and users can use |
@@ -203,6 +203,27 @@ int main(int argc, char*argv[]) | |||
} | |||
} | |||
|
|||
char *tmp_searchpath=NULL; |
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.
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.
Great work, thanks! |
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.