Generated code for df / df-h.

This commit is contained in:
Richard W.M. Jones
2009-06-29 12:26:11 +01:00
parent 405cf2a577
commit b2ed0f4c55
23 changed files with 653 additions and 2 deletions

View File

@@ -3725,4 +3725,48 @@ public HashMap<String,String> test0rhashtableerr ()
private native String[] _tail_n (long g, int nrlines, String path)
throws LibGuestFSException;
/**
* report file system disk space usage
* <p>
* This command runs the "df" command to report disk space
* used.
* <p>
* This command is mostly useful for interactive sessions.
* It is *not* intended that you try to parse the output
* string. Use "statvfs" from programs.
* <p>
* @throws LibGuestFSException
*/
public String df ()
throws LibGuestFSException
{
if (g == 0)
throw new LibGuestFSException ("df: handle is closed");
return _df (g);
}
private native String _df (long g)
throws LibGuestFSException;
/**
* report file system disk space usage (human readable)
* <p>
* This command runs the "df -h" command to report disk
* space used in human-readable format.
* <p>
* This command is mostly useful for interactive sessions.
* It is *not* intended that you try to parse the output
* string. Use "statvfs" from programs.
* <p>
* @throws LibGuestFSException
*/
public String df_h ()
throws LibGuestFSException
{
if (g == 0)
throw new LibGuestFSException ("df_h: handle is closed");
return _df_h (g);
}
private native String _df_h (long g)
throws LibGuestFSException;
}

View File

@@ -4335,3 +4335,39 @@ Java_com_redhat_et_libguestfs_GuestFS__1tail_1n
return jr;
}
JNIEXPORT jstring JNICALL
Java_com_redhat_et_libguestfs_GuestFS__1df
(JNIEnv *env, jobject obj, jlong jg)
{
guestfs_h *g = (guestfs_h *) (long) jg;
jstring jr;
char *r;
r = guestfs_df (g);
if (r == NULL) {
throw_exception (env, guestfs_last_error (g));
return NULL;
}
jr = (*env)->NewStringUTF (env, r);
free (r);
return jr;
}
JNIEXPORT jstring JNICALL
Java_com_redhat_et_libguestfs_GuestFS__1df_1h
(JNIEnv *env, jobject obj, jlong jg)
{
guestfs_h *g = (guestfs_h *) (long) jg;
jstring jr;
char *r;
r = guestfs_df_h (g);
if (r == NULL) {
throw_exception (env, guestfs_last_error (g));
return NULL;
}
jr = (*env)->NewStringUTF (env, r);
free (r);
return jr;
}