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

📄 comthread.java

📁 java 与COM组件的连接桥
💻 JAVA
字号:
/*
 * Copyright (c) 1999-2004 Sourceforge JACOB Project.
 * All rights reserved. Originator: Dan Adler (http://danadler.com).
 * Get more information about JACOB at http://sourceforge.net/projects/jacob-project
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */
package com.jacob.com;

/**
 * Represents a COM level thread 
 * This is an abstract class because all the methods are static
 * and no instances are ever created.
 */
public abstract class ComThread {
    private static final int MTA = 0x0;

    private static final int STA = 0x2;

    /**
     * Comment for <code>haveSTA</code>
     */
    public static boolean haveSTA = false;

    /**
     * Comment for <code>mainSTA</code>
     */
    public static MainSTA mainSTA = null;

    /**
     * Initialize the current java thread to be part of the Multi-threaded COM
     * Apartment
     */
    public static synchronized void InitMTA() {
        InitMTA(false);
    }

    /**
     * Initialize the current java thread to be an STA
     */
    public static synchronized void InitSTA() {
        InitSTA(false);
    }

    /**
     * Initialize the current java thread to be part of the Multi-threaded COM
     * Apartment, if createMainSTA is true, create a separate MainSTA thread
     * that will house all Apartment Threaded components
     * @param createMainSTA
     */
    public static synchronized void InitMTA(boolean createMainSTA) {
        Init(createMainSTA, MTA);
    }

    /**
     * Initialize the current java thread to be an STA COM Apartment, if
     * createMainSTA is true, create a separate MainSTA thread that will house
     * all Apartment Threaded components
     * @param createMainSTA
     */
    public static synchronized void InitSTA(boolean createMainSTA) {
        Init(createMainSTA, STA);
    }

    /**
     * 
     */
    public static synchronized void startMainSTA() {
        mainSTA = new MainSTA();
        haveSTA = true;
    }

    /**
     * 
     */
    public static synchronized void quitMainSTA() {
        if (mainSTA != null)
            mainSTA.quit();
    }

    /**
     * Initialize the current java thread to be part of the MTA/STA COM
     * Apartment
     * @param createMainSTA
     * @param mode
     */
    public static synchronized void Init(boolean createMainSTA, int mode) {
        if (createMainSTA && !haveSTA) {
            // if the current thread is going to be in the MTA and there
            // is no STA thread yet, then create a main STA thread
            // to avoid COM creating its own
            startMainSTA();
        }
        if (JacobObject.isDebugEnabled()){JacobObject.debug("ComThread: before Init: "+mode);}
        doCoInitialize(mode);
        if (JacobObject.isDebugEnabled()){JacobObject.debug("ComThread: after Init: "+mode);}
        ROT.addThread();
        if (JacobObject.isDebugEnabled()){JacobObject.debug("ComThread: after ROT.addThread: "+mode); }
    }

    /**
     * Call CoUninitialize to release this java thread from COM
     */
    public static synchronized void Release() {
        if (JacobObject.isDebugEnabled()){JacobObject.debug("ComThread: before clearObjects"); }
        ROT.clearObjects();
        if (JacobObject.isDebugEnabled()){JacobObject.debug("ComThread: before UnInit"); }
        doCoUninitialize();
        if (JacobObject.isDebugEnabled()){JacobObject.debug("ComThread: after UnInit"); }
    }
    
    /**
     * @deprecated the java model leave the responsibility of clearing up objects 
     * to the Garbage Collector. Our programming model should not require that the
     * user specifically remove object from the thread.
     * 
     * This will remove an object from the ROT
     * @param o
     */
    public static synchronized void RemoveObject(JacobObject o)
    {
        ROT.removeObject(o);    
    }

    /**
     * @param threadModel
     */
    public static native void doCoInitialize(int threadModel);

    /**
     * 
     */
    public static native void doCoUninitialize();

    /**
     * load the Jacob DLL.  We do this in case COMThread is called before
     * any other reference to one of the JacboObject subclasses is made.
     */
    static {
    	LibraryLoader.loadJacobLibrary();
    }
}

⌨️ 快捷键说明

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