Skip to content

Commit

Permalink
fix: implement FromLua for Cha instead of AnyUserData
Browse files Browse the repository at this point in the history
  • Loading branch information
sxyazi committed Nov 14, 2024
1 parent 0048652 commit c65bdb3
Show file tree
Hide file tree
Showing 8 changed files with 57 additions and 74 deletions.
3 changes: 3 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
[env]
MACOSX_DEPLOYMENT_TARGET = "10.11"
JEMALLOC_SYS_WITH_LG_PAGE = "16"

# environment variable for tikv-jemalloc-sys
#
# https://jemalloc.net/jemalloc.3.html#opt.narenas
Expand Down
16 changes: 2 additions & 14 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,7 @@ jobs:
rustup toolchain install stable --profile minimal
rustup component add clippy
- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: rust
shared-key: ubuntu-latest@debug

- name: Run sccache-cache
- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.6

- name: Clippy
Expand All @@ -44,13 +38,7 @@ jobs:
rustup toolchain install nightly --profile minimal
rustup component add rustfmt --toolchain nightly
- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: rust
shared-key: ubuntu-latest@debug

- name: Run sccache-cache
- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.6

- name: Rustfmt
Expand Down
63 changes: 19 additions & 44 deletions .github/workflows/draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Draft

on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
branches: [main]
tags: ["v[0-9]+.[0-9]+.[0-9]+"]
schedule:
- cron: "0 */6 * * *"
workflow_dispatch:
Expand All @@ -26,26 +26,19 @@ jobs:
- os: macos-latest
target: aarch64-apple-darwin
runs-on: ${{ matrix.os }}
env:
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc
steps:
- uses: actions/checkout@v4

- name: Install gcc-aarch64-linux-gnu
if: matrix.target == 'aarch64-unknown-linux-gnu'
run: |
sudo apt-get update && sudo apt-get install -yq gcc-aarch64-linux-gnu
echo "JEMALLOC_SYS_WITH_LG_PAGE=16" >> $GITHUB_ENV
echo "CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=/usr/bin/aarch64-linux-gnu-gcc" >> $GITHUB_ENV
run: sudo apt-get update && sudo apt-get install -yq gcc-aarch64-linux-gnu

- name: Setup Rust toolchain
run: rustup toolchain install stable --profile minimal --target ${{ matrix.target }}

- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: rust
shared-key: ${{ matrix.target }}@release

- name: Run sccache-cache
- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.6

- name: Build
Expand All @@ -66,30 +59,23 @@ jobs:
- os: windows-latest
target: aarch64-pc-windows-msvc
runs-on: ${{ matrix.os }}
env:
YAZI_GEN_COMPLETIONS: true
CARGO_TARGET_X86_64_PC_WINDOWS_MSVC_LINKER: lld-link.exe
CARGO_TARGET_AARCH64_PC_WINDOWS_MSVC_LINKER: lld-link.exe
steps:
- uses: actions/checkout@v4

- name: Setup Rust toolchain
run: rustup toolchain install stable --profile minimal --target ${{ matrix.target }}

- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: rust
shared-key: ${{ matrix.target }}@release

- name: Run sccache-cache
- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.6

- name: Build
env:
YAZI_GEN_COMPLETIONS: true
run: |
cargo build -p yazi-cli --release --locked --target ${{ matrix.target }}
cargo build -p yazi-fm --release --locked --target ${{ matrix.target }}
run: cargo build --release --locked --target ${{ matrix.target }}

- name: Pack artifact
if: matrix.os == 'windows-latest'
env:
TARGET_NAME: yazi-${{ matrix.target }}
run: |
Expand Down Expand Up @@ -123,13 +109,7 @@ jobs:
- name: Add musl target
run: rustup target add ${{ matrix.target }}

- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: rust
shared-key: ${{ matrix.target }}@release

- name: Run sccache-cache
- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.6

- name: Build
Expand All @@ -142,6 +122,7 @@ jobs:
path: yazi-${{ matrix.target }}.zip

build-snap:
if: false # Can't make CI pass, disable for now
strategy:
matrix:
include:
Expand All @@ -151,13 +132,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: rust
shared-key: ${{ matrix.target }}@release

- name: Run sccache-cache
- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.6

- name: Build
Expand All @@ -173,18 +148,18 @@ jobs:
path: yazi-${{ matrix.target }}.snap

draft:
if: startsWith(github.ref, 'refs/tags/')
permissions:
contents: write
runs-on: ubuntu-latest
needs: [build-unix, build-windows, build-musl, build-snap]
needs: [build-unix, build-windows, build-musl]
steps:
- uses: actions/download-artifact@v4
with:
merge-multiple: true

- name: Draft
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
draft: true
files: |
Expand All @@ -193,10 +168,11 @@ jobs:
generate_release_notes: true

nightly:
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
permissions:
contents: write
runs-on: ubuntu-latest
needs: [build-unix, build-windows, build-musl, build-snap]
needs: [build-unix, build-windows, build-musl]
steps:
- uses: actions/download-artifact@v4
with:
Expand All @@ -210,7 +186,6 @@ jobs:
- name: Nightly
uses: softprops/action-gh-release@v1
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
with:
tag_name: nightly
prerelease: true
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,7 @@ jobs:
- name: Setup Rust toolchain
run: rustup toolchain install stable --profile minimal

- name: Setup Rust cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: rust
shared-key: ${{ matrix.os }}@debug

- name: Run sccache-cache
- name: Setup sccache
uses: mozilla-actions/sccache-action@v0.0.6

- name: Build
Expand Down
1 change: 0 additions & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ set -euo pipefail

export ARTIFACT_NAME="yazi-$1"
export YAZI_GEN_COMPLETIONS=1
export MACOSX_DEPLOYMENT_TARGET="10.11"

# Build for the target
cargo build --release --locked --target "$1"
Expand Down
33 changes: 28 additions & 5 deletions snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,34 @@ parts:
yazi:
plugin: rust
source: https://github.com/sxyazi/yazi.git
build-packages:
- wget
override-build: |
craftctl default
craftctl set version=$(git describe --tags --abbrev=0)
cargo install fd-find --root $CRAFT_PART_INSTALL
cargo install ripgrep --root $CRAFT_PART_INSTALL
cargo install zoxide --root $CRAFT_PART_INSTALL
git clone --depth 1 https://github.com/junegunn/fzf.git fzf
fzf/install --bin && mv fzf/bin/fzf $CRAFT_PART_INSTALL/bin/
wget ripgrep-14.1.1-aarch64-unknown-linux-gnu.tar.gz
tar fxz ripgrep-*.tar.gz
mv ripgrep-*/rg $CRAFT_PART_INSTALL/bin/
wget https://github.com/sharkdp/fd/releases/download/v10.2.0/fd-v10.2.0-aarch64-unknown-linux-gnu.tar.gz
tar fxz fd-*.tar.gz
mv fd-*/fd $CRAFT_PART_INSTALL/bin/
wget https://github.com/jqlang/jq/releases/download/jq-1.7.1/jq-linux-amd64
mv jq-linux-amd64 $CRAFT_PART_INSTALL/bin/jq
wget https://imagemagick.org/archive/binaries/magick
mv magick $CRAFT_PART_INSTALL/bin/magick
wget https://github.com/junegunn/fzf/releases/download/v0.56.2/fzf-0.56.2-linux_amd64.tar.gz
tar fxz fzf-*.tar.gz
mv fzf $CRAFT_PART_INSTALL/bin/
wget https://www.7-zip.org/a/7z2408-linux-x64.tar.xz
tar fxz 7z*.tar.xz
mv 7zz 7zzs $CRAFT_PART_INSTALL/bin/
wget https://github.com/ajeetdsouza/zoxide/releases/download/v0.9.6/zoxide-0.9.6-x86_64-unknown-linux-musl.tar.gz
tar fxz zoxide-*.tar.gz
mv zoxide $CRAFT_PART_INSTALL/bin/
3 changes: 2 additions & 1 deletion yazi-plugin/src/bindings/cha.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
use std::{ops::Deref, time::{Duration, SystemTime, UNIX_EPOCH}};

use mlua::{ExternalError, IntoLua, Lua, Table, UserData, UserDataFields, UserDataMethods};
use mlua::{ExternalError, FromLua, IntoLua, Lua, Table, UserData, UserDataFields, UserDataMethods};
use yazi_shared::fs::ChaKind;

use crate::RtRef;

#[derive(Clone, Copy, FromLua)]
pub struct Cha(yazi_shared::fs::Cha);

impl Deref for Cha {
Expand Down
4 changes: 2 additions & 2 deletions yazi-plugin/src/file/file.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use mlua::{AnyUserData, Lua, Table, UserDataRef};

use crate::{bindings::Cast, impl_file_fields, impl_file_methods};
use crate::{bindings::{Cast, Cha}, impl_file_fields, impl_file_methods};

pub type FileRef = UserDataRef<yazi_shared::fs::File>;

Expand All @@ -21,7 +21,7 @@ impl File {
lua.create_function(|lua, t: Table| {
Self::cast(lua, yazi_shared::fs::File {
url: t.raw_get::<AnyUserData>("url")?.take()?,
cha: t.raw_get::<AnyUserData>("cha")?.take()?,
cha: *t.raw_get::<Cha>("cha")?,
..Default::default()
})
})?,
Expand Down

0 comments on commit c65bdb3

Please sign in to comment.