The Meson Build System http://mesonbuild.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

247 lines
10 KiB

# Copyright 2017 The Meson development team
# 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.
"""Code that creates simple startup projects."""
from pathlib import Path
5 years ago
import subprocess
import shutil
import re
from glob import glob
from mesonbuild import mesonlib
from mesonbuild.environment import detect_ninja
5 years ago
from mesonbuild.templates.fortrantemplates import (create_exe_fortran_sample, create_lib_fortran_sample)
from mesonbuild.templates.objcpptemplates import (create_exe_objcpp_sample, create_lib_objcpp_sample)
from mesonbuild.templates.dlangtemplates import (create_exe_d_sample, create_lib_d_sample)
from mesonbuild.templates.rusttemplates import (create_exe_rust_sample, create_lib_rust_sample)
5 years ago
from mesonbuild.templates.javatemplates import (create_exe_java_sample, create_lib_java_sample)
from mesonbuild.templates.cudatemplates import (create_exe_cuda_sample, create_lib_cuda_sample)
from mesonbuild.templates.objctemplates import (create_exe_objc_sample, create_lib_objc_sample)
from mesonbuild.templates.cpptemplates import (create_exe_cpp_sample, create_lib_cpp_sample)
from mesonbuild.templates.cstemplates import (create_exe_cs_sample, create_lib_cs_sample)
from mesonbuild.templates.ctemplates import (create_exe_c_sample, create_lib_c_sample)
'''
5 years ago
we currently have one meson template at this time.
'''
from mesonbuild.templates.mesontemplates import create_meson_build
FORTRAN_SUFFIXES = ['.f', '.for', '.F', '.f90', '.F90']
5 years ago
LANG_SUFFIXES = ['.c', '.cc', '.cpp', '.cs', '.cu', '.d', '.m', '.mm', '.rs', '.java'] + FORTRAN_SUFFIXES
LANG_SUPPORTED = ('c', 'cpp', 'cs', 'cuda', 'd', 'fortran', 'java', 'rust', 'objc', 'objcpp')
TYPE_EXE = 'executable'
TYPE_LIB = 'library'
5 years ago
UNREACHABLE_CODE_ERROR = 'Unreachable code'
5 years ago
INFO_MESSAGE = '''Sample project created. To build it run the
following commands:
meson builddir
ninja -C builddir
'''
5 years ago
def create_sample(options) -> None:
'''
Based on what arguments are passed we check for a match in language
then check for project type and create new Meson samples project.
'''
if options.language == 'c':
5 years ago
if options.type == TYPE_EXE:
create_exe_c_sample(options.name, options.version)
5 years ago
elif options.type == TYPE_LIB:
create_lib_c_sample(options.name, options.version)
else:
5 years ago
raise RuntimeError(UNREACHABLE_CODE_ERROR)
elif options.language == 'cpp':
5 years ago
if options.type == TYPE_EXE:
create_exe_cpp_sample(options.name, options.version)
5 years ago
elif options.type == TYPE_LIB:
create_lib_cpp_sample(options.name, options.version)
else:
5 years ago
raise RuntimeError(UNREACHABLE_CODE_ERROR)
elif options.language == 'cs':
5 years ago
if options.type == TYPE_EXE:
create_exe_cs_sample(options.name, options.version)
5 years ago
elif options.type == TYPE_LIB:
create_lib_cs_sample(options.name, options.version)
else:
5 years ago
raise RuntimeError(UNREACHABLE_CODE_ERROR)
elif options.language == 'cuda':
5 years ago
if options.type == TYPE_EXE:
create_exe_cuda_sample(options.name, options.version)
5 years ago
elif options.type == TYPE_LIB:
create_lib_cuda_sample(options.name, options.version)
else:
5 years ago
raise RuntimeError(UNREACHABLE_CODE_ERROR)
elif options.language == 'd':
5 years ago
if options.type == TYPE_EXE:
create_exe_d_sample(options.name, options.version)
5 years ago
elif options.type == TYPE_LIB:
create_lib_d_sample(options.name, options.version)
else:
5 years ago
raise RuntimeError(UNREACHABLE_CODE_ERROR)
elif options.language == 'fortran':
5 years ago
if options.type == TYPE_EXE:
create_exe_fortran_sample(options.name, options.version)
5 years ago
elif options.type == TYPE_LIB:
create_lib_fortran_sample(options.name, options.version)
else:
5 years ago
raise RuntimeError(UNREACHABLE_CODE_ERROR)
elif options.language == 'rust':
5 years ago
if options.type == TYPE_EXE:
create_exe_rust_sample(options.name, options.version)
5 years ago
elif options.type == TYPE_LIB:
create_lib_rust_sample(options.name, options.version)
else:
5 years ago
raise RuntimeError(UNREACHABLE_CODE_ERROR)
elif options.language == 'objc':
5 years ago
if options.type == TYPE_EXE:
create_exe_objc_sample(options.name, options.version)
5 years ago
elif options.type == TYPE_LIB:
create_lib_objc_sample(options.name, options.version)
else:
5 years ago
raise RuntimeError(UNREACHABLE_CODE_ERROR)
elif options.language == 'objcpp':
5 years ago
if options.type == TYPE_EXE:
create_exe_objcpp_sample(options.name, options.version)
5 years ago
elif options.type == TYPE_LIB:
create_lib_objcpp_sample(options.name, options.version)
else:
5 years ago
raise RuntimeError(UNREACHABLE_CODE_ERROR)
elif options.language == 'java':
5 years ago
if options.type == TYPE_EXE:
create_exe_java_sample(options.name, options.version)
5 years ago
elif options.type == TYPE_LIB:
create_lib_java_sample(options.name, options.version)
else:
5 years ago
raise RuntimeError(UNREACHABLE_CODE_ERROR)
else:
5 years ago
raise RuntimeError(UNREACHABLE_CODE_ERROR)
print(INFO_MESSAGE)
5 years ago
def autodetect_options(options, sample: bool = False) -> None:
'''
Here we autodetect options for args not passed in so don't have to
think about it.
'''
if not options.name:
options.name = Path().resolve().stem
if not re.match('[a-zA-Z_][a-zA-Z0-9]*', options.name) and sample:
raise SystemExit('Name of current directory "{}" is not usable as a sample project name.\n'
'Specify a project name with --name.'.format(options.name))
print('Using "{}" (name of current directory) as project name.'
.format(options.name))
if not options.executable:
options.executable = options.name
print('Using "{}" (project name) as name of executable to build.'
.format(options.executable))
if sample:
# The rest of the autodetection is not applicable to generating sample projects.
return
if not options.srcfiles:
srcfiles = []
for f in (f for f in Path().iterdir() if f.is_file()):
5 years ago
if f.suffix in (LANG_SUFFIXES):
srcfiles.append(f)
if not srcfiles:
raise SystemExit('No recognizable source files found.\n'
'Run meson init in an empty directory to create a sample project.')
options.srcfiles = srcfiles
print("Detected source files: " + ' '.join(map(str, srcfiles)))
options.srcfiles = [Path(f) for f in options.srcfiles]
if not options.language:
for f in options.srcfiles:
if f.suffix == '.c':
options.language = 'c'
break
if f.suffix in ('.cc', '.cpp'):
options.language = 'cpp'
break
if f.suffix in '.cs':
options.language = 'cs'
break
if f.suffix == '.cu':
options.language = 'cuda'
break
if f.suffix == '.d':
options.language = 'd'
break
if f.suffix in FORTRAN_SUFFIXES:
options.language = 'fortran'
break
if f.suffix == '.rs':
options.language = 'rust'
break
if f.suffix == '.m':
options.language = 'objc'
break
if f.suffix == '.mm':
options.language = 'objcpp'
break
if f.suffix == '.java':
options.language = 'java'
break
if not options.language:
raise SystemExit("Can't autodetect language, please specify it with -l.")
print("Detected language: " + options.language)
def add_arguments(parser):
'''
Here we add args for that the user can passed when making a new
Meson project.
'''
parser.add_argument("srcfiles", metavar="sourcefile", nargs="*", help="source files. default: all recognized files in current directory")
parser.add_argument("-n", "--name", help="project name. default: name of current directory")
parser.add_argument("-e", "--executable", help="executable name. default: project name")
parser.add_argument("-d", "--deps", help="dependencies, comma-separated")
5 years ago
parser.add_argument("-l", "--language", choices=LANG_SUPPORTED, help="project language. default: autodetected based on source files")
parser.add_argument("-b", "--build", action='store_true', help="build after generation")
parser.add_argument("--builddir", default='build', help="directory for build")
parser.add_argument("-f", "--force", action="store_true", help="force overwrite of existing files and directories.")
5 years ago
parser.add_argument('--type', default='executable', choices=['executable', 'library'], help="project type. default: executable based project")
parser.add_argument('--version', default='0.1', help="project version. default: 0.1")
def run(options) -> int:
'''
Here we generate the new Meson sample project.
'''
if not glob('*'):
autodetect_options(options, sample=True)
if not options.language:
print('Defaulting to generating a C language project.')
options.language = 'c'
create_sample(options)
else:
autodetect_options(options)
if Path('meson.build').is_file() and not options.force:
raise SystemExit('meson.build already exists. Use --force to overwrite.')
create_meson_build(options)
if options.build:
if Path(options.builddir).is_dir() and options.force:
print('Build directory already exists, deleting it.')
shutil.rmtree(options.builddir)
print('Building...')
cmd = mesonlib.meson_command + [options.builddir]
ret = subprocess.run(cmd)
if ret.returncode:
raise SystemExit
cmd = [detect_ninja(), '-C', options.builddir]
ret = subprocess.run(cmd)
if ret.returncode:
raise SystemExit
return 0