File: main.cpp

package info (click to toggle)
intel-media-driver 18.4.1%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 77,144 kB
  • sloc: cpp: 784,288; ansic: 95,944; asm: 42,125; python: 353; sh: 156; makefile: 15
file content (105 lines) | stat: -rw-r--r-- 3,165 bytes parent folder | download | duplicates (10)
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
* Copyright (c) 2018, Intel Corporation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
#include <cctype>
#include <string>
#include <stdio.h>
#include "devconfig.h"
#include "gtest/gtest.h"

using namespace std;

const char*        g_driverPath;
vector<Platform_t> g_platform;

static bool ParseCmd(int argc, char *argv[]);

int main(int argc, char *argv[])
{
    testing::InitGoogleTest(&argc, argv);

    if (ParseCmd(argc, argv) == false)
    {
        return -1;
    }

    return RUN_ALL_TESTS();
}

static bool ParsePlatform(const char *str);
static bool ParseDriverPath(const char *str);

static bool ParseCmd(int argc, char *argv[])
{
    g_driverPath = nullptr;
    g_platform.clear();

    for (int i = 1; i < argc; i++)
    {
        if (ParseDriverPath(argv[i]) == false && ParsePlatform(argv[i]) == false)
        {
            printf("ERROR\n    Bad command line parameter!\n\n");
            printf("USAGE\n    devult [driver_path] [platform_name...]\n\n");
            printf("DESCRIPTION\n    [driver_path]     : Use default driver relative path if not specify driver_path.\n"
                "    [platform_name...]: Select zero or more items from {SKL, BXT, BDW}.\n\n");
            printf("EXAMPLE\n    devult\n"
                "    devult ./build/media_driver/iHD_drv_video.so\n"
                "    devult skl\n"
                "    devult ./build/media_driver/iHD_drv_video.so skl\n"
                "    devult ./build/media_driver/iHD_drv_video.so skl\n\n");
            return false;
        }
    }

    return true;
}

static bool ParsePlatform(const char *str)
{
    string tmpStr(str);

    for (auto i = tmpStr.begin(); i != tmpStr.end(); i++)
    {
        *i = toupper(*i);
    }

    for (int i = 0; i < (int)igfx_MAX; i++)
    {
        if (tmpStr.compare(g_platformName[i]) == 0)
        {
            g_platform.push_back((Platform_t)i);
            return true;
        }
    }

    return false;
}

static bool ParseDriverPath(const char *str)
{
    if (g_driverPath == nullptr && strstr(str, "iHD_drv_video.so") != nullptr)
    {
        g_driverPath = str;
        return true;
    }

    return false;
}