unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Dmitry Gutov <dgutov@yandex.ru>
To: Ergus <spacibba@aol.com>, Emacs-Devel List <emacs-devel@gnu.org>
Subject: Re: Project local variables.
Date: Sun, 8 Nov 2020 03:48:45 +0200	[thread overview]
Message-ID: <ccda0edf-38de-e0e2-18c3-773cd2f08477@yandex.ru> (raw)
In-Reply-To: <20201103194140.cyjy56zgx7757pxx@Ergus>

Hi!

On 03.11.2020 21:41, Ergus wrote:

> Looking at the evolution of project.el I want to know if there is any
> sort of project local environment/namespace/scope. The idea is to
> provide some variables that could be shared by all the files in the same
> project but that could be modified by external-packages at the elisp
> level. something like "setq-project"??

Something like project-set and project-get could be arranged (or perhaps 
just a project-session hash table). But given that the values won't 
persist between Emacs sessions, we'd have to consider to use cases first.

> A use case is for example when working in tramp some operations are
> expensive like looking for an executable in the remote system. The
> search could be made only once; but then if a local file is open the
> cached value will be wrong. The other case is to use the buffer-local
> variables, but then it will need to be initialized once/per file every
> time a file is open. Something that in my case affected performance
> especially with lsp and elpy

Two things to consider: the performance of the operation you're trying 
to "cache", and the performance of 'project-current'.

The latter is not "free". And my near-term plan is to make 
project-try-vc slower by removing the vc-file-getprop/vc-file-setprop 
dance because it can lead to outdated information. Or at least try that 
and see which problems that brings.

In any case, what I'm saying is, 'project-current' on a remote host 
might not be fast either. Though it could be cached to at least only do 
the search once per user command.

> Currently I am using a work-around with a global hash-table and a
> variable definer in the dir-locals.el as a prefix, but maybe something
> more elegant should/must be already implemented and I am not aware of??

Have you tried using (file-remote-p buffer-file-name) as the hash key?

If the operation to be sped up is really (executable-find "cat"), the 
result is really project-independent and should only depend on the host.

If there are other, actually project-dependent examples, the 
project-local variables (or "session cache", rather) could be 
implemented as a hash of hashes, keyed by project instance. There 
implementation seems like it will be rather trivial, but first I would 
like to know the use cases.



  parent reply	other threads:[~2020-11-08  1:48 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20201103194140.cyjy56zgx7757pxx.ref@Ergus>
2020-11-03 19:41 ` Project local variables Ergus
2020-11-05 17:37   ` Stephen Leake
2020-11-08  1:48   ` Dmitry Gutov [this message]
2020-11-08 15:21     ` Ergus
2020-11-22  3:10       ` Dmitry Gutov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ccda0edf-38de-e0e2-18c3-773cd2f08477@yandex.ru \
    --to=dgutov@yandex.ru \
    --cc=emacs-devel@gnu.org \
    --cc=spacibba@aol.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).