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

📄 cupsprintservicelookup.java

📁 linux下建立JAVA虚拟机的源码KAFFE
💻 JAVA
字号:
/* CupsPrintServiceLookup.java -- Implementation based on CUPS   Copyright (C) 2006 Free Software Foundation, Inc.This file is part of GNU Classpath.GNU Classpath is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2, or (at your option)any later version.GNU Classpath is distributed in the hope that it will be useful, butWITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNUGeneral Public License for more details.You should have received a copy of the GNU General Public Licensealong with GNU Classpath; see the file COPYING.  If not, write to theFree Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA02110-1301 USA.Linking this library statically or dynamically with other modules ismaking a combined work based on this library.  Thus, the terms andconditions of the GNU General Public License cover the wholecombination.As a special exception, the copyright holders of this library give youpermission to link this library with independent modules to produce anexecutable, regardless of the license terms of these independentmodules, and to copy and distribute the resulting executable underterms of your choice, provided that you also meet, for each linkedindependent module, the terms and conditions of the license of thatmodule.  An independent module is a module which is not derived fromor based on this library.  If you modify this library, you may extendthis exception to your version of the library, but you are notobligated to do so.  If you do not wish to do so, delete thisexception statement from your version. */package gnu.javax.print;import gnu.javax.print.ipp.IppException;import java.util.ArrayList;import javax.print.DocFlavor;import javax.print.MultiDocPrintService;import javax.print.PrintService;import javax.print.PrintServiceLookup;import javax.print.attribute.Attribute;import javax.print.attribute.AttributeSet;/** * The platform default implementation based on CUPS. *  * @author Wolfgang Baer (WBaer@gmx.de) */public class CupsPrintServiceLookup extends PrintServiceLookup{    private CupsServer server;   /**   * Default constructor checking security access.   */  public CupsPrintServiceLookup()  {    // security    SecurityManager sm = System.getSecurityManager();    if (sm != null)      sm.checkPrintJobAccess();         // use the localhost cups server    server = new CupsServer(null, null);  }  /**   * This is the printer marked as default in CUPS.   *    * @return The default lookup service or   * <code>null</code> if there is no default.   */  public PrintService getDefaultPrintService()  {    try      {        return server.getDefaultPrinter();      }       catch (IppException e)      {        // if discovery fails treat as if there is none        return null;      }      }    /**  * All printers and printer classes of the CUPS server are checked.  * If flavors or attributes are null the constraint is not used.  *   * @param flavors the document flavors which have to be supported.  * @param attributes the attributes which have to be supported.  *   * @return The multidoc print services of the implementing lookup service  * for the given parameters, or an array of length 0 if none is available.  */  public MultiDocPrintService[] getMultiDocPrintServices(DocFlavor[] flavors,      AttributeSet attributes)  {    ArrayList result = new ArrayList();    PrintService[] services = getPrintServices();           for (int i=0; i < services.length; i++)      {        if (checkMultiDocPrintService(flavors, attributes, services[i]))          result.add(services[i]);        }        return (MultiDocPrintService[]) result.toArray(      new MultiDocPrintService[result.size()]);  }  /**   * These are all printers and printer classes of the CUPS server.   *    * @return All known print services regardless of supported features,    * or an array of length 0 if none is available.   */  public PrintService[] getPrintServices()  {    ArrayList result = new ArrayList();        try      {        result.addAll(server.getAllPrinters());        result.addAll(server.getAllClasses());      }    catch (IppException e)      {               // ignore as this method cannot throw exceptions        // if print service discovery fails - bad luck      }    return (PrintService[]) result.toArray(new PrintService[result.size()]);  }      /**   * All printers and printer classes of the CUPS server are checked.   * If flavor or attributes are null the constraint is not used.   *    * @param flavor the document flavor which has to be supported.   * @param attributes the attributes which have to be supported.   *    * @return The print services of the implementing lookup service   * for the given parameters, or an array of length 0 if none is available.   */  public PrintService[] getPrintServices(DocFlavor flavor,      AttributeSet attributes)  {    ArrayList result = new ArrayList();    PrintService[] services = getPrintServices();        for (int i=0; i < services.length; i++)      {        if (checkPrintService(flavor, attributes, services[i]))          result.add(services[i]);      }        return (PrintService[]) result.toArray(new PrintService[result.size()]);  }    /**   * Checks the given print service - own method so it can be used also   * to check application registered print services from PrintServiceLookup.   *    * @param flavor the document flavor which has to be supported.   * @param attributes the attributes which have to be supported.   * @param service the service to check   *    * @return <code>true</code> if all constraints match, <code>false</code>    * otherwise.   */  public boolean checkPrintService(DocFlavor flavor, AttributeSet attributes,    PrintService service)  {    boolean allAttributesSupported = true;    if (flavor == null || service.isDocFlavorSupported(flavor))      {        if (attributes == null || attributes.size() == 0)          return allAttributesSupported;               Attribute[] atts = attributes.toArray();        for (int i = 0; i < atts.length; i++)          {            if (! service.isAttributeCategorySupported(atts[i].getCategory()))              {                allAttributesSupported = false;                break;              }          }        return allAttributesSupported;      }        return false;  }    /**   * Checks the given print service - own method so it can be used also   * to check application registered print services from PrintServiceLookup.   *    * @param flavors the document flavors which have to be supported.   * @param attributes the attributes which have to be supported.   * @param service the service to check   *    * @return <code>true</code> if all constraints match, <code>false</code>    * otherwise.   */  public boolean checkMultiDocPrintService(DocFlavor[] flavors,     AttributeSet attributes, PrintService service)  {        if (service instanceof MultiDocPrintService)      {         boolean allFlavorsSupported = true;        boolean allAttributesSupported = true;                if (flavors == null || flavors.length != 0)          allFlavorsSupported = true;        else          {            for (int k = 0; k < flavors.length; k++)              {                if (! service.isDocFlavorSupported(flavors[k]))                  {                    allFlavorsSupported = false;                    break;                  }              }          }                if (attributes == null || attributes.size() == 0)          allAttributesSupported = true;        else          {            Attribute[] atts = attributes.toArray();            for (int j = 0; j < atts.length; j++)              {                if (! service.isAttributeCategorySupported(                    atts[j].getCategory()))                  {                    allAttributesSupported = false;                    break;                  }              }          }                if (allAttributesSupported && allFlavorsSupported)          return true;      }             return false;  }}

⌨️ 快捷键说明

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