我如何从Statfs获得f_type



我需要从statfs获得f_type。我尝试修补Filesys::Df

---
 Df.pm       | 6 +++---
 Makefile.PL | 7 +------
 XS_statfs   | 1 +
 3 files changed, 5 insertions(+), 9 deletions(-)
diff --git a/Df.pm b/Df.pm
index b24bd9c..986082a 100644
--- a/Df.pm
+++ b/Df.pm
@@ -28,7 +28,7 @@ my %fs = ();
    ($block_size) ||
        ($block_size = 1024);
-   my ($frsize, $blocks, $bfree, $bavail, $files, $ffree, $favail);
+   my ($frsize, $blocks, $bfree, $bavail, $files, $ffree, $favail, $ftype);
    #### If open filehandle call fstatvfs or fstatfs
    if(defined(fileno($dir))) {
@@ -36,7 +36,7 @@ my %fs = ();
    }
    else {
-       ($frsize, $blocks, $bfree, $bavail, $files, $ffree, $favail) = _df($dir);
+       ($frsize, $blocks, $bfree, $bavail, $files, $ffree, $favail, $ftype) = _df($dir);
    }

@@ -199,7 +199,7 @@ my %fs = ();
         #        $fs{user_files}  = undef;
         #}
-
+    $fs{type} = $ftype;
    return(%fs);
 }
diff --git a/Makefile.PL b/Makefile.PL
index 6a89ec4..e91cbb3 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -21,12 +21,7 @@ if($Config{osname} =~ /^MSWin/i) {
    die "You might try Filesys::DfPortable instead.n";
 }
-#### Check for the existance of statvfs
-if(check_statvfs()) {
-   ####$define .= "-DDF_STATVFS ";
-   copy_xs("XS_statvfs", $xs_file);
-   print "Building with statvfs ....n";
-}
+# force statfs
 #### Check for the existance of statfs
 elsif(check_statfs()) {
diff --git a/XS_statfs b/XS_statfs
index 856c646..ef801c3 100644
--- a/XS_statfs
+++ b/XS_statfs
@@ -45,6 +45,7 @@ _df(dir)
        PUSHs(sv_2mortal(newSVnv((double)st.f_ffree)));
        /* No favail */
        PUSHs(sv_2mortal(newSVnv((double)st.f_ffree)));
+       PUSHs(sv_2mortal(newSVnv((double)st.f_type)));
    }
    else {
-- 
2.21.0

接着

perl Makefile.PL ; make ; perl -Mblib -MFilesys::Df=df -E'say df("/")->{type}'

但是那崩溃

panic: XSUB Filesys::Df::_df (Df.c) failed to extend arg stack: base=11d3b10, sp=11d3b50, hwm=11d3b48

如何解决这个问题?

XPUSH*不同,PUSH*不能确保堆栈上有足够的空间。

pushs

将SV推到堆栈上。堆栈必须有此元素的空间。不处理"设置"魔术。不使用TARG。另请参见PUSHmortalXPUSHsXPUSHmortal

void PUSHs(SV* sv)

要确保有足够的空间可以返回附加值,只需替换

EXTEND(sp, 7)

EXTEND(sp, 8)

扩展

用于扩展XSUB返回值的参数堆栈。使用后,保证至少可以将nitems推到堆栈上。

void EXTEND(SP, SSize_t nitems)

提示:

PUSHs(sv_2mortal(newSVnv((double)st.f_type)));

应该是

PUSHs(sv_2mortal(newSVnv((NV)st.f_type)));

可以缩短为

mPUSHs(newSVnv((NV)st.f_type));

可以缩短为

mPUSHn((NV)st.f_type);

我意识到您正在创建一个最小的补丁,并且正在努力争取一致性,但这可能使您和其他情况下的其他读者受益。

相关内容

  • 没有找到相关文章

最新更新