2014-01-30 23:09:59 +00:00
|
|
|
# Copyright (C) 2014 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2022-12-08 06:46:45 +00:00
|
|
|
import functools
|
2022-11-25 12:32:05 +00:00
|
|
|
import importlib.machinery
|
|
|
|
import importlib.util
|
2014-01-30 23:09:59 +00:00
|
|
|
import os
|
|
|
|
|
|
|
|
|
2024-03-21 16:58:01 +00:00
|
|
|
def WrapperDir():
|
|
|
|
return os.path.dirname(__file__)
|
|
|
|
|
|
|
|
|
2014-01-30 23:09:59 +00:00
|
|
|
def WrapperPath():
|
2024-03-21 16:58:01 +00:00
|
|
|
return os.path.join(WrapperDir(), "repo")
|
2014-01-30 23:09:59 +00:00
|
|
|
|
2020-02-12 06:20:19 +00:00
|
|
|
|
2022-12-08 06:46:45 +00:00
|
|
|
@functools.lru_cache(maxsize=None)
|
2014-01-30 23:09:59 +00:00
|
|
|
def Wrapper():
|
2023-03-11 06:46:20 +00:00
|
|
|
modname = "wrapper"
|
|
|
|
loader = importlib.machinery.SourceFileLoader(modname, WrapperPath())
|
|
|
|
spec = importlib.util.spec_from_loader(modname, loader)
|
|
|
|
module = importlib.util.module_from_spec(spec)
|
|
|
|
loader.exec_module(module)
|
|
|
|
return module
|