meson/mesonbuild/minit.py

185 lines
7.4 KiB
Python
Raw Normal View History

# 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
2020-02-20 11:02:58 +08:00
from enum import Enum
2020-02-20 01:39:49 +08:00
import subprocess
import shutil
2020-03-02 07:00:29 +08:00
import sys
import os
2020-02-20 01:39:49 +08:00
import re
from glob import glob
from mesonbuild import mesonlib
from mesonbuild.environment import detect_ninja
2020-03-10 02:44:05 +08:00
from mesonbuild.templates.samplefactory import sameple_generator
import typing as T
if T.TYPE_CHECKING:
import argparse
2017-12-23 03:01:02 +08:00
2020-02-03 09:16:32 +08:00
'''
2020-02-20 01:39:49 +08:00
we currently have one meson template at this time.
2020-02-03 09:16:32 +08:00
'''
from mesonbuild.templates.mesontemplates import create_meson_build
2020-02-25 03:34:48 +08:00
FORTRAN_SUFFIXES = {'.f', '.for', '.F', '.f90', '.F90'}
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'}
DEFAULT_PROJECT = 'executable'
DEFAULT_VERSION = '0.1'
2020-02-20 11:02:58 +08:00
class DEFAULT_TYPES(Enum):
EXE = 'executable'
LIB = 'library'
2017-12-28 05:40:15 +08:00
2020-02-20 01:39:49 +08:00
INFO_MESSAGE = '''Sample project created. To build it run the
following commands:
meson setup builddir
meson compile -C builddir
'''
2020-02-20 01:39:49 +08:00
def create_sample(options: 'argparse.Namespace') -> None:
2020-02-03 09:16:32 +08:00
'''
Based on what arguments are passed we check for a match in language
then check for project type and create new Meson samples project.
'''
2020-03-10 02:44:05 +08:00
sample_gen = sameple_generator(options)
if options.type == DEFAULT_TYPES['EXE'].value:
sample_gen.create_executable()
elif options.type == DEFAULT_TYPES['LIB'].value:
sample_gen.create_library()
2017-12-23 03:01:02 +08:00
else:
2020-03-10 02:44:05 +08:00
raise RuntimeError('Unreachable code')
2020-02-20 01:39:49 +08:00
print(INFO_MESSAGE)
def autodetect_options(options: 'argparse.Namespace', sample: bool = False) -> None:
2020-02-03 09:16:32 +08:00
'''
Here we autodetect options for args not passed in so don't have to
think about it.
'''
if not options.name:
2019-11-03 05:34:58 +08:00
options.name = Path().resolve().stem
if not re.match('[a-zA-Z_][a-zA-Z0-9]*', options.name) and sample:
2021-07-08 12:06:10 +08:00
raise SystemExit(f'Name of current directory "{options.name}" is not usable as a sample project name.\n'
'Specify a project name with --name.')
print(f'Using "{options.name}" (name of current directory) as project name.')
if not options.executable:
options.executable = options.name
2021-07-08 12:06:10 +08:00
print(f'Using "{options.executable}" (project name) as name of executable to build.')
if sample:
# The rest of the autodetection is not applicable to generating sample projects.
return
if not options.srcfiles:
srcfiles = []
2019-11-03 05:34:58 +08:00
for f in (f for f in Path().iterdir() if f.is_file()):
2020-02-20 05:51:07 +08:00
if f.suffix in LANG_SUFFIXES:
srcfiles.append(f)
if not srcfiles:
2019-11-03 05:34:58 +08:00
raise SystemExit('No recognizable source files found.\n'
'Run meson init in an empty directory to create a sample project.')
options.srcfiles = srcfiles
2019-11-03 05:34:58 +08:00
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:
2020-02-03 09:16:32 +08:00
if f.suffix == '.c':
options.language = 'c'
break
2019-11-03 05:34:58 +08:00
if f.suffix in ('.cc', '.cpp'):
options.language = 'cpp'
break
if f.suffix == '.cs':
2020-02-03 09:16:32 +08:00
options.language = 'cs'
break
if f.suffix == '.cu':
options.language = 'cuda'
break
2019-11-03 05:34:58 +08:00
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
2020-02-03 09:16:32 +08:00
if f.suffix == '.mm':
options.language = 'objcpp'
break
if f.suffix == '.java':
options.language = 'java'
break
if not options.language:
2019-11-03 05:34:58 +08:00
raise SystemExit("Can't autodetect language, please specify it with -l.")
print("Detected language: " + options.language)
def add_arguments(parser: 'argparse.ArgumentParser') -> None:
2020-02-03 09:16:32 +08:00
'''
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('-C', dest='wd', action=mesonlib.RealPathAction,
help='directory to cd into before running')
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")
2020-06-10 01:14:57 +08:00
parser.add_argument("-l", "--language", choices=sorted(LANG_SUPPORTED), help="project language. default: autodetected based on source files")
2020-02-20 01:39:49 +08:00
parser.add_argument("-b", "--build", action='store_true', help="build after generation")
parser.add_argument("--builddir", default='build', help="directory for build")
2020-02-03 09:16:32 +08:00
parser.add_argument("-f", "--force", action="store_true", help="force overwrite of existing files and directories.")
parser.add_argument('--type', default=DEFAULT_PROJECT, choices=('executable', 'library'), help=f"project type. default: {DEFAULT_PROJECT} based project")
parser.add_argument('--version', default=DEFAULT_VERSION, help=f"project version. default: {DEFAULT_VERSION}")
def run(options: 'argparse.Namespace') -> int:
2020-02-03 09:16:32 +08:00
'''
Here we generate the new Meson sample project.
'''
2020-03-02 07:00:29 +08:00
if not Path(options.wd).exists():
2020-03-02 07:05:16 +08:00
sys.exit('Project source root directory not found. Run this command in source directory root.')
2020-03-02 07:00:29 +08:00
os.chdir(options.wd)
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)
2019-11-03 05:34:58 +08:00
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:
2019-11-03 05:34:58 +08:00
if Path(options.builddir).is_dir() and options.force:
print('Build directory already exists, deleting it.')
shutil.rmtree(options.builddir)
print('Building...')
cmd = mesonlib.get_meson_command() + [options.builddir]
2019-11-03 05:34:58 +08:00
ret = subprocess.run(cmd)
if ret.returncode:
raise SystemExit
cmd = detect_ninja() + ['-C', options.builddir]
2019-11-03 05:34:58 +08:00
ret = subprocess.run(cmd)
if ret.returncode:
raise SystemExit
return 0