summaryrefslogtreecommitdiff
path: root/src/binder/inc/failurecachehashtraits.hpp
blob: 7d65544ecc1b2eee7a02c80c6ad38c0de2f50cb2 (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
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
// 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.
// ============================================================
//
// FailureCache.hpp
//


//
// Defines the FailureCache class
//
// ============================================================

#ifndef __BINDER__FAILURE_CACHE_HASH_TRAITS_HPP__
#define __BINDER__FAILURE_CACHE_HASH_TRAITS_HPP__

#include "bindertypes.hpp"
#include "utils.hpp"
#include "sstring.h"
#include "shash.h"

namespace BINDER_SPACE
{
    class FailureCacheEntry
    {
    public:
        inline FailureCacheEntry()
        {
            m_hrBindingResult = S_OK;
        }
        inline ~FailureCacheEntry()
        {
            // Nothing to do here
        }

        // Getters/Setters
        inline SString &GetAssemblyNameOrPath()
        {
            return m_assemblyNameOrPath;
        }
        inline HRESULT GetBindingResult()
        {
            return m_hrBindingResult;
        }
        inline void SetBindingResult(HRESULT hrBindingResult)
        {
            m_hrBindingResult = hrBindingResult;
        }

    protected:
        SString m_assemblyNameOrPath;
        HRESULT m_hrBindingResult;
    };

    class FailureCacheHashTraits : public DefaultSHashTraits<FailureCacheEntry *>
    {
    public:
        typedef SString& key_t;
 
        // GetKey, Equals, and Hash can throw due to SString
        static const bool s_NoThrow = false;

        static key_t GetKey(element_t pFailureCacheEntry)
        {
            return pFailureCacheEntry->GetAssemblyNameOrPath();
        }
        static BOOL Equals(key_t pAssemblyNameOrPath1, key_t pAssemblyNameOrPath2)
        {
            return EqualsCaseInsensitive(pAssemblyNameOrPath1, pAssemblyNameOrPath2);
        }
        static count_t Hash(key_t pAssemblyNameOrPath)
        {
            return HashCaseInsensitive(pAssemblyNameOrPath);
        }
        static const element_t Null()
        {
            return NULL;
        }
        static bool IsNull(const element_t &propertyEntry)
        {
            return (propertyEntry == NULL);
        }

    };
};

#endif