pluginupdate.py: add support for adding/updating individual plugins

This commit is contained in:
PerchunPak 2024-10-03 20:16:09 +02:00
parent e3d5090392
commit ecee72e247
No known key found for this signature in database
GPG Key ID: 313F67D1EAB770F9
5 changed files with 203 additions and 45 deletions

View File

@ -264,10 +264,15 @@ nix-shell -p vimPluginsUpdater --run 'vim-plugins-updater --github-token=mytoken
Alternatively, set the number of processes to a lower count to avoid rate-limiting. Alternatively, set the number of processes to a lower count to avoid rate-limiting.
```sh ```sh
nix-shell -p vimPluginsUpdater --run 'vim-plugins-updater --proc 1' nix-shell -p vimPluginsUpdater --run 'vim-plugins-updater --proc 1'
``` ```
If you want to update only certain plugins, you can specify them after the `update` command. Note that you must use the same plugin names as the `pkgs/applications/editors/vim/plugins/vim-plugin-names` file.
```sh
nix-shell -p vimPluginsUpdater --run 'vim-plugins-updater update "nvim-treesitter" "LazyVim"'
```
## How to maintain an out-of-tree overlay of vim plugins ? {#vim-out-of-tree-overlays} ## How to maintain an out-of-tree overlay of vim plugins ? {#vim-out-of-tree-overlays}
You can use the updater script to generate basic packages out of a custom vim You can use the updater script to generate basic packages out of a custom vim

View File

@ -388,6 +388,19 @@ class Editor:
fetch_config, args.input_file, editor.deprecated, append=append fetch_config, args.input_file, editor.deprecated, append=append
) )
plugin, _ = prefetch_plugin(pdesc) plugin, _ = prefetch_plugin(pdesc)
if ( # lua updater doesn't support updating individual plugin
self.name != "lua"
):
# update generated.nix
update = self.get_update(
args.input_file,
args.outfile,
fetch_config,
[plugin.normalized_name],
)
update()
autocommit = not args.no_commit autocommit = not args.no_commit
if autocommit: if autocommit:
commit( commit(
@ -404,13 +417,32 @@ class Editor:
"""CSV spec""" """CSV spec"""
print("the update member function should be overridden in subclasses") print("the update member function should be overridden in subclasses")
def get_current_plugins(self, nixpkgs: str) -> List[Plugin]: def get_current_plugins(
self, config: FetchConfig, nixpkgs: str
) -> List[Tuple[PluginDesc, Plugin]]:
"""To fill the cache""" """To fill the cache"""
data = run_nix_expr(self.get_plugins, nixpkgs) data = run_nix_expr(self.get_plugins, nixpkgs)
plugins = [] plugins = []
for name, attr in data.items(): for name, attr in data.items():
p = Plugin(name, attr["rev"], attr["submodules"], attr["sha256"]) checksum = attr["checksum"]
plugins.append(p)
# https://github.com/NixOS/nixpkgs/blob/8a335419/pkgs/applications/editors/neovim/build-neovim-plugin.nix#L36
# https://github.com/NixOS/nixpkgs/pull/344478#discussion_r1786646055
version = re.search(r"\d\d\d\d-\d\d?-\d\d?", attr["version"])
if version is None:
raise ValueError(f"Cannot parse version: {attr['version']}")
date = datetime.strptime(version.group(), "%Y-%m-%d")
pdesc = PluginDesc.load_from_string(config, f'{attr["homePage"]} as {name}')
p = Plugin(
attr["pname"],
checksum["rev"],
checksum["submodules"],
checksum["sha256"],
date,
)
plugins.append((pdesc, p))
return plugins return plugins
def load_plugin_spec(self, config: FetchConfig, plugin_file) -> List[PluginDesc]: def load_plugin_spec(self, config: FetchConfig, plugin_file) -> List[PluginDesc]:
@ -421,28 +453,117 @@ class Editor:
"""Returns nothing for now, writes directly to outfile""" """Returns nothing for now, writes directly to outfile"""
raise NotImplementedError() raise NotImplementedError()
def get_update(self, input_file: str, outfile: str, config: FetchConfig): def filter_plugins_to_update(
cache: Cache = Cache(self.get_current_plugins(self.nixpkgs), self.cache_file) self, plugin: PluginDesc, to_update: List[str]
) -> bool:
"""Function for filtering out plugins, that user doesn't want to update.
It is mainly used for updating only specific plugins, not all of them.
By default it filters out plugins not present in `to_update`,
assuming `to_update` is a list of plugin names (the same as in the
result expression).
This function is never called if `to_update` is empty.
Feel free to override this function in derived classes.
Note:
Known bug: you have to use a deprecated name, instead of new one.
This is because we resolve deprecations later and can't get new
plugin URL before we request info about it.
Although, we could parse deprecated.json, but it's a whole bunch
of spaghetti code, which I don't want to write.
Arguments:
plugin: Plugin on which you decide whether to ignore or not.
to_update:
List of strings passed to via the `--update` command line parameter.
By default, we assume it is a list of URIs identical to what
is in the input file.
Returns:
True if we should update plugin and False if not.
"""
return plugin.name.replace(".", "-") in to_update
def get_update(
self,
input_file: str,
output_file: str,
config: FetchConfig,
to_update: Optional[List[str]],
):
if to_update is None:
to_update = []
current_plugins = self.get_current_plugins(config, self.nixpkgs)
current_plugin_specs = self.load_plugin_spec(config, input_file)
cache: Cache = Cache(
[plugin for _description, plugin in current_plugins], self.cache_file
)
_prefetch = functools.partial(prefetch, cache=cache) _prefetch = functools.partial(prefetch, cache=cache)
def update() -> dict: plugins_to_update = (
plugins = self.load_plugin_spec(config, input_file) current_plugin_specs
if len(to_update) == 0
else [
description
for description in current_plugin_specs
if self.filter_plugins_to_update(description, to_update)
]
)
def update() -> Redirects:
if len(plugins_to_update) == 0:
log.error(
"\n\n\n\nIt seems like you provided some arguments to `--update`:\n"
+ ", ".join(to_update)
+ "\nBut after filtering, the result list of plugins is empty\n"
"\n"
"Are you sure you provided the same URIs as in your input file?\n"
"(" + str(input_file) + ")\n\n"
)
return {}
try: try:
pool = Pool(processes=config.proc) pool = Pool(processes=config.proc)
results = pool.map(_prefetch, plugins) results = pool.map(_prefetch, plugins_to_update)
finally: finally:
cache.store() cache.store()
print(f"{len(results)} of {len(current_plugins)} were checked")
# Do only partial update of out file
if len(results) != len(current_plugins):
results = self.merge_results(current_plugins, results)
plugins, redirects = check_results(results) plugins, redirects = check_results(results)
plugins = sorted(plugins, key=lambda v: v[1].normalized_name) plugins = sorted(plugins, key=lambda v: v[1].normalized_name)
self.generate_nix(plugins, outfile) self.generate_nix(plugins, output_file)
return redirects return redirects
return update return update
def merge_results(
self,
current: list[Tuple[PluginDesc, Plugin]],
fetched: List[Tuple[PluginDesc, Union[Exception, Plugin], Optional[Repo]]],
) -> List[Tuple[PluginDesc, Union[Exception, Plugin], Optional[Repo]]]:
# transforming this to dict, so lookup is O(1) instead of O(n) (n is len(current))
result: Dict[
str, Tuple[PluginDesc, Union[Exception, Plugin], Optional[Repo]]
] = {
# also adding redirect (third item in the result tuple)
pl.normalized_name: (pdesc, pl, None)
for pdesc, pl in current
}
for plugin_desc, plugin, redirect in fetched:
result[plugin.normalized_name] = (plugin_desc, plugin, redirect)
return list(result.values())
@property @property
def attr_path(self): def attr_path(self):
return self.name + "Plugins" return self.name + "Plugins"
@ -544,6 +665,12 @@ class Editor:
description="Update all or a subset of existing plugins", description="Update all or a subset of existing plugins",
add_help=False, add_help=False,
) )
pupdate.add_argument(
"update_only",
default=None,
nargs="*",
help="Plugin URLs to update (must be the same as in the input file)",
)
pupdate.set_defaults(func=self.update) pupdate.set_defaults(func=self.update)
return main return main
@ -637,11 +764,10 @@ def check_results(
new_pdesc = PluginDesc(redirect, pdesc.branch, pdesc.alias) new_pdesc = PluginDesc(redirect, pdesc.branch, pdesc.alias)
plugins.append((new_pdesc, result)) plugins.append((new_pdesc, result))
print(f"{len(results) - len(failures)} plugins were checked", end="")
if len(failures) == 0: if len(failures) == 0:
return plugins, redirects return plugins, redirects
else: else:
log.error(f", {len(failures)} plugin(s) could not be downloaded:\n") log.error(f"{len(failures)} plugin(s) could not be downloaded:\n")
for plugin, exception in failures: for plugin, exception in failures:
print_download_error(plugin, exception) print_download_error(plugin, exception)
@ -802,7 +928,14 @@ def update_plugins(editor: Editor, args):
) )
fetch_config = FetchConfig(args.proc, args.github_token) fetch_config = FetchConfig(args.proc, args.github_token)
update = editor.get_update(args.input_file, args.outfile, fetch_config) update = editor.get_update(
input_file=args.input_file,
output_file=args.outfile,
config=fetch_config,
to_update=getattr( # if script was called without arguments
args, "update_only", None
),
)
start_time = time.time() start_time = time.time()
redirects = update() redirects = update()

View File

@ -21,13 +21,11 @@ sys.path.insert(
) )
import pluginupdate import pluginupdate
GET_PLUGINS = f"""( GET_PLUGINS = f"""with import <localpkgs> {{ }};
with import <localpkgs> {{ }};
let let
inherit (kakouneUtils.override {{ }}) buildKakounePluginFrom2Nix; inherit (kakouneUtils.override {{ }}) buildKakounePluginFrom2Nix;
generated = callPackage {ROOT}/generated.nix {{ generated = callPackage {ROOT}/generated.nix {{ inherit buildKakounePluginFrom2Nix; }};
inherit buildKakounePluginFrom2Nix;
}};
hasChecksum = hasChecksum =
value: value:
lib.isAttrs value lib.isAttrs value
@ -35,24 +33,28 @@ let
"src" "src"
"outputHash" "outputHash"
] value; ] value;
getChecksum =
name: value: parse = name: value: {{
if hasChecksum value then pname = value.pname;
{{ version = value.version;
submodules = value.src.fetchSubmodules or false; homePage = value.meta.homepage;
sha256 = value.src.outputHash; checksum =
rev = value.src.rev; if hasChecksum value then
}} {{
else submodules = value.src.fetchSubmodules or false;
null; sha256 = value.src.outputHash;
checksums = lib.mapAttrs getChecksum generated; rev = value.src.rev;
}}
else
null;
}};
in in
lib.filterAttrs (n: v: v != null) checksums lib.mapAttrs parse generated"""
)"""
HEADER = "# This file has been @generated by ./pkgs/applications/editors/kakoune/plugins/update.py. Do not edit!" HEADER = "# This file has been @generated by ./pkgs/applications/editors/kakoune/plugins/update.py. Do not edit!"
class KakouneEditor(pluginupdate.Editor): class KakouneEditor(pluginupdate.Editor):
def generate_nix( def generate_nix(
self, self,

View File

@ -6,6 +6,7 @@ let
generated = callPackage <localpkgs/pkgs/applications/editors/vim/plugins/generated.nix> { generated = callPackage <localpkgs/pkgs/applications/editors/vim/plugins/generated.nix> {
inherit buildNeovimPlugin buildVimPlugin; inherit buildNeovimPlugin buildVimPlugin;
} { } { }; } { } { };
hasChecksum = hasChecksum =
value: value:
lib.isAttrs value lib.isAttrs value
@ -13,16 +14,20 @@ let
"src" "src"
"outputHash" "outputHash"
] value; ] value;
getChecksum =
name: value: parse = name: value: {
if hasChecksum value then pname = value.pname;
{ version = value.version;
submodules = value.src.fetchSubmodules or false; homePage = value.meta.homepage;
sha256 = value.src.outputHash; checksum =
rev = value.src.rev; if hasChecksum value then
} {
else submodules = value.src.fetchSubmodules or false;
null; sha256 = value.src.outputHash;
checksums = lib.mapAttrs getChecksum generated; rev = value.src.rev;
}
else
null;
};
in in
lib.filterAttrs (n: v: v != null) checksums lib.mapAttrs parse generated

View File

@ -25,7 +25,9 @@ from pluginupdate import FetchConfig, update_plugins
log = logging.getLogger() log = logging.getLogger()
log.addHandler(logging.StreamHandler()) log.addHandler(logging.StreamHandler())
ROOT = Path(os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))).parent.parent # type: ignore ROOT = Path(
os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
).parent.parent # type: ignore
PKG_LIST = "maintainers/scripts/luarocks-packages.csv" PKG_LIST = "maintainers/scripts/luarocks-packages.csv"
TMP_FILE = "$(mktemp)" TMP_FILE = "$(mktemp)"
@ -121,7 +123,18 @@ class LuaEditor(pluginupdate.Editor):
def attr_path(self): def attr_path(self):
return "luaPackages" return "luaPackages"
def get_update(self, input_file: str, outfile: str, config: FetchConfig): def get_update(
self,
input_file: str,
outfile: str,
config: FetchConfig,
# TODO: implement support for adding/updating individual plugins
to_update: Optional[List[str]],
):
if to_update is not None:
raise NotImplementedError(
"For now, lua updater doesn't support updating individual packages."
)
_prefetch = generate_pkg_nix _prefetch = generate_pkg_nix
def update() -> dict: def update() -> dict: