1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 00:42:33 +03:00
semantic/build/common.bzl
2020-07-01 01:30:58 -04:00

155 lines
4.8 KiB
Python

# This file lets us share warnings and such across the project
load(
"@rules_haskell//haskell:defs.bzl",
"haskell_library",
"haskell_test",
)
load(
"@bazel_tools//tools/build_defs/repo:http.bzl",
"http_archive",
)
load(
"@bazel_tools//tools/build_defs/repo:git.bzl",
"new_git_repository",
)
DEVELOPMENT_GHC_FLAGS = ["-O0"]
RELEASE_GHC_FLAGS = ["-O1"]
GHC_FLAGS = [
"-v1",
"-j8",
"-fdiagnostics-color=always",
"-ferror-spans",
"-Weverything",
"-Wno-missing-local-signatures",
"-Wno-missing-import-lists",
"-Wno-implicit-prelude",
"-Wno-safe",
"-Wno-unsafe",
"-Wno-name-shadowing",
"-Wno-monomorphism-restriction",
"-Wno-missed-specialisations",
"-Wno-all-missed-specialisations",
"-Wno-star-is-type",
"-Wno-missing-deriving-strategies",
] + select(
{
"//:release": RELEASE_GHC_FLAGS,
"//:development": DEVELOPMENT_GHC_FLAGS,
"//:debug": DEVELOPMENT_GHC_FLAGS,
},
)
STANDARD_EXECUTABLE_FLAGS = [
"-threaded",
]
# These macros declare new packages.
def tree_sitter_node_types_archive(name, version, sha256, urls = [], nodetypespath = "src/node-types.json"):
"""Create a package for a tree-sitter grammar and export its node-types.json file/test corpus.."""
http_archive(
name = name,
build_file_content = """
package(default_visibility = ["//visibility:public"])
exports_files(glob(["{}"]))
filegroup(name = "corpus", srcs = glob(['**/corpus/*.txt']))
""".format(nodetypespath),
strip_prefix = "{}-{}".format(name, version),
urls = ["https://github.com/tree-sitter/{}/archive/v{}.tar.gz".format(name, version)],
sha256 = sha256,
)
def tree_sitter_node_types_git(name, commit, shallow_since):
"""Create a package pinned off a Git repo. Prefer the node_types_archive call to this."""
new_git_repository(
name = name,
build_file_content = """
exports_files(["src/node-types.json"])
filegroup(name = "corpus", srcs = glob(['**/corpus/*.txt']), visibility = ["//visibility:public"])
""",
commit = commit,
remote = "https://github.com/tree-sitter/{}.git".format(name),
shallow_since = shallow_since,
)
# These macros declare library targets inside the language packages.
def semantic_language_library(language, name, srcs, ts_package = "", nodetypes = "", **kwargs):
"""Create a new library target with dependencies needed for a language-AST project."""
if nodetypes == "":
nodetypes = "@tree-sitter-{}//:src/node-types.json".format(language)
if ts_package == "":
ts_package = language
haskell_library(
name = name,
# We can't use Template Haskell to find out the location of the
# node-types.json files, but we can pass it in as a preprocessor
# directive.
compiler_flags = GHC_FLAGS + [
'-DNODE_TYPES_PATH="../../../../$(rootpath {})"'.format(nodetypes),
],
repl_ghci_args = GHC_FLAGS + [
'-DNODE_TYPES_PATH="../../../../$(rootpath {})"'.format(nodetypes),
],
srcs = srcs,
extra_srcs = [nodetypes, "@tree-sitter-{}//:corpus".format(ts_package)],
deps = [
"//:base",
"//semantic-analysis",
"//semantic-ast",
"//semantic-core",
"//semantic-proto",
"//semantic-scope-graph",
"//semantic-source",
"//semantic-tags",
"@stackage//:aeson",
"@stackage//:algebraic-graphs",
"//:containers",
"@stackage//:fused-effects",
"@stackage//:fused-syntax",
"@stackage//:generic-lens",
"@stackage//:generic-monoid",
"@stackage//:hashable",
"@stackage//:lens",
"@stackage//:pathtype",
"@stackage//:semilattices",
"//:template-haskell",
"//:text",
"@stackage//:tree-sitter",
"@stackage//:tree-sitter-" + language,
],
)
def semantic_language_parsing_test(language, semantic_package = "", ts_package = ""):
if semantic_package == "":
semantic_package = language
if ts_package == "":
ts_package = language
haskell_test(
name = "test",
srcs = ["test/PreciseTest.hs"],
data = ["@tree-sitter-{}//:corpus".format(ts_package)],
tags = ["language-test"],
deps = [
":semantic-{}".format(language),
"//:base",
"//:bytestring",
"//:text",
"//semantic:fixtureshim",
"//semantic-ast",
"@stackage//:bazel-runfiles",
"@stackage//:hedgehog",
"@stackage//:pathtype",
"@stackage//:tasty",
"@stackage//:tasty-hedgehog",
"@stackage//:tasty-hunit",
"@stackage//:tree-sitter-" + semantic_package,
],
)