org.jvnet.solaris.libzfs.ZFSObject.getName()方法的使用及代码示例

x33g5p2x  于2022-02-05 转载在 其他  
字(5.6k)|赞(0)|评价(0)|浏览(86)

本文整理了Java中org.jvnet.solaris.libzfs.ZFSObject.getName()方法的一些代码示例,展示了ZFSObject.getName()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZFSObject.getName()方法的具体详情如下:
包路径:org.jvnet.solaris.libzfs.ZFSObject
类名称:ZFSObject
方法名:getName

ZFSObject.getName介绍

[英]Gets the name of the dataset like "rpool/foo/bar".
[中]获取数据集的名称,如“rpool/foo/bar”。

代码示例

代码示例来源:origin: org.jvnet.libzfs/libzfs

/**
   * Returns {@link #getName() the name}.
   */
  @Override
  public String toString() {
    return getName();
  }
}

代码示例来源:origin: org.kohsuke/libzfs

/**
 * Returns {@link #getName() the name}.
 */
@Override
public String toString() {
  return getName();
}

代码示例来源:origin: org.jvnet.libzfs/libzfs

/**
 * Creates a nested file system.
 *
 * @param props
 *      ZFS properties to be attached to the new file system. Can be null.
 */
public ZFSFileSystem createFileSystem(final String name, final Map<String, String> props) {
  return (ZFSFileSystem) library.create(getName()+'/'+name, ZFSType.FILESYSTEM,props);
}

代码示例来源:origin: org.jvnet.libzfs/libzfs

/**
 * Opens a nested file system.
 */
public ZFSFileSystem openFileSystem(String name) {
  return library.open(getName()+'/'+name,ZFSFileSystem.class);
}

代码示例来源:origin: org.kohsuke/libzfs

/**
 * Creates a nested file system.
 *
 * @param props
 *      ZFS properties to be attached to the new file system. Can be null.
 */
public ZFSFileSystem createFileSystem(final String name, final Map<String, String> props) {
  return (ZFSFileSystem) library.create(getName()+'/'+name, ZFSType.FILESYSTEM,props);
}

代码示例来源:origin: org.kohsuke/libzfs

/**
 * Opens a nested file system.
 */
public ZFSFileSystem openFileSystem(String name) {
  return library.open(getName()+'/'+name,ZFSFileSystem.class);
}

代码示例来源:origin: org.jvnet.libzfs/libzfs

private <T extends ZFSObject> List<T> children(Class<T> type, List<T> list, boolean recursive) {
  for (ZFSObject snap : snapshots()) {
    if(type.isInstance(snap))
      list.add(type.cast(snap));
  }
  for (ZFSObject child : getChildren()) {
    if (!child.getName().contains("@")) {
      if(type.isInstance(child))
        list.add(type.cast(child));
      if(recursive)
        child.children(type,list,recursive);
    }
  }
  return list;
}

代码示例来源:origin: org.kohsuke/libzfs

private <T extends ZFSObject> List<T> children(Class<T> type, List<T> list, boolean recursive) {
  for (ZFSObject snap : snapshots()) {
    if(type.isInstance(snap))
      list.add(type.cast(snap));
  }
  for (ZFSObject child : getChildren()) {
    if (!child.getName().contains("@")) {
      if(type.isInstance(child))
        list.add(type.cast(child));
      if(recursive)
        child.children(type,list,recursive);
    }
  }
  return list;
}

代码示例来源:origin: org.jvnet.libzfs/libzfs

/**
 * Sets a user-defined property.
 */
public void setProperty(String key, String value) {
  if (LIBZFS.zfs_prop_set(handle, key, value) != 0)
    throw new ZFSException(library,"Failed to set property "+key+" on "+getName());
}

代码示例来源:origin: org.kohsuke/libzfs

/**
 * Sets a user-defined property.
 */
public void setProperty(String key, String value) {
  if (LIBZFS.zfs_prop_set(handle, key, value) != 0)
    throw new ZFSException(library,"Failed to set property "+key+" on "+getName());
}

代码示例来源:origin: org.jvnet.libzfs/libzfs

/**
 * Wipes out the dataset and all its data. Very dangerous.
 *
 * <p>
 * If this dataset contains nested datasets, this method fails with
 * {@link ErrorCode#EZFS_EXISTS}.
 */
public void destory() {
  if (LIBZFS.zfs_destroy(handle) != 0)
    throw new ZFSException(library,"Failed to destroy "+getName());
}

代码示例来源:origin: org.kohsuke/libzfs

/**
 * Destroy a named snapshot of this dataset.
 */
public void destroySnapshot(String name) {
  String abi = library.getFeature("LIBZFS4J_ABI_zfs_destroy_snaps");
  if (abi.equals("openzfs")) {
    if (LIBZFS.zfs_destroy_snaps(handle, name, false/*?*/) != 0)
      throw new ZFSException(library,"Failed to destroy "+getName());
  } else {
    if (LIBZFS.zfs_destroy_snaps(handle, name) != 0)
      throw new ZFSException(library,"Failed to destroy "+getName());
  }
}

代码示例来源:origin: org.jvnet.libzfs/libzfs

public ZFSObject rollback(boolean recursive) {
  String filesystem = name.substring(0, getName().indexOf("@"));
  ZFSObject fs = library.open(filesystem);
  if (recursive) {
    /* first pass - check for clones */
    List<ZFSObject> list = fs.getChildren();
    for (ZFSObject child : list) {
      if (!child.getName().startsWith(filesystem + "@")) {
        return child;
      }
    }
    /* second pass - find snapshot index, destroy later snapshots */
    boolean found = false;
    for (ZFSObject snap : fs.snapshots()) {
      String name = snap.getName();
      if (name.equals(getName())) {
        found = true;
        continue;
      }
      if (found) {
        snap.destory();
      }
    }
  }
  if (LIBZFS.zfs_rollback(fs.handle, handle, recursive) != 0)
    throw new ZFSException(library);
  return library.open(filesystem);
}

代码示例来源:origin: org.kohsuke/libzfs

public ZFSObject rollback(boolean recursive) {
  String filesystem = name.substring(0, getName().indexOf("@"));
  ZFSObject fs = library.open(filesystem);
  if (recursive) {
    /* first pass - check for clones */
    List<ZFSObject> list = fs.getChildren();
    for (ZFSObject child : list) {
      if (!child.getName().startsWith(filesystem + "@")) {
        return child;
      }
    }
    /* second pass - find snapshot index, destroy later snapshots */
    boolean found = false;
    for (ZFSObject snap : fs.snapshots()) {
      String name = snap.getName();
      if (name.equals(getName())) {
        found = true;
        continue;
      }
      if (found) {
        snap.destory();
      }
    }
  }
  if (LIBZFS.zfs_rollback(fs.handle, handle, recursive) != 0)
    throw new ZFSException(library);
  return library.open(filesystem);
}

代码示例来源:origin: org.kohsuke/libzfs

/**
 * Wipes out the dataset and all its data. Very dangerous.
 *
 * <p>
 * If this dataset contains nested datasets, this method fails with
 * {@link ErrorCode#EZFS_EXISTS}.
 */
public void destroy() {
  String abi = library.getFeature("LIBZFS4J_ABI_zfs_destroy");
  if (abi.equals("openzfs")) {
    if (LIBZFS.zfs_destroy(handle,false/*?*/) != 0)
      throw new ZFSException(library,"Failed to destroy "+getName());
  } else {
    if (LIBZFS.zfs_destroy(handle) != 0)
      throw new ZFSException(library,"Failed to destroy "+getName());
  }
}

相关文章