blob: cbc3993be6d90ab1075040a0f57646ea36a36f4d [file] [log] [blame]
# Copyright 2020 Google LLC
#
# 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.
# ==============================================================================
"""Setup for Tink package with pip."""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from distutils import spawn
import glob
import os
import posixpath
import re
import shutil
import subprocess
import textwrap
import setuptools
from setuptools.command import build_ext
_PROJECT_BASE_DIR = os.path.dirname(os.path.abspath(__file__))
def _get_tink_version():
"""Parses the version number from VERSION file."""
with open(os.path.join(_PROJECT_BASE_DIR, 'VERSION')) as f:
try:
version_line = next(
line for line in f if line.startswith('TINK_VERSION_LABEL'))
except StopIteration:
raise ValueError(
'Version not defined in {}/VERSION'.format(_PROJECT_BASE_DIR))
else:
return version_line.split(' = ')[-1].strip('\n \'"')
_TINK_VERSION = _get_tink_version()
def _get_bazel_command():
"""Finds the bazel command."""
if spawn.find_executable('bazelisk'):
return 'bazelisk'
elif spawn.find_executable('bazel'):
return 'bazel'
raise FileNotFoundError('Could not find bazel executable. Please install '
'bazel to compile the Tink Python package.')
def _get_protoc_command():
"""Finds the protoc command."""
if 'PROTOC' in os.environ and os.path.exists(os.environ['PROTOC']):
return os.environ['PROTOC']
else:
return spawn.find_executable('protoc')
raise FileNotFoundError('Could not find protoc executable. Please install '
'protoc to compile the Tink Python package.')
def _generate_proto(protoc, source):
"""Invokes the Protocol Compiler to generate a _pb2.py."""
if not os.path.exists(source):
raise FileNotFoundError('Cannot find required file: {}'.format(source))
output = source.replace('.proto', '_pb2.py')
if (os.path.exists(output) and
os.path.getmtime(source) < os.path.getmtime(output)):
# No need to regenerate if output is newer than source.
return
print('Generating {}...'.format(output))
protoc_args = [protoc, '-I.', '--python_out=.', source]
subprocess.run(args=protoc_args, check=True)
def _parse_requirements(filename):
with open(os.path.join(_PROJECT_BASE_DIR, filename)) as f:
return [
line.rstrip()
for line in f
if not (line.isspace() or line.startswith('#'))
]
def _patch_workspace(workspace_content):
"""Update the Bazel workspace with valid repository references.
setuptools builds in a temporary folder which breaks the relative paths
defined in the Bazel workspace. By default, the local_repository() rules will
be replaced with http_archive() rules which contain URLs that point to an
archive of the Tink GitHub repository as of the latest commit as of the master
branch.
This behavior can be modified via the following environment variables, in
order of precedence:
* TINK_PYTHON_SETUPTOOLS_OVERRIDE_BASE_PATH
Instead of using http_archive() rules, update the local_repository()
rules with the specified alternative local path. This allows for
building using a local copy of the project (e.g. for testing).
* TINK_PYTHON_SETUPTOOLS_TAGGED_VERSION
Instead of providing a URL of an archive of the current master branch,
instead link to an archive that correspond with the tagged version (e.g.
for creating release artifacts).
Args:
workspace_content: The original tink/python WORKSPACE.
Returns:
The workspace_content using http_archive for tink_cc.
"""
if 'TINK_PYTHON_SETUPTOOLS_OVERRIDE_BASE_PATH' in os.environ:
base_path = os.environ['TINK_PYTHON_SETUPTOOLS_OVERRIDE_BASE_PATH']
return _patch_with_local_path(workspace_content, base_path)
if 'TINK_PYTHON_SETUPTOOLS_TAGGED_VERSION' in os.environ:
archive_filename = 'v{}.zip'.format(_TINK_VERSION)
archive_prefix = 'tink-{}'.format(_TINK_VERSION)
return _patch_with_http_archive(workspace_content,
archive_filename, archive_prefix)
return _patch_with_http_archive(workspace_content,
'master.zip', 'tink-master')
def _patch_with_local_path(workspace_content, base_path):
"""Replaces the base paths in the local_repository() rules."""
workspace_content = re.sub(r'(?<="tink_cc",\n path = ").*(?=\n)',
base_path + '/cc", # Modified by setup.py',
workspace_content)
workspace_content = re.sub(
r'(?<="tink_cc_awskms",\n path = ").*(?=\n)',
base_path + '/cc/integration/awskms", # Modified by setup.py',
workspace_content)
workspace_content = re.sub(
r'(?<="tink_cc_gcpkms",\n path = ").*(?=\n)',
base_path + '/cc/integration/gcpkms", # Modified by setup.py',
workspace_content)
return workspace_content
def _patch_with_http_archive(workspace_content, filename, prefix):
"""Replaces local_repository() rules with http_archive() rules."""
workspace_lines = workspace_content.split('\n')
http_archive_load = ('load("@bazel_tools//tools/build_defs/repo:http.bzl", '
'"http_archive")')
workspace_content = '\n'.join([workspace_lines[0], http_archive_load] +
workspace_lines[1:])
cc = textwrap.dedent(
'''\
local_repository(
name = "tink_cc",
path = "../cc",
)
''')
cc_awskms = textwrap.dedent(
'''\
local_repository(
name = "tink_cc_awskms",
path = "../cc/integration/awskms",
)
''')
cc_gcpkms = textwrap.dedent(
'''\
local_repository(
name = "tink_cc_gcpkms",
path = "../cc/integration/gcpkms",
)
''')
cc_patched = textwrap.dedent(
'''\
# Modified by setup.py
http_archive(
name = "tink_cc",
urls = ["https://github.com/google/tink/archive/{}"],
strip_prefix = "{}/cc",
)
'''.format(filename, prefix))
cc_awskms_patched = textwrap.dedent(
'''\
# Modified by setup.py
http_archive(
name = "tink_cc_awskms",
urls = ["https://github.com/google/tink/archive/{}"],
strip_prefix = "{}/cc/integration/awskms",
)
'''.format(filename, prefix))
cc_gcpkms_patched = textwrap.dedent(
'''\
# Modified by setup.py
http_archive(
name = "tink_cc_gcpkms",
urls = ["https://github.com/google/tink/archive/{}"],
strip_prefix = "{}/cc/integration/gcpkms",
)
'''.format(filename, prefix))
workspace_content = workspace_content.replace(cc, cc_patched)
workspace_content = workspace_content.replace(cc_awskms, cc_awskms_patched)
workspace_content = workspace_content.replace(cc_gcpkms, cc_gcpkms_patched)
return workspace_content
class BazelExtension(setuptools.Extension):
"""A C/C++ extension that is defined as a Bazel BUILD target."""
def __init__(self, bazel_target, target_name=''):
self.bazel_target = bazel_target
self.relpath, self.target_name = (
posixpath.relpath(bazel_target, '//').split(':'))
if target_name:
self.target_name = target_name
ext_name = os.path.join(
self.relpath.replace(posixpath.sep, os.path.sep), self.target_name)
setuptools.Extension.__init__(self, ext_name, sources=[])
class BuildBazelExtension(build_ext.build_ext):
"""A command that runs Bazel to build a C/C++ extension."""
def __init__(self, dist):
super(BuildBazelExtension, self).__init__(dist)
self.bazel_command = _get_bazel_command()
def run(self):
for ext in self.extensions:
self.bazel_build(ext)
build_ext.build_ext.run(self)
def bazel_build(self, ext):
# Change WORKSPACE to include tink_cc from an archive
with open('WORKSPACE', 'r') as f:
workspace_contents = f.read()
with open('WORKSPACE', 'w') as f:
f.write(_patch_workspace(workspace_contents))
if not os.path.exists(self.build_temp):
os.makedirs(self.build_temp)
# Ensure no artifacts from previous builds are reused (i.e. from builds
# using a different Python version).
bazel_clean_argv = [self.bazel_command, 'clean', '--expunge']
self.spawn(bazel_clean_argv)
bazel_argv = [
self.bazel_command, 'build', ext.bazel_target,
'--compilation_mode=' + ('dbg' if self.debug else 'opt'),
'--incompatible_linkopts_to_linklibs'
# TODO(https://github.com/bazelbuild/bazel/issues/9254): Remove linkopts
# flag when issue is fixed.
]
self.spawn(bazel_argv)
ext_bazel_bin_path = os.path.join('bazel-bin', ext.relpath,
ext.target_name + '.so')
ext_dest_path = self.get_ext_fullpath(ext.name)
ext_dest_dir = os.path.dirname(ext_dest_path)
if not os.path.exists(ext_dest_dir):
os.makedirs(ext_dest_dir)
shutil.copyfile(ext_bazel_bin_path, ext_dest_path)
def main():
# Generate compiled protocol buffers.
protoc_command = _get_protoc_command()
for proto_file in glob.glob('tink/proto/*.proto'):
_generate_proto(protoc_command, proto_file)
setuptools.setup(
name='tink',
version=_TINK_VERSION,
url='https://github.com/google/tink',
description='A multi-language, cross-platform library that provides '
'cryptographic APIs that are secure, easy to use correctly, '
'and hard(er) to misuse.',
author='Tink Developers',
author_email='tink-users@googlegroups.com',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
# Contained modules and scripts.
packages=setuptools.find_packages(),
install_requires=_parse_requirements('requirements.txt'),
cmdclass=dict(build_ext=BuildBazelExtension),
ext_modules=[
BazelExtension('//tink/cc/pybind:tink_bindings'),
],
zip_safe=False,
# PyPI package information.
classifiers=[
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries',
],
license='Apache 2.0',
keywords='tink cryptography',
)
if __name__ == '__main__':
main()