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

📄 sessionmgr.cpp

📁 Windows CE 6.0 Server 源码
💻 CPP
字号:
//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft shared
// source or premium shared source license agreement under which you licensed
// this source code. If you did not accept the terms of the license agreement,
// you are not authorized to use this source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the SOURCE.RTF on your install media or the root of your tools installation.
// THE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES.
//

#include "session.h"
#include "proxydbg.h"

CSessionMgr* g_pSessionMgr;


DWORD CSessionMgr::StartSession(SessionSettings* pSettings, DWORD* pdwSessionId)
{
    DWORD dwRetVal = ERROR_SUCCESS;
    CHttpSession session;

    Lock();

    //
    // Insert the session in the list.  This is copying the object and thus invoking the copy
    // constructor of CHttpSession.
    //
    
    if (false == m_SessionList.push_front(session)) {
        dwRetVal = ERROR_OUTOFMEMORY;
        goto exit;
    }

    //
    // Have to call the start() method after we insert the item on the list since
    // it will copy the object.  Start() must be called from the same instance
    // which will exist in the list since it stores the instance of the object for
    // use by a static method.
    //
    
    m_SessionList.begin()->SetId(m_dwNextId);
    dwRetVal = m_SessionList.begin()->Start(pSettings);
    if (ERROR_SUCCESS != dwRetVal) {
        m_SessionList.pop_front();
        goto exit;
    }

    if (pdwSessionId) {
        *pdwSessionId = m_dwNextId;
    }

    m_dwNextId++;

    IFDBG(DebugOut(ZONE_SESSION, _T("WebProxy: SESSION COUNT: %d.\n"), m_SessionList.size()));

exit:
    Unlock();
    return dwRetVal;
}

DWORD CSessionMgr::RemoveSession(DWORD dwSessionId)
{
    DWORD dwRetVal = ERROR_NOT_FOUND;

    Lock();

    // Traverse the list until we find the node with the specified session id and delete it
    for(list::iterator it = m_SessionList.begin(), itEnd = m_SessionList.end(); it != itEnd;) {
        if(it->GetId() == dwSessionId) {
            m_SessionList.erase(it++);
            dwRetVal = ERROR_SUCCESS;
            IFDBG(DebugOut(ZONE_SESSION, _T("WebProxy: SESSION COUNT: %d.\n"), m_SessionList.size()));
            break;
        }
        else {
            ++it;
        }
    }

    Unlock();
    
    return dwRetVal;
}

DWORD CSessionMgr::RemoveAllSessions(void)
{
    Lock();
    
    // Remove each node in the list
    for (list::iterator it = m_SessionList.begin(), itEnd = m_SessionList.end(); it != itEnd;) {
        m_SessionList.erase(it++);
    }

    IFDBG(DebugOut(ZONE_SESSION, _T("WebProxy: SESSION COUNT: %d.\n"), m_SessionList.size()));

    Unlock();

    return ERROR_SUCCESS;
}

DWORD CSessionMgr::ShutdownAllSessions(void)
{
    Lock();
    
    // Traverse the list, shutting down each session.
    for (list::iterator it = m_SessionList.begin(), itEnd = m_SessionList.end(); it != itEnd; ++it) {
        DWORD dwErr = it->Shutdown();
#ifdef DEBUG
        if (ERROR_SUCCESS != dwErr) {
            IFDBG(DebugOut(ZONE_WARN, _T("WebProxy: Did not shutdown session: Error: %d.\n"), dwErr));
        }
#endif // DEBUG
    }

    Unlock();

    return ERROR_SUCCESS;
}

int CSessionMgr::GetSessionCount(void)
{
    Lock();
    DWORD dwSize = m_SessionList.size();
    Unlock();
    
    return dwSize;
}

⌨️ 快捷键说明

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