summaryrefslogtreecommitdiff
path: root/src/inc/factory.h
blob: ae618fe2dd659b10419900bd2a31862ad2841735 (plain)
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.


#ifndef _FACTORY_H_
#define _FACTORY_H_

template<typename PRODUCT>
class Factory
{
public:
    virtual PRODUCT* Create() = 0;
    virtual ~Factory() {}
};

template<typename PRODUCT, DWORD MAX_FACTORY_PRODUCT = 64>
class InlineFactory : public Factory<PRODUCT>
{
public:
    InlineFactory() : m_next(NULL), m_cProduct(0) { WRAPPER_NO_CONTRACT; }
    ~InlineFactory() { WRAPPER_NO_CONTRACT; if (m_next) delete m_next; } 
    PRODUCT* Create();

private:
    InlineFactory* GetNext()
    {
        CONTRACTL {
            NOTHROW;
            GC_NOTRIGGER;
        } CONTRACTL_END;

        if (m_next == NULL)
        {
            m_next = new (nothrow) InlineFactory<PRODUCT, MAX_FACTORY_PRODUCT>();
        }
              
        return m_next;
    }

    InlineFactory* m_next;
    PRODUCT m_product[MAX_FACTORY_PRODUCT];
    INT32 m_cProduct;
};

#include "factory.inl"

#endif