all.py 1.42 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
#!/usr/bin/python

import os
import sys
import shutil

LOCAL_LOG_PATH = os.path.join(os.getcwd(), "logs")

if (__name__ ==  "__main__"):
    if (not os.path.exists(LOCAL_LOG_PATH)):
11
        os.makedirs(LOCAL_LOG_PATH)
12

13 14 15 16 17 18 19 20 21
    print("Building native part of OpenCV Manager...")
    HomeDir = os.getcwd()
    os.chdir(os.path.join(HomeDir, "engine"))
    shutil.rmtree(os.path.join(HomeDir, "engine", "libs"), ignore_errors=True)
    shutil.rmtree(os.path.join(HomeDir, "engine", "obj"), ignore_errors=True)
    BuildCommand = "ndk-build V=1 > \"%s\" 2>&1" % os.path.join(LOCAL_LOG_PATH, "build.log")
    #print(BuildCommand)
    res = os.system(BuildCommand)
    if (0 == res):
22
        print("Build\t[OK]")
23
    else:
24
        print("Build\t[FAILED]")
25 26
    sys.exit(-1)

27 28
    os.chdir(HomeDir)
    ConfFile = open("device.conf", "rt")
29

30
    for s in ConfFile.readlines():
31 32 33 34 35 36 37 38 39 40 41 42 43
        keys = s.split(";")
        if (len(keys) < 2):
           print("Error: invalid config line: \"%s\"" % s)
           continue
        Arch = keys[0]
        Name = keys[1]
        print("testing \"%s\" arch" % Arch)
        print("Pushing to device \"%s\"" % Name)
        PushCommand = "%s \"%s\" \"%s\" 2>&1" % (os.path.join(HomeDir, "push_native.py"), Arch, Name)
        os.system(PushCommand)
        print("Testing on device \"%s\"" % Name)
        TestCommand = "%s \"%s\" \"%s\" 2>&1" % (os.path.join(HomeDir, "test_native.py"), Arch, Name)
        os.system(TestCommand)