⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jembossfileserver.java

📁 emboss的linux版本的源代码
💻 JAVA
字号:
/***************************************************************** *  This program is free software; you can redistribute it and/or*  modify it under the terms of the GNU General Public License*  as published by the Free Software Foundation; either version 2*  of the License, or (at your option) any later version.**  This program is distributed in the hope that it will be useful,*  but WITHOUT ANY WARRANTY; without even the implied warranty of*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the*  GNU General Public License for more details.**  You should have received a copy of the GNU General Public License*  along with this program; if not, write to the Free Software*  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.**  @author: Copyright (C) Tim Carver****************************************************************/package org.emboss.jemboss.server;import org.emboss.jemboss.programs.*;import org.emboss.jemboss.parser.*;import java.io.*;import java.util.*;/**** File manager methods - for a non-authenticating server**/public class JembossFileServer{//SITE SPECIFIC CHANGE USER DIRECTORIES HERE  /**  *  * Retrieves the file manager roots on the server  * @param user		username  *  */  public Vector embreo_roots(String user)  {    Vector vans = new Vector();    vans.add("status");    vans.add("0");    vans.add("msg");    vans.add("");    vans.add("default-root");    vans.add("HOME");    vans.add("HOME");    vans.add("/tmp/SOAP/emboss/"+System.getProperty("user.name")+"/"+user); // // ADD OTHER DIRECTORY ROOTS HERE//       return vans;  }  /**  *  * Given the alias a user root alias e.g. "HOME" return  * the directory this represents  * @param s	root alias (e.g "HOME")  * @param user	username  * @return 	directory path  *  */  private String getRoot(String s, String user)  {    String rt = null;    Vector userRoots = embreo_roots(user);    for(int i=0; i<userRoots.size();i+=2)    {      String root = (String)userRoots.get(i);      if(root.equalsIgnoreCase(s))        return (String)userRoots.get(i+1);    }    return rt;  }  /**  *  * Get a directory listing  * @param option       root alias  * @param dirname      direcory name  * @param user     	username  * @return             directory listing  *  */  public Vector directory_shortls(String options, String dirname, String user)  {    Vector vans = new Vector();    int split = options.indexOf("=")+1;    File dir = new File(getRoot(options.substring(split),user) + "/" + dirname);// filter out dot files    File files[] = dir.listFiles(new FilenameFilter()    {      public boolean accept(File d, String n)      {        return !n.startsWith(".");      }    });    String listAll = "";    String listDir = "";    for(int i=0;i<files.length;i++)    {      if(files[i].isDirectory())        listDir = listDir.concat(files[i].getName() + "\n");      listAll = listAll.concat(files[i].getName() + "\n");    }    vans.add("status");    vans.add("0");    vans.add("msg");    vans.add("");    vans.add("list");    vans.add(listAll);    vans.add("dirlist");    vans.add(listDir);    return vans;  }  /**  *  * Get the contents of a file  * @param option       root alias  * @param filename     file name  * @param user     	username  * @return             file contents  *  */  public Vector get_file(String options, String filename, String user)  {    Vector vans = new Vector();        int split = options.indexOf("=")+1;      String fullFileName = getRoot(options.substring(split),user) + "/" + filename;    File dir = new File(fullFileName);    String line = new String("");    String fc = new String("");    if(fullFileName.toLowerCase().endsWith(".png") ||       fullFileName.toLowerCase().endsWith(".gif") ||       fullFileName.toLowerCase().endsWith(".jpeg") )    {      byte[] data = JembossServer.readByteFile(fullFileName);      vans.add("contents");      vans.add(data);    }    else    {      try      {        BufferedReader in = new BufferedReader(new FileReader(dir));        while((line = in.readLine()) != null)          fc = fc.concat(line + "\n");        vans.add("contents");        vans.add(fc);      }      catch (IOException ioe)      {        vans.add("contents");        vans.add("Sorry cannot read this file");      }    }    vans.add("status");    vans.add("0");    vans.add("msg");    vans.add("");    return vans;  }   /**  *  * Put a file on the server file system  * @param option       root alias  * @param filename     name of file to add  * @param filedata     file contents  * @param user     	username  * @return             message  *  */  public Vector put_file(String options, String filename, byte[] filedata,                         String user)  {    Vector vans = new Vector();    int split = options.indexOf("=")+1;    File f = new File(getRoot(options.substring(split),user) + "/" + filename);    try    {      FileOutputStream out = new FileOutputStream(f);      out.write(filedata);      out.close();      vans.add("status");      vans.add("0");    }    catch(IOException ioe)    {      vans.add("status");      vans.add("1");    }    vans.add("msg");    vans.add("");       return vans;  }  /**  *  * Make a directory  * @param option       root alias  * @param dirname      name of new directory  * @param userName     username  * @return             message  *  */  public Vector mkdir(String options, String dirname,                      String userName)  {    Vector vans = new Vector();    int split = options.indexOf("=")+1;    String fullDirname = getRoot(options.substring(split),userName)+                           "/" + dirname;    File dir = new File(fullDirname);    boolean ok = dir.mkdir();     vans.add("msg");    if(ok)      vans.add("");    else      vans.add("NOT OK");    return vans;  }  /**  *  * Delete a file  * @param option       root alias  * @param filename     file name  * @param userName     username  * @return             message  *  */  public Vector delFile(String options, String filename,                        String userName)  {    Vector vans = new Vector();    int split = options.indexOf("=")+1;    String fullname = getRoot(options.substring(split),userName)+                             "/" + filename;    File fn = new File(fullname);    vans.add("msg");    if(fn.delete())      vans.add("");    else      vans.add("NOT OK");    return vans;  }  /**  *  * Delete a directory  * @param option       root alias  * @param filename     directory name  * @param userName     username  * @return             message  *  */  public Vector delDir(String options, String filename,                        String userName)  {    Vector vans = new Vector();    int split = options.indexOf("=")+1;    String fullname = getRoot(options.substring(split),userName)+                             "/" + filename;    File fn = new File(fullname);    vans.add("msg");    if(fn.delete())      vans.add("");    else      vans.add("NOT OK");    return vans;  }  /**  *  * Rename a file  * @param option       root alias  * @param oldfile      old file name  * @param newfile      new file name  * @param userName     username  * @return             message  *  */  public Vector rename(String options, String oldfile, String newfile,                       String userName)  {    Vector vans = new Vector();    int split = options.indexOf("=")+1;    String oldname = getRoot(options.substring(split),userName)+                             "/" + oldfile;    File fnOld = new File(oldname);    File fnNew = new File(newfile);    boolean ok = fnOld.renameTo(fnNew);    vans.add("msg");    if(ok)      vans.add("");    else      vans.add("NOT OK");    return vans;  } }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -