summaryrefslogtreecommitdiff
path: root/src/inc/shim/runtimeselector.h
blob: 168aee9aa87af523c0dc59fe370aa0964c990907 (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
// 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.
//
// runtimeselector.h
//
// Class that select the best runtime
//
// Note: very similar to ShimSelector but is so simple that adding a common template parent class is not worth it
//
// Note: must be platform independent
//
// ======================================================================================


#ifndef RUNTIMESELECTOR_H
#define RUNTIMESELECTOR_H

// does not currently need to add anything to VersionAndLocationInfo
#include "versionandlocationinfo.h"
typedef VersionAndLocationInfo RuntimeInfo;

class RuntimeSelector
{
protected:
    VersionInfo m_RequestedVersion; // requested version
    RuntimeInfo m_Best;       // the best option so far
    bool m_bHasSomething;             // has any data
public:
    //constructor
    RuntimeSelector();

    // whether the given info compatible with the request
    bool IsAcceptable(const RuntimeInfo& runtimeInfo)  const;

    // add runtime info
    HRESULT Add(const RuntimeInfo& runtimeInfo);

    // set the version requested
    void SetRequestedVersion(const VersionInfo& version);

    // get the best found
    RuntimeInfo GetBest();

    // has any useful data
    bool HasUsefulRuntimeInfo();
    
    // is 1st better than 2nd
    static bool IsBetter(const RuntimeInfo& ri1, const RuntimeInfo& ri2);
};

#include "runtimeselector.inl"

#endif // RUNTIMESELECTOR_H