summaryrefslogtreecommitdiffstats
path: root/private/ole32/stg/props/utest/pstgserv/pssclass.hxx
blob: 8b78af4504270bdd0452c0a86320a49b945f7968 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90

#ifndef _PSSCLASS_HXX_
#define _PSSCLASS_HXX_

#include <pstgserv.h> // IDL headers

class CPropertyStorageServer : public IPropertyStorageServer
{
public:
    CPropertyStorageServer( IClassFactory *pcf)
    {
        m_cRefs = 0;
        m_pcf = pcf;
        m_pcf->LockServer( TRUE );
        m_pstg = NULL;
    }

    ~CPropertyStorageServer()
    {
        if( m_cRefs > 0 )
        {
            CoDisconnectObject( this, 0L );
        }

        if( m_pstg != NULL )
            m_pstg->Release();

        m_pcf->LockServer( FALSE );
    }

    STDMETHODIMP QueryInterface( REFIID riid, void **ppvObj );
    STDMETHODIMP_(ULONG) AddRef(void);
    STDMETHODIMP_(ULONG) Release(void);

    STDMETHODIMP StgOpenPropStg( const OLECHAR *pwcsName,
                                 REFFMTID fmtid,
                                 DWORD grfMode,
                                 IPropertyStorage **pppstg );

    STDMETHODIMP StgOpenPropSetStg( const OLECHAR *pwcsName,
                                    DWORD grfMode,
                                    IPropertySetStorage **pppsstg );
    STDMETHODIMP MarshalUnknown( IUnknown *punk );


private:
    IStorage * m_pstg;
    ULONG   m_cRefs;
    IClassFactory *m_pcf;
};


class CClassFactory: public IClassFactory
{
public:
    CClassFactory( HWND hWnd )
    {
        m_cRefs = 0;
        m_cLocks = 0;
        m_hWnd = hWnd;
    }

    ~CClassFactory()
    {
        if( m_cRefs > 0 )
        {
            CoDisconnectObject( this, 0L );
        }

        SendMessage( m_hWnd, WM_QUIT, 0, 0 );
    }

public:
    STDMETHODIMP QueryInterface( REFIID riid, void **ppvObj );
    STDMETHODIMP_(ULONG) AddRef(void);
    STDMETHODIMP_(ULONG) Release(void);

    STDMETHODIMP CreateInstance( IUnknown *pUnkOuter,
                                 REFIID riid,
                                 void **ppvObject );
    STDMETHODIMP LockServer( BOOL fLock );

private:
    ULONG m_cLocks;
    HWND m_hWnd;
    ULONG    m_cRefs;

};

#endif // _PSSCLASS_HXX_