hub.py 2.3 KB
Newer Older
S
Steffy-zxf 已提交
1
#coding:utf-8
W
wuzewu 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# Copyright (c) 2019  PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
W
wuzewu 已提交
19

S
Steffy-zxf 已提交
20
import six
W
wuzewu 已提交
21 22
import sys

W
wuzewu 已提交
23
from paddlehub.common.logger import logger
W
wuzewu 已提交
24
from paddlehub.common.utils import sys_stdin_encoding
25
from paddlehub.common import srv_utils
W
wuzewu 已提交
26 27 28 29 30 31 32
from paddlehub.commands.base_command import BaseCommand
from paddlehub.commands import show
from paddlehub.commands import help
from paddlehub.commands import version
from paddlehub.commands import run
from paddlehub.commands import download

W
wuzewu 已提交
33 34

class HubCommand(BaseCommand):
W
wuzewu 已提交
35 36 37 38 39
    name = "hub"

    def __init__(self, name):
        super(HubCommand, self).__init__(name)
        self.show_in_help = False
W
wuzewu 已提交
40

W
wuzewu 已提交
41
    def execute(self, argv):
42 43
        logger.setLevel("NOLOG")

W
wuzewu 已提交
44
        if not argv:
W
wuzewu 已提交
45
            help.command.execute(argv)
W
wuzewu 已提交
46 47 48 49 50
            exit(1)
            return False
        sub_command = argv[0]
        if not sub_command in BaseCommand.command_dict:
            print("ERROR: unknown command '%s'" % sub_command)
W
wuzewu 已提交
51
            help.command.execute(argv)
W
wuzewu 已提交
52
            exit(1)
W
wuzewu 已提交
53
            return False
54
        srv_utils.hub_stat(['hub'] + argv)
W
wuzewu 已提交
55
        command = BaseCommand.command_dict[sub_command]
W
wuzewu 已提交
56
        return command.execute(argv[1:])
W
wuzewu 已提交
57 58


W
wuzewu 已提交
59 60
command = HubCommand.instance()

W
wuzewu 已提交
61 62

def main():
S
Steffy-zxf 已提交
63 64 65
    argv = []
    for item in sys.argv:
        if six.PY2:
W
wuzewu 已提交
66
            argv.append(item.decode(sys_stdin_encoding()).decode("utf8"))
S
Steffy-zxf 已提交
67 68 69
        else:
            argv.append(item)
    command.execute(argv[1:])
W
wuzewu 已提交
70 71


W
wuzewu 已提交
72
if __name__ == "__main__":
S
Steffy-zxf 已提交
73 74 75
    argv = []
    for item in sys.argv:
        if six.PY2:
W
wuzewu 已提交
76
            argv.append(item.decode(sys_stdin_encoding()).decode("utf8"))
S
Steffy-zxf 已提交
77 78 79
        else:
            argv.append(item)
    command.execute(argv[1:])