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

📄 install_lsp.cpp

📁 WinCE5.0部分核心源码
💻 CPP
字号:
//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// This source code is licensed under Microsoft Shared Source License
// Version 1.0 for Windows CE.
// For a copy of the license visit http://go.microsoft.com/fwlink/?LinkId=3223.
//
#include <winsock2.h>
#include <ws2spi.h>
#include <types.h>
#include <ws2bth.h>
#include <winreg.h>
#include <list.hxx>
#include <functional>
#include <algorithm>
#include <CReg.hxx>
extern "C"
{
    void InstallThirdPartyLSP();
}
// Function installs all third party LSP's
// By calling there doInstall entry point
//XXX: Should maybe move these defines elsewhere?
typedef HRESULT (*PFN_INSTALL_SP ) ();
#define REG_PATH _T("\\COMM\\WS2\\LSP")
#define DLL_NAME _T("Dll")
#define LOAD_ORDER_NAME _T("Order")
#define INSTALL_ENTRY_POINT  _T("Entry")


class SPInstaller
{
    private:
        SPInstaller (const  SPInstaller& s)
        {
            return;
        }

    public:
        SPInstaller(size_t order):
            loadOrder(order)
        {
        }
    bool Init(HKEY hSPNode)
    {
        BOOL bRet = reg.Open(hSPNode,NULL);
        return (bRet != FALSE);
    }
    void Install() 
    {
        if (!reg.IsOK())
        {
            assert ("!SPInstaller !IsOK" && 0);
            return;
        }


        LPCTSTR wszSPDLLPath = reg.ValueSZ(DLL_NAME);
        if (!wszSPDLLPath)
        {
            assert("node had no DLL_NAME value" && 0);
            return;
        }

		//  try to load SP to get its install member.
        ce::auto_hlibrary hSPDLL = LoadLibrary(wszSPDLLPath);
		if (!hSPDLL.valid()) 
		{
			assert("can't load the dll " && 0);
            return;
		}

        static const WCHAR defaultInstallFunction[]= L"DllRegisterServer";
        LPWSTR wszInstallFunction  = (LPWSTR) reg.ValueSZ(INSTALL_ENTRY_POINT);
        if (!wszInstallFunction)
        {
            wszInstallFunction = (WCHAR*)defaultInstallFunction;
        }

        PFN_INSTALL_SP pfnInstallSP = (PFN_INSTALL_SP) GetProcAddress(hSPDLL,wszInstallFunction);
		if (!pfnInstallSP)
		{
            assert ("can't GetProcAddress install entrypoint " && 0); 
            return;
		}
        // wraps our pfnInstallSP in a __try block.
        CallUnsafeFunction(pfnInstallSP);
        return;
    }
    void CallUnsafeFunction(PFN_INSTALL_SP pfnInstallSP)
    {
        __try
        {
            pfnInstallSP();
        }
        __except (EXCEPTION_EXECUTE_HANDLER)
        {
            assert("exception calling pfnInstallSP" && 0);
        }
    }
    friend bool operator<(const size_t& lhs, const SPInstaller& rhs );
private:
    CReg        reg;
    size_t      loadOrder;
};

bool operator<(const size_t& lhs, const SPInstaller& rhs )
{
    return (lhs < rhs.loadOrder);
}

void InstallThirdPartyLSP()
{
    using namespace std;

	// open the reg key 
	
    CReg regSPRoot(HKEY_LOCAL_MACHINE,REG_PATH);
    if (!regSPRoot.IsOK())
    {
        return;
    }

    ce::list <SPInstaller> listSPs;

	while (TRUE)
	{
        BOOL bRet;

		// For every child of hKeysToInstall
        WCHAR wszSPName[MAX_PATH+1];
		const DWORD cbNameOfLSP = sizeof(wszSPName)/sizeof(wszSPName[0]);
        bRet  = regSPRoot.EnumKey(wszSPName,cbNameOfLSP);
        if (bRet == FALSE)
        {
            break; //  We're done when no more keys to enumerate.
        }

        CReg regSPNode (regSPRoot,wszSPName);
        if (!regSPNode.IsOK())
        {
            assert("Regkey supposed to have a child" && 0 );
            continue;
        }


        // Get the LOADOrder for this entry.
        // If not set, pick the largest value possible.

        const size_t loadOrder =   regSPNode.ValueDW(LOAD_ORDER_NAME,(DWORD)-1); // get max symbol

        // Create a SPInstaller, in the correct order of the list.

        ce::list<SPInstaller>::iterator it = 
            listSPs.insert( 
                    std::upper_bound(listSPs.begin(), listSPs.end(), loadOrder),  
                    loadOrder /*Create SPInstaller from loadOrder*/
                    );

        if (it == listSPs.end())
        {
            assert("OOM Installation failed" && 0);
            return;
        }
        bRet = it->Init(regSPNode);
        if (bRet == FALSE)
        {
            assert("SPInstaller->Init Failed" && 0 );
            // erase the item
            listSPs.erase(it);
        }
	}

    // Install every  SP.
    for_each(listSPs.begin(), listSPs.end(),
            mem_fun_ref_t<void,SPInstaller> (&SPInstaller::Install));

	return;

}

⌨️ 快捷键说明

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