@shortlink-org/portolan 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +387 -0
- package/catalog/enum_test.go +46 -0
- package/catalog/model.go +932 -0
- package/catalog/roundtrip_test.go +185 -0
- package/catalog/via_test.go +38 -0
- package/cli/portolan.mjs +368 -0
- package/go.mod +14 -0
- package/go.sum +14 -0
- package/index.html +13 -0
- package/internal/commands/cargo.go +154 -0
- package/internal/commands/commands.go +143 -0
- package/internal/commands/commands_test.go +323 -0
- package/internal/commands/gradle.go +77 -0
- package/internal/commands/justfile.go +82 -0
- package/internal/commands/makefile.go +106 -0
- package/internal/commands/maven.go +93 -0
- package/internal/commands/packagejson.go +159 -0
- package/internal/commands/pyproject.go +169 -0
- package/internal/commands/taskfile.go +101 -0
- package/internal/commands/testdata/estate/.cargo/config.toml +7 -0
- package/internal/commands/testdata/estate/Makefile +33 -0
- package/internal/commands/testdata/estate/Taskfile.yml +21 -0
- package/internal/commands/testdata/estate/build.gradle.kts +21 -0
- package/internal/commands/testdata/estate/justfile +20 -0
- package/internal/commands/testdata/estate/package.json +13 -0
- package/internal/commands/testdata/estate/pom.xml +29 -0
- package/internal/commands/testdata/estate/pyproject.toml +27 -0
- package/internal/commands/testdata/estate/xtask/src/main.rs +27 -0
- package/internal/commands/testdata/golden/commands.json +305 -0
- package/internal/gohttp/analyze.go +2500 -0
- package/internal/gohttp/endpoints.go +1067 -0
- package/internal/gohttp/roots.go +320 -0
- package/internal/gohttp/typed.go +143 -0
- package/internal/goscan/constants.go +85 -0
- package/internal/goscan/goscan_test.go +227 -0
- package/internal/goscan/names.go +52 -0
- package/internal/goscan/parse_test.go +11 -0
- package/internal/goscan/source.go +36 -0
- package/internal/goscan/tree.go +155 -0
- package/internal/goscan/types.go +99 -0
- package/internal/wsdl/ids.go +127 -0
- package/internal/wsdl/ids_test.go +21 -0
- package/internal/wsdl/model.go +62 -0
- package/internal/wsdl/parse.go +920 -0
- package/internal/wsdl/parse_test.go +133 -0
- package/package.json +117 -0
- package/plugin/describe.go +107 -0
- package/plugin/describe_test.go +114 -0
- package/plugin/protocol.go +117 -0
- package/plugin/schematest/schematest.go +126 -0
- package/plugins/README.md +1160 -0
- package/plugins/extract-adr/describe.go +19 -0
- package/plugins/extract-adr/describe_test.go +11 -0
- package/plugins/extract-adr/extract.go +153 -0
- package/plugins/extract-adr/extract_test.go +350 -0
- package/plugins/extract-adr/history.go +99 -0
- package/plugins/extract-adr/main.go +65 -0
- package/plugins/extract-adr/options.schema.json +26 -0
- package/plugins/extract-adr/parse.go +642 -0
- package/plugins/extract-adr/parse_test.go +405 -0
- package/plugins/extract-asyncapi/describe.go +19 -0
- package/plugins/extract-asyncapi/describe_test.go +11 -0
- package/plugins/extract-asyncapi/extract.go +315 -0
- package/plugins/extract-asyncapi/extract_test.go +197 -0
- package/plugins/extract-asyncapi/main.go +48 -0
- package/plugins/extract-asyncapi/options.schema.json +26 -0
- package/plugins/extract-asyncapi/spec.go +151 -0
- package/plugins/extract-celery/README.md +169 -0
- package/plugins/extract-celery/extract.py +346 -0
- package/plugins/extract-celery/extract_test.py +192 -0
- package/plugins/extract-celery/main.py +66 -0
- package/plugins/extract-celery/options.py +31 -0
- package/plugins/extract-celery/options.schema.json +31 -0
- package/plugins/extract-celery/producers.py +156 -0
- package/plugins/extract-celery/routes_test.py +106 -0
- package/plugins/extract-commands/describe.go +19 -0
- package/plugins/extract-commands/describe_test.go +11 -0
- package/plugins/extract-commands/extract.go +79 -0
- package/plugins/extract-commands/extract_test.go +92 -0
- package/plugins/extract-commands/main.go +55 -0
- package/plugins/extract-commands/options.schema.json +20 -0
- package/plugins/extract-csr/avro.go +258 -0
- package/plugins/extract-csr/describe.go +19 -0
- package/plugins/extract-csr/describe_test.go +11 -0
- package/plugins/extract-csr/extract.go +338 -0
- package/plugins/extract-csr/extract_test.go +374 -0
- package/plugins/extract-csr/jsonschema.go +343 -0
- package/plugins/extract-csr/lock.go +25 -0
- package/plugins/extract-csr/main.go +84 -0
- package/plugins/extract-csr/options.schema.json +43 -0
- package/plugins/extract-csr/subject.go +102 -0
- package/plugins/extract-django/README.md +386 -0
- package/plugins/extract-django/apps.py +100 -0
- package/plugins/extract-django/auth.py +302 -0
- package/plugins/extract-django/auth_test.py +188 -0
- package/plugins/extract-django/clients.py +121 -0
- package/plugins/extract-django/contracts.py +458 -0
- package/plugins/extract-django/database.py +119 -0
- package/plugins/extract-django/domain.py +318 -0
- package/plugins/extract-django/events.py +86 -0
- package/plugins/extract-django/extract.py +601 -0
- package/plugins/extract-django/extract_test.py +397 -0
- package/plugins/extract-django/flows.py +1278 -0
- package/plugins/extract-django/flows_test.py +338 -0
- package/plugins/extract-django/ids.py +42 -0
- package/plugins/extract-django/ids_test.py +30 -0
- package/plugins/extract-django/lifecycle.py +222 -0
- package/plugins/extract-django/lifecycle_test.py +76 -0
- package/plugins/extract-django/main.py +66 -0
- package/plugins/extract-django/openapi.py +229 -0
- package/plugins/extract-django/openapi_test.py +60 -0
- package/plugins/extract-django/operations.py +96 -0
- package/plugins/extract-django/options.py +61 -0
- package/plugins/extract-django/options.schema.json +126 -0
- package/plugins/extract-django/routing.py +214 -0
- package/plugins/extract-django/routing_test.py +198 -0
- package/plugins/extract-django/serializers.py +558 -0
- package/plugins/extract-django/store.py +434 -0
- package/plugins/extract-django/transport.py +242 -0
- package/plugins/extract-flows/describe.go +19 -0
- package/plugins/extract-flows/describe_test.go +11 -0
- package/plugins/extract-flows/extract.go +91 -0
- package/plugins/extract-flows/main.go +45 -0
- package/plugins/extract-flows/options.schema.json +16 -0
- package/plugins/extract-flows/parse.go +593 -0
- package/plugins/extract-flows/parse_test.go +204 -0
- package/plugins/extract-glossary/describe.go +19 -0
- package/plugins/extract-glossary/describe_test.go +11 -0
- package/plugins/extract-glossary/extract.go +115 -0
- package/plugins/extract-glossary/extract_test.go +220 -0
- package/plugins/extract-glossary/main.go +59 -0
- package/plugins/extract-glossary/options.schema.json +21 -0
- package/plugins/extract-glossary/parse.go +214 -0
- package/plugins/extract-glossary/parse_test.go +203 -0
- package/plugins/extract-go/aggregate.go +214 -0
- package/plugins/extract-go/client.go +409 -0
- package/plugins/extract-go/client_test.go +266 -0
- package/plugins/extract-go/describe.go +19 -0
- package/plugins/extract-go/describe_test.go +11 -0
- package/plugins/extract-go/enum.go +195 -0
- package/plugins/extract-go/enum_test.go +82 -0
- package/plugins/extract-go/event.go +99 -0
- package/plugins/extract-go/extract.go +191 -0
- package/plugins/extract-go/extract_test.go +261 -0
- package/plugins/extract-go/flow.go +1441 -0
- package/plugins/extract-go/flow_test.go +609 -0
- package/plugins/extract-go/httpclient.go +174 -0
- package/plugins/extract-go/httpclient_test.go +296 -0
- package/plugins/extract-go/ids.go +92 -0
- package/plugins/extract-go/layout.go +225 -0
- package/plugins/extract-go/layout_test.go +125 -0
- package/plugins/extract-go/lifecycle.go +324 -0
- package/plugins/extract-go/lifecycle_test.go +108 -0
- package/plugins/extract-go/main.go +79 -0
- package/plugins/extract-go/operation.go +157 -0
- package/plugins/extract-go/options.schema.json +66 -0
- package/plugins/extract-go/source.go +316 -0
- package/plugins/extract-go/transport.go +321 -0
- package/plugins/extract-go/transport_test.go +145 -0
- package/plugins/extract-go/wiring.go +434 -0
- package/plugins/extract-go-nats/describe.go +19 -0
- package/plugins/extract-go-nats/describe_test.go +11 -0
- package/plugins/extract-go-nats/extract.go +177 -0
- package/plugins/extract-go-nats/extract_test.go +389 -0
- package/plugins/extract-go-nats/index.go +379 -0
- package/plugins/extract-go-nats/main.go +42 -0
- package/plugins/extract-go-nats/options.schema.json +21 -0
- package/plugins/extract-go-nats/resolve.go +161 -0
- package/plugins/extract-go-nats/sites.go +224 -0
- package/plugins/extract-graphql/describe.go +19 -0
- package/plugins/extract-graphql/describe_test.go +11 -0
- package/plugins/extract-graphql/extract.go +433 -0
- package/plugins/extract-graphql/extract_test.go +256 -0
- package/plugins/extract-graphql/ids.go +49 -0
- package/plugins/extract-graphql/lex.go +237 -0
- package/plugins/extract-graphql/main.go +51 -0
- package/plugins/extract-graphql/options.schema.json +31 -0
- package/plugins/extract-graphql/parse.go +621 -0
- package/plugins/extract-graphql/parse_test.go +122 -0
- package/plugins/extract-http-clients/describe.go +19 -0
- package/plugins/extract-http-clients/describe_test.go +11 -0
- package/plugins/extract-http-clients/extract.go +705 -0
- package/plugins/extract-http-clients/extract_test.go +1263 -0
- package/plugins/extract-http-clients/main.go +42 -0
- package/plugins/extract-http-clients/options.schema.json +33 -0
- package/plugins/extract-java/README.md +190 -0
- package/plugins/extract-java/build/org/portolan/extract/Catalog.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Clients$1.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Clients$2.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Clients$Call.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Clients$Client.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Clients$Route.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Clients.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Domain$Aggregate.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Domain.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Events$Found.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Events.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Extract.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Flows$1.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Flows$Binding.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Flows$Draft.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Flows$Frame.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Flows$Options.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Flows.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Ids.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Json$Reader.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Json.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Lifecycle$1.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Lifecycle$Move.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Lifecycle.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Main.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/OpenApi$Operation.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/OpenApi$Spec.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/OpenApi.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Operations$1.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Operations$UseCase.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Operations.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Proto$Rpc.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Proto$Service.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Proto.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Protocol$Builder.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Protocol$Input.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Protocol$Options.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Protocol.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Source$Project.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Source$Unit.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Source.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Transport$Endpoint.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Transport.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Yaml$Line.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Yaml$Reader.class +0 -0
- package/plugins/extract-java/build/org/portolan/extract/Yaml.class +0 -0
- package/plugins/extract-java/options.schema.json +70 -0
- package/plugins/extract-openapi/describe.go +19 -0
- package/plugins/extract-openapi/describe_test.go +11 -0
- package/plugins/extract-openapi/discover.go +243 -0
- package/plugins/extract-openapi/extract.go +526 -0
- package/plugins/extract-openapi/extract_test.go +545 -0
- package/plugins/extract-openapi/main.go +75 -0
- package/plugins/extract-openapi/options.schema.json +62 -0
- package/plugins/extract-openapi/spec.go +350 -0
- package/plugins/extract-project/README.md +22 -0
- package/plugins/extract-project/describe.go +19 -0
- package/plugins/extract-project/describe_test.go +11 -0
- package/plugins/extract-project/extract.go +221 -0
- package/plugins/extract-project/extract_test.go +109 -0
- package/plugins/extract-project/main.go +41 -0
- package/plugins/extract-project/options.schema.json +48 -0
- package/plugins/extract-proto/ast.go +125 -0
- package/plugins/extract-proto/consumes.go +77 -0
- package/plugins/extract-proto/describe.go +19 -0
- package/plugins/extract-proto/extract.go +293 -0
- package/plugins/extract-proto/extract_test.go +459 -0
- package/plugins/extract-proto/ids.go +89 -0
- package/plugins/extract-proto/ids_test.go +57 -0
- package/plugins/extract-proto/lex.go +285 -0
- package/plugins/extract-proto/main.go +100 -0
- package/plugins/extract-proto/module.go +120 -0
- package/plugins/extract-proto/options.schema.json +51 -0
- package/plugins/extract-proto/parse.go +720 -0
- package/plugins/extract-proto/parse_test.go +307 -0
- package/plugins/extract-proto/provides.go +236 -0
- package/plugins/extract-proto/resolve.go +222 -0
- package/plugins/extract-proto/resolve_test.go +119 -0
- package/plugins/extract-python-kafka/README.md +36 -0
- package/plugins/extract-python-kafka/extract.py +211 -0
- package/plugins/extract-python-kafka/extract_test.py +68 -0
- package/plugins/extract-python-kafka/main.py +59 -0
- package/plugins/extract-python-kafka/options.py +29 -0
- package/plugins/extract-python-kafka/options.schema.json +31 -0
- package/plugins/extract-redis/README.md +11 -0
- package/plugins/extract-redis/describe.go +19 -0
- package/plugins/extract-redis/describe_test.go +11 -0
- package/plugins/extract-redis/extract.go +183 -0
- package/plugins/extract-redis/extract_test.go +168 -0
- package/plugins/extract-redis/keyspaces.go +469 -0
- package/plugins/extract-redis/main.go +44 -0
- package/plugins/extract-redis/options.schema.json +30 -0
- package/plugins/extract-river/describe.go +19 -0
- package/plugins/extract-river/describe_test.go +11 -0
- package/plugins/extract-river/extract.go +507 -0
- package/plugins/extract-river/extract_test.go +132 -0
- package/plugins/extract-river/main.go +42 -0
- package/plugins/extract-river/options.schema.json +21 -0
- package/plugins/extract-rust/Cargo.lock +133 -0
- package/plugins/extract-rust/Cargo.toml +23 -0
- package/plugins/extract-rust/README.md +204 -0
- package/plugins/extract-rust/options.schema.json +65 -0
- package/plugins/extract-rust/rustfmt.toml +1 -0
- package/plugins/extract-sql/ddl.go +893 -0
- package/plugins/extract-sql/ddl_test.go +401 -0
- package/plugins/extract-sql/describe.go +19 -0
- package/plugins/extract-sql/describe_test.go +11 -0
- package/plugins/extract-sql/layout.go +221 -0
- package/plugins/extract-sql/layout_test.go +55 -0
- package/plugins/extract-sql/lineage.go +107 -0
- package/plugins/extract-sql/main.go +141 -0
- package/plugins/extract-sql/maps.go +564 -0
- package/plugins/extract-sql/maps_java.go +117 -0
- package/plugins/extract-sql/maps_rust.go +333 -0
- package/plugins/extract-sql/maps_rust_test.go +70 -0
- package/plugins/extract-sql/maps_test.go +204 -0
- package/plugins/extract-sql/maps_ts.go +398 -0
- package/plugins/extract-sql/maps_ts_test.go +136 -0
- package/plugins/extract-sql/options.schema.json +53 -0
- package/plugins/extract-sql/projection.go +70 -0
- package/plugins/extract-sql/projection_test.go +50 -0
- package/plugins/extract-sql/store.go +420 -0
- package/plugins/extract-sql/store_test.go +233 -0
- package/plugins/extract-sql/view.go +295 -0
- package/plugins/extract-ts/README.md +306 -0
- package/plugins/extract-ts/ast.test.ts +178 -0
- package/plugins/extract-ts/ast.ts +648 -0
- package/plugins/extract-ts/clients.ts +185 -0
- package/plugins/extract-ts/domain.ts +164 -0
- package/plugins/extract-ts/extract.test.ts +208 -0
- package/plugins/extract-ts/extract.ts +200 -0
- package/plugins/extract-ts/flows.ts +783 -0
- package/plugins/extract-ts/graphql.test.ts +73 -0
- package/plugins/extract-ts/graphql.ts +181 -0
- package/plugins/extract-ts/ids.test.ts +21 -0
- package/plugins/extract-ts/ids.ts +52 -0
- package/plugins/extract-ts/lifecycle.ts +138 -0
- package/plugins/extract-ts/main.ts +48 -0
- package/plugins/extract-ts/openapi.test.ts +64 -0
- package/plugins/extract-ts/openapi.ts +99 -0
- package/plugins/extract-ts/operations.ts +93 -0
- package/plugins/extract-ts/options.schema.json +96 -0
- package/plugins/extract-ts/source.test.ts +174 -0
- package/plugins/extract-ts/source.ts +465 -0
- package/plugins/extract-ts/transport.ts +147 -0
- package/plugins/extract-ts/tsconfig.json +13 -0
- package/plugins/extract-ts/wiring.ts +190 -0
- package/plugins/extract-watermill/describe.go +19 -0
- package/plugins/extract-watermill/describe_test.go +11 -0
- package/plugins/extract-watermill/extract.go +1228 -0
- package/plugins/extract-watermill/extract_test.go +234 -0
- package/plugins/extract-watermill/main.go +41 -0
- package/plugins/extract-watermill/options.schema.json +21 -0
- package/plugins/extract-wsdl/describe.go +19 -0
- package/plugins/extract-wsdl/describe_test.go +11 -0
- package/plugins/extract-wsdl/extract.go +148 -0
- package/plugins/extract-wsdl/extract_test.go +45 -0
- package/plugins/extract-wsdl/main.go +53 -0
- package/plugins/extract-wsdl/options.schema.json +59 -0
- package/plugins/fetch-bsr/auth.go +114 -0
- package/plugins/fetch-bsr/bsr.go +240 -0
- package/plugins/fetch-bsr/cache.go +66 -0
- package/plugins/fetch-bsr/describe.go +19 -0
- package/plugins/fetch-bsr/fetch.go +192 -0
- package/plugins/fetch-bsr/fetch_test.go +465 -0
- package/plugins/fetch-bsr/lock.go +71 -0
- package/plugins/fetch-bsr/main.go +117 -0
- package/plugins/fetch-bsr/options.schema.json +42 -0
- package/plugins/fetch-csr/auth.go +95 -0
- package/plugins/fetch-csr/cache.go +69 -0
- package/plugins/fetch-csr/describe.go +19 -0
- package/plugins/fetch-csr/describe_test.go +11 -0
- package/plugins/fetch-csr/fetch.go +254 -0
- package/plugins/fetch-csr/fetch_test.go +494 -0
- package/plugins/fetch-csr/lock.go +95 -0
- package/plugins/fetch-csr/main.go +122 -0
- package/plugins/fetch-csr/options.schema.json +42 -0
- package/plugins/fetch-csr/registry.go +209 -0
- package/plugins/fetch-git/cache.go +65 -0
- package/plugins/fetch-git/describe.go +19 -0
- package/plugins/fetch-git/describe_test.go +11 -0
- package/plugins/fetch-git/fetch.go +181 -0
- package/plugins/fetch-git/fetch_test.go +332 -0
- package/plugins/fetch-git/git.go +169 -0
- package/plugins/fetch-git/lock.go +72 -0
- package/plugins/fetch-git/main.go +127 -0
- package/plugins/fetch-git/offline.go +39 -0
- package/plugins/fetch-git/options.schema.json +42 -0
- package/plugins/fetch-git/pin.go +90 -0
- package/plugins/fetch-git/pin_test.go +74 -0
- package/plugins/gen-backstage/describe.go +17 -0
- package/plugins/gen-backstage/main.go +22 -0
- package/plugins/gen-backstage/options.schema.json +30 -0
- package/plugins/gen-backstage/plugin.go +473 -0
- package/plugins/gen-backstage/plugin_test.go +145 -0
- package/plugins/gen-backstage.wasm +0 -0
- package/plugins/gen-markdown/adr.go +162 -0
- package/plugins/gen-markdown/aggregate.go +362 -0
- package/plugins/gen-markdown/canonical.go +93 -0
- package/plugins/gen-markdown/context.go +90 -0
- package/plugins/gen-markdown/coverage_test.go +89 -0
- package/plugins/gen-markdown/describe.go +19 -0
- package/plugins/gen-markdown/describe_test.go +11 -0
- package/plugins/gen-markdown/external.go +71 -0
- package/plugins/gen-markdown/flow.go +277 -0
- package/plugins/gen-markdown/glossary.go +76 -0
- package/plugins/gen-markdown/glossary_test.go +148 -0
- package/plugins/gen-markdown/llms.go +302 -0
- package/plugins/gen-markdown/main.go +22 -0
- package/plugins/gen-markdown/markdown.go +254 -0
- package/plugins/gen-markdown/markdown_test.go +100 -0
- package/plugins/gen-markdown/module.go +107 -0
- package/plugins/gen-markdown/options.schema.json +16 -0
- package/plugins/gen-markdown/plugin.go +39 -0
- package/plugins/gen-markdown/quality_test.go +176 -0
- package/plugins/gen-markdown/redis_test.go +38 -0
- package/plugins/gen-markdown/render.go +344 -0
- package/plugins/gen-markdown/render_test.go +186 -0
- package/plugins/gen-markdown/service.go +456 -0
- package/plugins/gen-markdown/source.go +177 -0
- package/plugins/gen-markdown/store.go +201 -0
- package/plugins/gen-markdown.wasm +0 -0
- package/plugins/gen-mermaid/describe.go +17 -0
- package/plugins/gen-mermaid/main.go +22 -0
- package/plugins/gen-mermaid/options.schema.json +10 -0
- package/plugins/gen-mermaid/plugin.go +104 -0
- package/plugins/gen-mermaid/plugin_test.go +33 -0
- package/plugins/gen-mermaid.wasm +0 -0
- package/plugins/openapi/ids.go +261 -0
- package/plugins/openapi/ids_test.go +98 -0
- package/plugins/pyplugin/catalog.py +209 -0
- package/plugins/pyplugin/celery_conf.py +436 -0
- package/plugins/pyplugin/celery_tasks.py +76 -0
- package/plugins/pyplugin/kafka.py +570 -0
- package/plugins/pyplugin/names.py +38 -0
- package/plugins/pyplugin/protocol.py +79 -0
- package/plugins/pyplugin/source.py +285 -0
- package/plugins/verify-codeowners/describe.go +19 -0
- package/plugins/verify-codeowners/describe_test.go +11 -0
- package/plugins/verify-codeowners/main.go +75 -0
- package/plugins/verify-codeowners/match.go +85 -0
- package/plugins/verify-codeowners/match_test.go +47 -0
- package/plugins/verify-codeowners/options.schema.json +15 -0
- package/plugins/verify-codeowners/owners.go +164 -0
- package/plugins/verify-codeowners/owners_test.go +225 -0
- package/plugins/verify-codeowners/parse.go +90 -0
- package/plugins/verify-codeowners/parse_test.go +62 -0
- package/plugins/verify-otel/describe.go +19 -0
- package/plugins/verify-otel/describe_test.go +11 -0
- package/plugins/verify-otel/main.go +53 -0
- package/plugins/verify-otel/match.go +336 -0
- package/plugins/verify-otel/options.schema.json +30 -0
- package/plugins/verify-otel/otlp.go +200 -0
- package/plugins/verify-otel/verify.go +734 -0
- package/plugins/verify-otel/verify_test.go +460 -0
- package/portolan.json +1073 -0
- package/public/favicon.svg +12 -0
- package/schema/portolan.schema.json +2558 -0
- package/scripts/README.md +53 -0
- package/scripts/build-report.mjs +60 -0
- package/scripts/build-report.test.mjs +44 -0
- package/scripts/builtin-plugins.mjs +49 -0
- package/scripts/catalog-sources.mjs +67 -0
- package/scripts/diff.mjs +315 -0
- package/scripts/diff.test.mjs +151 -0
- package/scripts/forge-comment.mjs +144 -0
- package/scripts/forge-comment.test.mjs +151 -0
- package/scripts/forge-release.mjs +138 -0
- package/scripts/forge-release.test.mjs +106 -0
- package/scripts/forge.mjs +61 -0
- package/scripts/gen-likec4.mjs +854 -0
- package/scripts/gen-likec4.test.mjs +258 -0
- package/scripts/gen.mjs +603 -0
- package/scripts/generated-docs.test.mjs +66 -0
- package/scripts/local-api.mjs +1192 -0
- package/scripts/local-api.test.mjs +387 -0
- package/scripts/manifest.mjs +214 -0
- package/scripts/manifest.test.mjs +148 -0
- package/scripts/output-path.mjs +79 -0
- package/scripts/output-path.test.mjs +45 -0
- package/scripts/package-smoke.mjs +37 -0
- package/scripts/plugin-host.mjs +419 -0
- package/scripts/plugin-host.test.mjs +109 -0
- package/scripts/plugin-wasm-worker.mjs +34 -0
- package/scripts/run-builtin.mjs +81 -0
- package/scripts/schema.mjs +357 -0
- package/scripts/site-docs.mjs +295 -0
- package/scripts/site-docs.test.mjs +181 -0
- package/scripts/vendor-lock.mjs +58 -0
- package/scripts/vendor-lock.test.mjs +69 -0
- package/src/README.md +38 -0
- package/src/app/App.tsx +448 -0
- package/src/app/BranchPicker.test.ts +46 -0
- package/src/app/BranchPicker.tsx +153 -0
- package/src/app/Breadcrumbs.test.ts +38 -0
- package/src/app/Breadcrumbs.tsx +223 -0
- package/src/app/BuildStamp.tsx +146 -0
- package/src/app/CommandPalette.tsx +292 -0
- package/src/app/HashScroll.tsx +45 -0
- package/src/app/Sidebar.tsx +1742 -0
- package/src/app/TopBar.tsx +393 -0
- package/src/app/density.tsx +64 -0
- package/src/app/forge-access.test.ts +27 -0
- package/src/app/forge-access.tsx +80 -0
- package/src/app/panels.tsx +141 -0
- package/src/app/pins.tsx +242 -0
- package/src/app/query-client.ts +24 -0
- package/src/app/responsive.ts +55 -0
- package/src/app/shortcuts.test.ts +39 -0
- package/src/app/shortcuts.tsx +282 -0
- package/src/app/theme.tsx +51 -0
- package/src/app/title.test.ts +14 -0
- package/src/app/title.ts +30 -0
- package/src/app/toast.tsx +59 -0
- package/src/app/tree-keys.test.ts +80 -0
- package/src/app/tree-keys.ts +87 -0
- package/src/app/ui-store.ts +52 -0
- package/src/catalog-error.test.ts +105 -0
- package/src/catalog-profile.test.ts +59 -0
- package/src/catalog-profile.ts +101 -0
- package/src/catalog-stores.test.ts +431 -0
- package/src/catalog.test.ts +1215 -0
- package/src/catalog.ts +3125 -0
- package/src/chat/Cards.tsx +408 -0
- package/src/chat/ChatPanel.tsx +79 -0
- package/src/chat/ChatSettings.tsx +219 -0
- package/src/chat/Composer.tsx +99 -0
- package/src/chat/Conversation.tsx +281 -0
- package/src/chat/Header.tsx +46 -0
- package/src/chat/Message.tsx +49 -0
- package/src/chat/Notice.tsx +195 -0
- package/src/chat/Starter.tsx +67 -0
- package/src/chat/Steps.tsx +45 -0
- package/src/chat/Waiting.tsx +87 -0
- package/src/chat/flags.test.ts +59 -0
- package/src/chat/flags.ts +155 -0
- package/src/chat/linkify.test.ts +30 -0
- package/src/chat/linkify.ts +45 -0
- package/src/chat/prefs.ts +56 -0
- package/src/chat/prompt.test.ts +43 -0
- package/src/chat/prompt.ts +157 -0
- package/src/chat/store.ts +35 -0
- package/src/chat/tools.ts +58 -0
- package/src/chat/transport.ts +70 -0
- package/src/components/AdrRow.tsx +29 -0
- package/src/components/AnchorLink.tsx +67 -0
- package/src/components/ApiReference.tsx +134 -0
- package/src/components/AsyncApiReference.tsx +120 -0
- package/src/components/CatalogStamp.tsx +155 -0
- package/src/components/ChannelRows.tsx +132 -0
- package/src/components/CommandRows.tsx +139 -0
- package/src/components/DiagramSkeleton.tsx +71 -0
- package/src/components/EditorLink.tsx +85 -0
- package/src/components/FieldTree.tsx +305 -0
- package/src/components/FlowTrigger.tsx +34 -0
- package/src/components/Ident.tsx +89 -0
- package/src/components/Integrations.tsx +243 -0
- package/src/components/LifecycleDiagram.tsx +110 -0
- package/src/components/MachineDocs.tsx +42 -0
- package/src/components/Markdown.tsx +173 -0
- package/src/components/MarkdownTable.tsx +206 -0
- package/src/components/Mermaid.tsx +211 -0
- package/src/components/MethodRows.tsx +309 -0
- package/src/components/Overlay.tsx +125 -0
- package/src/components/PageHeader.tsx +189 -0
- package/src/components/RowActions.tsx +97 -0
- package/src/components/SchemaDocument.tsx +89 -0
- package/src/components/Select.tsx +126 -0
- package/src/components/ShapeRows.tsx +118 -0
- package/src/components/SourceDoc.tsx +82 -0
- package/src/components/SourcePreview.tsx +441 -0
- package/src/components/TabRow.tsx +182 -0
- package/src/components/TechIcon.tsx +34 -0
- package/src/components/Toc.tsx +132 -0
- package/src/components/WhatLinksHere.tsx +273 -0
- package/src/components/WsdlReference.tsx +84 -0
- package/src/components/ddd-icons.tsx +107 -0
- package/src/components/kind.tsx +157 -0
- package/src/components/logo.tsx +61 -0
- package/src/components/primitives.tsx +264 -0
- package/src/data.test.ts +18 -0
- package/src/data.ts +202 -0
- package/src/enrich.test.ts +1150 -0
- package/src/enrich.ts +672 -0
- package/src/er/ErCanvas.tsx +533 -0
- package/src/er/RedisSchema.tsx +74 -0
- package/src/er/RelationCard.tsx +267 -0
- package/src/er/StoreHeader.tsx +155 -0
- package/src/er/TableNode.tsx +84 -0
- package/src/er/ViewNode.tsx +83 -0
- package/src/er/layout.test.ts +115 -0
- package/src/er/layout.ts +77 -0
- package/src/er/lineage.test.ts +140 -0
- package/src/er/lineage.ts +107 -0
- package/src/er/markers.tsx +79 -0
- package/src/er/spec.test.ts +344 -0
- package/src/er/spec.ts +426 -0
- package/src/flow/ChainList.tsx +162 -0
- package/src/flow/FlowTable.tsx +123 -0
- package/src/flow/FlowToolbar.tsx +372 -0
- package/src/flow/StepDetail.tsx +380 -0
- package/src/flow/StepRail.tsx +428 -0
- package/src/flow/answers.test.ts +50 -0
- package/src/flow/answers.ts +58 -0
- package/src/flow/chain.test.ts +383 -0
- package/src/flow/chain.ts +353 -0
- package/src/flow/chapters.test.ts +185 -0
- package/src/flow/chapters.ts +225 -0
- package/src/flow/continues.test.ts +102 -0
- package/src/flow/continues.ts +65 -0
- package/src/flow/cross-context.test.ts +97 -0
- package/src/flow/cross-context.ts +35 -0
- package/src/flow/mermaid.test.ts +22 -0
- package/src/flow/mermaid.ts +141 -0
- package/src/flow/outline.test.ts +212 -0
- package/src/flow/outline.ts +170 -0
- package/src/flow/paths.test.ts +129 -0
- package/src/flow/paths.ts +147 -0
- package/src/flow/prefs.test.ts +80 -0
- package/src/flow/prefs.ts +104 -0
- package/src/graph/DependencyGraph.tsx +283 -0
- package/src/graph/DependencyNodes.tsx +162 -0
- package/src/graph/EdgeLabel.tsx +61 -0
- package/src/graph/FocusedEventGraph.tsx +211 -0
- package/src/graph/GraphToolbar.tsx +187 -0
- package/src/graph/RoutedEdge.tsx +80 -0
- package/src/graph/dependency-layout.test.ts +360 -0
- package/src/graph/dependency-layout.ts +444 -0
- package/src/graph/elk.test.ts +70 -0
- package/src/graph/elk.ts +287 -0
- package/src/graph/nodes.tsx +97 -0
- package/src/graph/theme.ts +81 -0
- package/src/graph/useElkFlow.ts +125 -0
- package/src/index.css +1547 -0
- package/src/language/InLanguage.tsx +40 -0
- package/src/language/TermCard.tsx +132 -0
- package/src/language/cards.test.ts +114 -0
- package/src/language/cards.ts +111 -0
- package/src/lib/admonition.test.ts +49 -0
- package/src/lib/admonition.ts +48 -0
- package/src/lib/adr.test.ts +131 -0
- package/src/lib/adr.ts +68 -0
- package/src/lib/api.test.ts +122 -0
- package/src/lib/api.ts +135 -0
- package/src/lib/backlinks.test.ts +330 -0
- package/src/lib/backlinks.ts +567 -0
- package/src/lib/branch-compare.ts +16 -0
- package/src/lib/build-info.test.ts +76 -0
- package/src/lib/build-info.ts +80 -0
- package/src/lib/catalog-diff.test.ts +275 -0
- package/src/lib/catalog-diff.ts +655 -0
- package/src/lib/clipboard.ts +43 -0
- package/src/lib/comparison-memory.test.ts +40 -0
- package/src/lib/comparison-memory.ts +39 -0
- package/src/lib/context-color.ts +27 -0
- package/src/lib/context-map.test.ts +148 -0
- package/src/lib/context-map.ts +399 -0
- package/src/lib/data-model.test.ts +245 -0
- package/src/lib/data-model.ts +399 -0
- package/src/lib/data-problems.test.ts +178 -0
- package/src/lib/data-problems.ts +314 -0
- package/src/lib/derive.test.ts +251 -0
- package/src/lib/derive.ts +515 -0
- package/src/lib/editor-link.test.ts +125 -0
- package/src/lib/editor-link.ts +96 -0
- package/src/lib/editor-prefs.ts +27 -0
- package/src/lib/event-graph.test.ts +237 -0
- package/src/lib/event-graph.ts +327 -0
- package/src/lib/export-canvas.ts +37 -0
- package/src/lib/export-file.test.ts +30 -0
- package/src/lib/export-file.ts +20 -0
- package/src/lib/flow-tree.test.ts +177 -0
- package/src/lib/flow-tree.ts +160 -0
- package/src/lib/forge-refs.test.ts +50 -0
- package/src/lib/forge-refs.ts +60 -0
- package/src/lib/format.test.ts +35 -0
- package/src/lib/format.ts +64 -0
- package/src/lib/github-catalog.test.ts +301 -0
- package/src/lib/github-catalog.ts +610 -0
- package/src/lib/integrations.test.ts +119 -0
- package/src/lib/integrations.ts +133 -0
- package/src/lib/kinds.test.ts +91 -0
- package/src/lib/kinds.ts +204 -0
- package/src/lib/lifecycle.test.ts +93 -0
- package/src/lib/lifecycle.ts +165 -0
- package/src/lib/local-api.ts +194 -0
- package/src/lib/motion-features.ts +11 -0
- package/src/lib/motion.test.ts +120 -0
- package/src/lib/motion.tsx +269 -0
- package/src/lib/palette-recent.test.ts +80 -0
- package/src/lib/palette-recent.ts +90 -0
- package/src/lib/palette.test.ts +365 -0
- package/src/lib/palette.ts +593 -0
- package/src/lib/pins.test.ts +139 -0
- package/src/lib/pins.ts +130 -0
- package/src/lib/problems.test.ts +112 -0
- package/src/lib/project-preview.ts +5 -0
- package/src/lib/proto-problems.test.ts +121 -0
- package/src/lib/proto-problems.ts +65 -0
- package/src/lib/queries.test.ts +113 -0
- package/src/lib/queries.ts +131 -0
- package/src/lib/registry.test.ts +219 -0
- package/src/lib/registry.ts +208 -0
- package/src/lib/scenarios.ts +547 -0
- package/src/lib/setup-info.test.ts +199 -0
- package/src/lib/setup-info.ts +415 -0
- package/src/lib/shape.test.ts +289 -0
- package/src/lib/shape.ts +454 -0
- package/src/lib/sidebar-prefs.test.ts +32 -0
- package/src/lib/sidebar-prefs.ts +75 -0
- package/src/lib/source-code.test.ts +159 -0
- package/src/lib/source-code.ts +286 -0
- package/src/lib/source-doc.test.ts +131 -0
- package/src/lib/source-doc.ts +103 -0
- package/src/lib/source-highlight.test.ts +29 -0
- package/src/lib/source-highlight.ts +24 -0
- package/src/lib/source-link.test.ts +153 -0
- package/src/lib/source-link.ts +201 -0
- package/src/lib/spec-files.test.ts +24 -0
- package/src/lib/spec-files.ts +23 -0
- package/src/lib/table-directive.test.ts +139 -0
- package/src/lib/table-directive.ts +106 -0
- package/src/lib/tech.test.ts +120 -0
- package/src/lib/tech.ts +421 -0
- package/src/lib/terms.test.ts +67 -0
- package/src/lib/terms.ts +179 -0
- package/src/lib/wire-problems.test.ts +263 -0
- package/src/lib/wire-problems.ts +281 -0
- package/src/likec4/C4View.tsx +55 -0
- package/src/likec4/CanvasBridge.tsx +187 -0
- package/src/likec4/FlowView.tsx +235 -0
- package/src/likec4/InteractiveView.tsx +144 -0
- package/src/likec4/canvas-viewport.test.ts +149 -0
- package/src/likec4/canvas-viewport.ts +135 -0
- package/src/likec4/flow-edges.test.ts +51 -0
- package/src/likec4/flow-edges.ts +89 -0
- package/src/likec4/frame-theme.test.ts +76 -0
- package/src/likec4/frame-theme.ts +101 -0
- package/src/likec4/highlight-css.test.ts +49 -0
- package/src/likec4/highlight-css.ts +52 -0
- package/src/likec4/ids.test.ts +151 -0
- package/src/likec4/ids.ts +115 -0
- package/src/likec4/levels.tsx +70 -0
- package/src/likec4/mapping.test.ts +66 -0
- package/src/likec4/mapping.ts +54 -0
- package/src/likec4/reserved.json +141 -0
- package/src/likec4/view-index.ts +78 -0
- package/src/main.tsx +13 -0
- package/src/map/ContextMapGraph.tsx +274 -0
- package/src/map/ContextNode.tsx +70 -0
- package/src/map/FloatingEdge.tsx +86 -0
- package/src/merge.test.ts +1038 -0
- package/src/merge.ts +1004 -0
- package/src/pages/AdrDetail.tsx +242 -0
- package/src/pages/AdrIndex.tsx +114 -0
- package/src/pages/AggregatePage.tsx +727 -0
- package/src/pages/BlockPage.tsx +478 -0
- package/src/pages/CatalogFailure.tsx +111 -0
- package/src/pages/Changes.tsx +313 -0
- package/src/pages/ContextMap.tsx +534 -0
- package/src/pages/ContextPage.tsx +346 -0
- package/src/pages/EnumPage.tsx +282 -0
- package/src/pages/EventPage.tsx +686 -0
- package/src/pages/ExternalPage.tsx +204 -0
- package/src/pages/FlowDetail.tsx +663 -0
- package/src/pages/FlowIndex.tsx +303 -0
- package/src/pages/GraphPage.tsx +217 -0
- package/src/pages/Language.tsx +257 -0
- package/src/pages/ModulePage.tsx +366 -0
- package/src/pages/NotFound.tsx +54 -0
- package/src/pages/Overview.tsx +344 -0
- package/src/pages/Problems.tsx +360 -0
- package/src/pages/RegistryIndex.tsx +118 -0
- package/src/pages/ServicePage.tsx +746 -0
- package/src/pages/Settings.tsx +975 -0
- package/src/pages/StorePage.tsx +114 -0
- package/src/peek/PeekCard.test.ts +35 -0
- package/src/peek/PeekCard.tsx +118 -0
- package/src/peek/PeekLayer.tsx +147 -0
- package/src/peek/model.test.ts +156 -0
- package/src/peek/model.ts +253 -0
- package/src/routes.test.ts +222 -0
- package/src/routes.ts +449 -0
- package/src/selection/DetailPanel.tsx +1407 -0
- package/src/selection/hash.test.ts +73 -0
- package/src/selection/hash.ts +58 -0
- package/src/selection/model.test.ts +199 -0
- package/src/selection/model.ts +473 -0
- package/src/selection/pages.test.ts +115 -0
- package/src/selection/pages.ts +268 -0
- package/src/selection/store.test.ts +62 -0
- package/src/selection/store.ts +46 -0
- package/src/selection/sync.tsx +99 -0
- package/src/table/ColumnsMenu.tsx +72 -0
- package/src/table/DataTable.tsx +780 -0
- package/src/table/Facets.tsx +54 -0
- package/src/table/GroupMenu.tsx +69 -0
- package/src/table/Toolbar.tsx +190 -0
- package/src/table/cells.tsx +117 -0
- package/src/table/compare.test.ts +117 -0
- package/src/table/compare.ts +196 -0
- package/src/table/export.test.ts +88 -0
- package/src/table/export.ts +66 -0
- package/src/table/facet-groups.test.ts +74 -0
- package/src/table/facet-groups.ts +56 -0
- package/src/table/grouping.test.ts +84 -0
- package/src/table/grouping.ts +82 -0
- package/src/table/infer.test.ts +57 -0
- package/src/table/infer.ts +50 -0
- package/src/table/persist.test.ts +76 -0
- package/src/table/persist.ts +112 -0
- package/src/table/sort-url.test.ts +75 -0
- package/src/table/sort-url.ts +52 -0
- package/src/table/types.ts +80 -0
- package/src/table/useTableState.ts +220 -0
- package/src/test-catalog.ts +7 -0
- package/src/testing/estate/data__catalog.json +2847 -0
- package/src/testing/estate/data__flows.json +1724 -0
- package/src/testing/estate/examples__auth__portolan__api.json +212 -0
- package/src/testing/estate/examples__auth__portolan__domain.json +1204 -0
- package/src/testing/estate/examples__auth__portolan__glossary.json +226 -0
- package/src/testing/estate/examples__auth__portolan__observed.json +757 -0
- package/src/testing/estate/examples__auth__portolan__stores.json +195 -0
- package/src/testing/estate/examples__shop__cart__portolan__api.json +234 -0
- package/src/testing/estate/examples__shop__cart__portolan__commands.json +86 -0
- package/src/testing/estate/examples__shop__cart__portolan__domain.json +966 -0
- package/src/testing/estate/examples__shop__cart__portolan__observed.json +498 -0
- package/src/testing/estate/examples__shop__cart__portolan__stores.json +208 -0
- package/src/testing/estate/examples__shop__oms__portolan__glossary.json +98 -0
- package/src/testing/estate/examples__shop__oms__portolan__proto.json +186 -0
- package/src/testing/estate.ts +49 -0
- package/src/trail/Trail.tsx +81 -0
- package/src/trail/model.test.ts +157 -0
- package/src/trail/model.ts +189 -0
- package/src/trail/record.tsx +32 -0
- package/src/trail/store.test.ts +66 -0
- package/src/trail/store.ts +102 -0
- package/tsconfig.json +35 -0
- package/vite.config.ts +171 -0
|
@@ -0,0 +1,1228 @@
|
|
|
1
|
+
package main
|
|
2
|
+
|
|
3
|
+
import (
|
|
4
|
+
"encoding/json"
|
|
5
|
+
"fmt"
|
|
6
|
+
"go/ast"
|
|
7
|
+
"go/token"
|
|
8
|
+
"path"
|
|
9
|
+
"reflect"
|
|
10
|
+
"sort"
|
|
11
|
+
"strconv"
|
|
12
|
+
"strings"
|
|
13
|
+
|
|
14
|
+
"github.com/shortlink-org/portolan/catalog"
|
|
15
|
+
"github.com/shortlink-org/portolan/internal/goscan"
|
|
16
|
+
"github.com/shortlink-org/portolan/plugin"
|
|
17
|
+
)
|
|
18
|
+
|
|
19
|
+
const watermillMessageImport = "github.com/ThreeDotsLabs/watermill/message"
|
|
20
|
+
|
|
21
|
+
type goType struct {
|
|
22
|
+
key string
|
|
23
|
+
name string
|
|
24
|
+
doc string
|
|
25
|
+
fields []string
|
|
26
|
+
at goscan.Source
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
type configField struct {
|
|
30
|
+
value string
|
|
31
|
+
env string
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
type function struct {
|
|
35
|
+
key string
|
|
36
|
+
name string
|
|
37
|
+
receiver string
|
|
38
|
+
file *goscan.File
|
|
39
|
+
decl *ast.FuncDecl
|
|
40
|
+
params []string
|
|
41
|
+
types map[string]string
|
|
42
|
+
results []string
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
type topic struct {
|
|
46
|
+
address string
|
|
47
|
+
env string
|
|
48
|
+
expr string
|
|
49
|
+
param int
|
|
50
|
+
at goscan.Source
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
func (t topic) valid() bool { return t.address != "" || t.param >= 0 }
|
|
54
|
+
|
|
55
|
+
type publication struct {
|
|
56
|
+
topic topic
|
|
57
|
+
payload string
|
|
58
|
+
at goscan.Source
|
|
59
|
+
conditions []string
|
|
60
|
+
terminal bool
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
type handler struct {
|
|
64
|
+
name string
|
|
65
|
+
input topic
|
|
66
|
+
inputPayload string
|
|
67
|
+
consumerGroup string
|
|
68
|
+
entrypoint string
|
|
69
|
+
publications []publication
|
|
70
|
+
at goscan.Source
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
type cqrsHandler struct {
|
|
74
|
+
name string
|
|
75
|
+
payload string
|
|
76
|
+
at goscan.Source
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
type channelState struct {
|
|
80
|
+
channel catalog.Channel
|
|
81
|
+
seen map[string]bool
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
type analysisState struct {
|
|
85
|
+
types map[string]string
|
|
86
|
+
strings map[string]topic
|
|
87
|
+
bytesPayload map[string]string
|
|
88
|
+
messages map[string]string
|
|
89
|
+
topicParams map[string]int
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
type analysis struct {
|
|
93
|
+
input string
|
|
94
|
+
publications []publication
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
type pathState struct {
|
|
98
|
+
conditions []string
|
|
99
|
+
publications []int
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
// scanner is the tree, and what Watermill leaves in it: the types and
|
|
103
|
+
// functions, what each function publishes, and the handlers registered on a
|
|
104
|
+
// router or a CQRS processor.
|
|
105
|
+
type scanner struct {
|
|
106
|
+
*goscan.Tree
|
|
107
|
+
types map[string]*goType
|
|
108
|
+
configFields map[string]configField
|
|
109
|
+
functions map[string]*function
|
|
110
|
+
methodResults map[string]string
|
|
111
|
+
methodChoices map[string]map[string]bool
|
|
112
|
+
summaries map[string][]publication
|
|
113
|
+
handlers []handler
|
|
114
|
+
transport string
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
func extract(in plugin.Input, opts Options) (plugin.Response, error) {
|
|
118
|
+
b := &plugin.Builder{}
|
|
119
|
+
tree, err := goscan.Read(in.Root)
|
|
120
|
+
if err != nil {
|
|
121
|
+
return plugin.Response{}, err
|
|
122
|
+
}
|
|
123
|
+
s := &scanner{
|
|
124
|
+
Tree: tree,
|
|
125
|
+
types: map[string]*goType{},
|
|
126
|
+
configFields: map[string]configField{},
|
|
127
|
+
functions: map[string]*function{},
|
|
128
|
+
methodResults: map[string]string{},
|
|
129
|
+
methodChoices: map[string]map[string]bool{},
|
|
130
|
+
summaries: map[string][]publication{},
|
|
131
|
+
}
|
|
132
|
+
for _, file := range s.Files {
|
|
133
|
+
for _, imported := range file.Imports {
|
|
134
|
+
s.detectTransport(imported)
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
s.index(b)
|
|
138
|
+
|
|
139
|
+
serviceID := opts.Context + "." + opts.Service
|
|
140
|
+
channels, flows := s.catalog(serviceID, opts.Context)
|
|
141
|
+
if len(s.handlers) == 0 {
|
|
142
|
+
b.Warn(in.Root, "no Watermill Router.AddHandler or AddNoPublisherHandler declaration was found")
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
fragment := catalog.Catalog{
|
|
146
|
+
GeneratedAt: in.GeneratedAt,
|
|
147
|
+
Commit: in.Commit,
|
|
148
|
+
Contexts: []catalog.BoundedContext{{
|
|
149
|
+
ID: opts.Context,
|
|
150
|
+
Slug: opts.Context,
|
|
151
|
+
Services: []catalog.Service{{
|
|
152
|
+
ID: serviceID,
|
|
153
|
+
Slug: opts.Service,
|
|
154
|
+
Provides: []catalog.RpcService{},
|
|
155
|
+
Consumes: []catalog.RpcCall{},
|
|
156
|
+
Aggregates: []catalog.Aggregate{},
|
|
157
|
+
Channels: channels,
|
|
158
|
+
}},
|
|
159
|
+
}},
|
|
160
|
+
Defs: map[string]catalog.TypeDef{},
|
|
161
|
+
Flows: flows,
|
|
162
|
+
Adrs: []catalog.Adr{},
|
|
163
|
+
}
|
|
164
|
+
encoded, err := json.MarshalIndent(fragment, "", " ")
|
|
165
|
+
if err != nil {
|
|
166
|
+
return plugin.Response{}, err
|
|
167
|
+
}
|
|
168
|
+
b.File(goscan.FirstNonEmpty(opts.Out, "watermill.json"), string(encoded)+"\n")
|
|
169
|
+
return b.Response(), nil
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
func (s *scanner) detectTransport(imported string) {
|
|
173
|
+
switch {
|
|
174
|
+
case strings.Contains(imported, "watermill-kafka"):
|
|
175
|
+
s.transport = "Kafka"
|
|
176
|
+
case strings.Contains(imported, "watermill-nats") && s.transport == "":
|
|
177
|
+
s.transport = "NATS"
|
|
178
|
+
case strings.Contains(imported, "watermill-amqp") && s.transport == "":
|
|
179
|
+
s.transport = "AMQP"
|
|
180
|
+
case strings.Contains(imported, "watermill-sql") && s.transport == "":
|
|
181
|
+
s.transport = "SQL"
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
func (s *scanner) index(b *plugin.Builder) {
|
|
186
|
+
for _, file := range s.Files {
|
|
187
|
+
s.indexDeclarations(file)
|
|
188
|
+
}
|
|
189
|
+
s.finalizeMethodResults()
|
|
190
|
+
for _, fn := range s.functions {
|
|
191
|
+
if fn.decl.Body == nil {
|
|
192
|
+
continue
|
|
193
|
+
}
|
|
194
|
+
state := s.stateFor(fn)
|
|
195
|
+
s.summaries[fn.key] = s.analyzeBlock(fn.decl.Body, fn.file, state, false).publications
|
|
196
|
+
}
|
|
197
|
+
for _, fn := range s.functions {
|
|
198
|
+
if fn.decl.Body != nil {
|
|
199
|
+
s.indexHandlers(fn, b)
|
|
200
|
+
s.indexCQRS(fn, b)
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
func (s *scanner) indexDeclarations(file *goscan.File) {
|
|
206
|
+
for _, decl := range file.Node.Decls {
|
|
207
|
+
switch item := decl.(type) {
|
|
208
|
+
case *ast.GenDecl:
|
|
209
|
+
if item.Tok != token.TYPE {
|
|
210
|
+
continue
|
|
211
|
+
}
|
|
212
|
+
for _, raw := range item.Specs {
|
|
213
|
+
s.indexType(file, item, raw.(*ast.TypeSpec))
|
|
214
|
+
}
|
|
215
|
+
case *ast.FuncDecl:
|
|
216
|
+
s.indexFunction(file, item)
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
func (s *scanner) indexType(file *goscan.File, gen *ast.GenDecl, spec *ast.TypeSpec) {
|
|
222
|
+
key := file.Pkg + "." + spec.Name.Name
|
|
223
|
+
switch body := spec.Type.(type) {
|
|
224
|
+
case *ast.StructType:
|
|
225
|
+
doc := ""
|
|
226
|
+
if spec.Doc != nil {
|
|
227
|
+
doc = strings.TrimSpace(spec.Doc.Text())
|
|
228
|
+
} else if gen.Doc != nil {
|
|
229
|
+
doc = strings.TrimSpace(gen.Doc.Text())
|
|
230
|
+
}
|
|
231
|
+
s.types[key] = &goType{key: key, name: spec.Name.Name, doc: doc, fields: s.FieldsOf(body), at: s.At(spec.Pos())}
|
|
232
|
+
for _, field := range body.Fields.List {
|
|
233
|
+
if field.Tag == nil {
|
|
234
|
+
continue
|
|
235
|
+
}
|
|
236
|
+
tagText, _ := strconv.Unquote(field.Tag.Value)
|
|
237
|
+
tag := reflect.StructTag(tagText)
|
|
238
|
+
for _, name := range field.Names {
|
|
239
|
+
s.configFields[key+"."+name.Name] = configField{value: tag.Get("default"), env: tag.Get("envconfig")}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
case *ast.InterfaceType:
|
|
243
|
+
for _, field := range body.Methods.List {
|
|
244
|
+
fnType, ok := field.Type.(*ast.FuncType)
|
|
245
|
+
if !ok || len(field.Names) == 0 {
|
|
246
|
+
continue
|
|
247
|
+
}
|
|
248
|
+
results := s.resultTypes(fnType.Results, file)
|
|
249
|
+
if len(results) > 0 {
|
|
250
|
+
s.addMethodResult(key, field.Names[0].Name, results[0])
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
func (s *scanner) indexFunction(file *goscan.File, decl *ast.FuncDecl) {
|
|
257
|
+
key := file.Pkg + "." + decl.Name.Name
|
|
258
|
+
receiver := ""
|
|
259
|
+
if decl.Recv != nil && len(decl.Recv.List) > 0 {
|
|
260
|
+
receiver = s.TypeKey(decl.Recv.List[0].Type, file)
|
|
261
|
+
key = receiver + "." + decl.Name.Name
|
|
262
|
+
}
|
|
263
|
+
fn := &function{key: key, name: decl.Name.Name, receiver: receiver, file: file, decl: decl, types: map[string]string{}, results: s.resultTypes(decl.Type.Results, file)}
|
|
264
|
+
if decl.Type.Params != nil {
|
|
265
|
+
for _, field := range decl.Type.Params.List {
|
|
266
|
+
typeKey := s.TypeKey(field.Type, file)
|
|
267
|
+
for _, name := range field.Names {
|
|
268
|
+
fn.params = append(fn.params, name.Name)
|
|
269
|
+
fn.types[name.Name] = typeKey
|
|
270
|
+
}
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
s.functions[key] = fn
|
|
274
|
+
if receiver != "" && len(fn.results) > 0 {
|
|
275
|
+
s.addMethodResult(receiver, fn.name, fn.results[0])
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
func (s *scanner) resultTypes(fields *ast.FieldList, file *goscan.File) []string {
|
|
280
|
+
if fields == nil {
|
|
281
|
+
return nil
|
|
282
|
+
}
|
|
283
|
+
var out []string
|
|
284
|
+
for _, field := range fields.List {
|
|
285
|
+
count := max(1, len(field.Names))
|
|
286
|
+
for range count {
|
|
287
|
+
out = append(out, s.TypeKey(field.Type, file))
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
return out
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
func (s *scanner) addMethodResult(receiver, name, result string) {
|
|
294
|
+
if result == "" {
|
|
295
|
+
return
|
|
296
|
+
}
|
|
297
|
+
for _, key := range []string{receiver + "." + name, name} {
|
|
298
|
+
if s.methodChoices[key] == nil {
|
|
299
|
+
s.methodChoices[key] = map[string]bool{}
|
|
300
|
+
}
|
|
301
|
+
s.methodChoices[key][result] = true
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
func (s *scanner) finalizeMethodResults() {
|
|
306
|
+
for key, choices := range s.methodChoices {
|
|
307
|
+
if len(choices) == 1 {
|
|
308
|
+
for result := range choices {
|
|
309
|
+
s.methodResults[key] = result
|
|
310
|
+
}
|
|
311
|
+
}
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
func (s *scanner) stateFor(fn *function) *analysisState {
|
|
316
|
+
state := &analysisState{types: map[string]string{}, strings: map[string]topic{}, bytesPayload: map[string]string{}, messages: map[string]string{}, topicParams: map[string]int{}}
|
|
317
|
+
for name, kind := range fn.types {
|
|
318
|
+
state.types[name] = kind
|
|
319
|
+
}
|
|
320
|
+
for i, name := range fn.params {
|
|
321
|
+
state.topicParams[name] = i
|
|
322
|
+
}
|
|
323
|
+
return state
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
func cloneState(parent *analysisState) *analysisState {
|
|
327
|
+
state := &analysisState{types: map[string]string{}, strings: map[string]topic{}, bytesPayload: map[string]string{}, messages: map[string]string{}, topicParams: map[string]int{}}
|
|
328
|
+
for key, value := range parent.types {
|
|
329
|
+
state.types[key] = value
|
|
330
|
+
}
|
|
331
|
+
for key, value := range parent.strings {
|
|
332
|
+
state.strings[key] = value
|
|
333
|
+
}
|
|
334
|
+
for key, value := range parent.bytesPayload {
|
|
335
|
+
state.bytesPayload[key] = value
|
|
336
|
+
}
|
|
337
|
+
for key, value := range parent.messages {
|
|
338
|
+
state.messages[key] = value
|
|
339
|
+
}
|
|
340
|
+
for key, value := range parent.topicParams {
|
|
341
|
+
state.topicParams[key] = value
|
|
342
|
+
}
|
|
343
|
+
return state
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
func (s *scanner) collectAssignments(body *ast.BlockStmt, file *goscan.File, state *analysisState) {
|
|
347
|
+
ast.Inspect(body, func(node ast.Node) bool {
|
|
348
|
+
if _, ok := node.(*ast.FuncLit); ok {
|
|
349
|
+
return false
|
|
350
|
+
}
|
|
351
|
+
switch item := node.(type) {
|
|
352
|
+
case *ast.AssignStmt:
|
|
353
|
+
s.assign(item.Lhs, item.Rhs, file, state)
|
|
354
|
+
case *ast.DeclStmt:
|
|
355
|
+
gen, ok := item.Decl.(*ast.GenDecl)
|
|
356
|
+
if ok && gen.Tok == token.VAR {
|
|
357
|
+
for _, raw := range gen.Specs {
|
|
358
|
+
spec := raw.(*ast.ValueSpec)
|
|
359
|
+
lhs := make([]ast.Expr, len(spec.Names))
|
|
360
|
+
for i, name := range spec.Names {
|
|
361
|
+
lhs[i] = name
|
|
362
|
+
}
|
|
363
|
+
s.assign(lhs, spec.Values, file, state)
|
|
364
|
+
if spec.Type != nil {
|
|
365
|
+
for _, name := range spec.Names {
|
|
366
|
+
state.types[name.Name] = s.TypeKey(spec.Type, file)
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
return true
|
|
373
|
+
})
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
func (s *scanner) assign(lhs, rhs []ast.Expr, file *goscan.File, state *analysisState) {
|
|
377
|
+
if len(rhs) == 0 {
|
|
378
|
+
return
|
|
379
|
+
}
|
|
380
|
+
for i, raw := range lhs {
|
|
381
|
+
name, ok := raw.(*ast.Ident)
|
|
382
|
+
if !ok || name.Name == "_" {
|
|
383
|
+
continue
|
|
384
|
+
}
|
|
385
|
+
expr := rhs[min(i, len(rhs)-1)]
|
|
386
|
+
if len(rhs) == 1 && i > 0 {
|
|
387
|
+
continue
|
|
388
|
+
}
|
|
389
|
+
if value := s.topicValue(expr, file, state, map[string]bool{}); value.address != "" {
|
|
390
|
+
state.strings[name.Name] = value
|
|
391
|
+
}
|
|
392
|
+
if kind := s.typeOf(expr, file, state); kind != "" {
|
|
393
|
+
state.types[name.Name] = kind
|
|
394
|
+
}
|
|
395
|
+
if call, ok := goscan.Unwrap(expr).(*ast.CallExpr); ok {
|
|
396
|
+
if s.isPackageCall(call, file, "encoding/json", "Marshal") && len(call.Args) > 0 {
|
|
397
|
+
state.bytesPayload[name.Name] = s.typeOf(call.Args[0], file, state)
|
|
398
|
+
}
|
|
399
|
+
if s.isPackageCall(call, file, watermillMessageImport, "NewMessage") && len(call.Args) > 1 {
|
|
400
|
+
state.messages[name.Name] = s.payloadOf(call.Args[1], file, state)
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
if len(rhs) == 1 {
|
|
405
|
+
call, ok := goscan.Unwrap(rhs[0]).(*ast.CallExpr)
|
|
406
|
+
if ok {
|
|
407
|
+
results := s.callResults(call, file, state)
|
|
408
|
+
for i, raw := range lhs {
|
|
409
|
+
name, ok := raw.(*ast.Ident)
|
|
410
|
+
if ok && i < len(results) && results[i] != "" {
|
|
411
|
+
state.types[name.Name] = results[i]
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
func (s *scanner) analyzeBlock(body *ast.BlockStmt, file *goscan.File, state *analysisState, includeHelpers bool) analysis {
|
|
419
|
+
s.collectAssignments(body, file, state)
|
|
420
|
+
result := analysis{}
|
|
421
|
+
ast.Inspect(body, func(node ast.Node) bool {
|
|
422
|
+
call, ok := node.(*ast.CallExpr)
|
|
423
|
+
if !ok {
|
|
424
|
+
return true
|
|
425
|
+
}
|
|
426
|
+
if s.isPackageCall(call, file, "encoding/json", "Unmarshal") && len(call.Args) > 1 && result.input == "" {
|
|
427
|
+
result.input = s.typeOf(call.Args[1], file, state)
|
|
428
|
+
}
|
|
429
|
+
return true
|
|
430
|
+
})
|
|
431
|
+
s.walkStatements(body.List, []pathState{{}}, file, state, includeHelpers, &result.publications)
|
|
432
|
+
result.publications = uniquePublications(result.publications)
|
|
433
|
+
return result
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
func (s *scanner) walkStatements(statements []ast.Stmt, paths []pathState, file *goscan.File, state *analysisState, includeHelpers bool, out *[]publication) []pathState {
|
|
437
|
+
for _, statement := range statements {
|
|
438
|
+
var next []pathState
|
|
439
|
+
for _, current := range paths {
|
|
440
|
+
if branch, ok := statement.(*ast.IfStmt); ok {
|
|
441
|
+
condition := s.PrintNode(branch.Cond)
|
|
442
|
+
thenPath := current
|
|
443
|
+
thenPath.conditions = appendCopy(current.conditions, condition)
|
|
444
|
+
thenFalls := s.walkStatements(branch.Body.List, []pathState{thenPath}, file, state, includeHelpers, out)
|
|
445
|
+
|
|
446
|
+
elsePath := current
|
|
447
|
+
elsePath.conditions = appendCopy(current.conditions, "not ("+condition+")")
|
|
448
|
+
var elseFalls []pathState
|
|
449
|
+
switch otherwise := branch.Else.(type) {
|
|
450
|
+
case *ast.BlockStmt:
|
|
451
|
+
elseFalls = s.walkStatements(otherwise.List, []pathState{elsePath}, file, state, includeHelpers, out)
|
|
452
|
+
case *ast.IfStmt:
|
|
453
|
+
elseFalls = s.walkStatements([]ast.Stmt{otherwise}, []pathState{elsePath}, file, state, includeHelpers, out)
|
|
454
|
+
default:
|
|
455
|
+
elseFalls = []pathState{elsePath}
|
|
456
|
+
}
|
|
457
|
+
if len(thenFalls) > 0 && len(elseFalls) > 0 {
|
|
458
|
+
merged := current
|
|
459
|
+
merged.publications = unionPublicationIndexes(thenFalls, elseFalls)
|
|
460
|
+
next = append(next, merged)
|
|
461
|
+
} else {
|
|
462
|
+
next = append(next, thenFalls...)
|
|
463
|
+
next = append(next, elseFalls...)
|
|
464
|
+
}
|
|
465
|
+
continue
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
publications := s.publicationsIn(statement, file, state, includeHelpers)
|
|
469
|
+
for _, value := range publications {
|
|
470
|
+
value.conditions = append(append([]string{}, current.conditions...), value.conditions...)
|
|
471
|
+
*out = append(*out, value)
|
|
472
|
+
current.publications = append(current.publications, len(*out)-1)
|
|
473
|
+
}
|
|
474
|
+
if _, returns := statement.(*ast.ReturnStmt); returns {
|
|
475
|
+
for _, index := range current.publications {
|
|
476
|
+
(*out)[index].terminal = true
|
|
477
|
+
}
|
|
478
|
+
continue
|
|
479
|
+
}
|
|
480
|
+
next = append(next, current)
|
|
481
|
+
}
|
|
482
|
+
paths = next
|
|
483
|
+
if len(paths) == 0 {
|
|
484
|
+
break
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
return paths
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
func (s *scanner) publicationsIn(statement ast.Stmt, file *goscan.File, state *analysisState, includeHelpers bool) []publication {
|
|
491
|
+
var out []publication
|
|
492
|
+
ast.Inspect(statement, func(node ast.Node) bool {
|
|
493
|
+
if _, ok := node.(*ast.FuncLit); ok {
|
|
494
|
+
return false
|
|
495
|
+
}
|
|
496
|
+
call, ok := node.(*ast.CallExpr)
|
|
497
|
+
if !ok {
|
|
498
|
+
return true
|
|
499
|
+
}
|
|
500
|
+
if sel, ok := call.Fun.(*ast.SelectorExpr); ok && sel.Sel.Name == "Publish" && len(call.Args) >= 2 {
|
|
501
|
+
resolved := s.topicValue(call.Args[0], file, state, map[string]bool{})
|
|
502
|
+
if resolved.valid() {
|
|
503
|
+
resolved.at = s.At(call.Args[0].Pos())
|
|
504
|
+
out = append(out, publication{topic: resolved, payload: s.payloadOf(call.Args[1], file, state), at: s.At(call.Pos())})
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
if includeHelpers {
|
|
508
|
+
if key := s.functionKey(call.Fun, file); key != "" {
|
|
509
|
+
for _, summary := range s.summaries[key] {
|
|
510
|
+
pub := summary
|
|
511
|
+
if pub.topic.param >= 0 && pub.topic.param < len(call.Args) {
|
|
512
|
+
index := pub.topic.param
|
|
513
|
+
pub.topic = s.topicValue(call.Args[index], file, state, map[string]bool{})
|
|
514
|
+
pub.topic.at = s.At(call.Args[index].Pos())
|
|
515
|
+
}
|
|
516
|
+
if pub.topic.address != "" {
|
|
517
|
+
pub.at = s.At(call.Pos())
|
|
518
|
+
out = append(out, pub)
|
|
519
|
+
}
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
return true
|
|
524
|
+
})
|
|
525
|
+
return out
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
func appendCopy(values []string, value string) []string {
|
|
529
|
+
out := append([]string{}, values...)
|
|
530
|
+
return append(out, value)
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
func unionPublicationIndexes(groups ...[]pathState) []int {
|
|
534
|
+
seen := map[int]bool{}
|
|
535
|
+
var out []int
|
|
536
|
+
for _, group := range groups {
|
|
537
|
+
for _, state := range group {
|
|
538
|
+
for _, index := range state.publications {
|
|
539
|
+
if !seen[index] {
|
|
540
|
+
seen[index] = true
|
|
541
|
+
out = append(out, index)
|
|
542
|
+
}
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
}
|
|
546
|
+
return out
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
func (s *scanner) indexHandlers(fn *function, b *plugin.Builder) {
|
|
550
|
+
outer := s.stateFor(fn)
|
|
551
|
+
s.collectAssignments(fn.decl.Body, fn.file, outer)
|
|
552
|
+
ast.Inspect(fn.decl.Body, func(node ast.Node) bool {
|
|
553
|
+
if _, ok := node.(*ast.FuncLit); ok {
|
|
554
|
+
return false
|
|
555
|
+
}
|
|
556
|
+
call, ok := node.(*ast.CallExpr)
|
|
557
|
+
if !ok {
|
|
558
|
+
return true
|
|
559
|
+
}
|
|
560
|
+
sel, ok := call.Fun.(*ast.SelectorExpr)
|
|
561
|
+
if !ok || (sel.Sel.Name != "AddHandler" && sel.Sel.Name != "AddNoPublisherHandler") {
|
|
562
|
+
return true
|
|
563
|
+
}
|
|
564
|
+
usesMessage := false
|
|
565
|
+
for _, imported := range fn.file.Imports {
|
|
566
|
+
if imported == watermillMessageImport {
|
|
567
|
+
usesMessage = true
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
if !usesMessage || len(call.Args) < 4 {
|
|
571
|
+
return true
|
|
572
|
+
}
|
|
573
|
+
callbackIndex := len(call.Args) - 1
|
|
574
|
+
input := s.topicValue(call.Args[1], fn.file, outer, map[string]bool{})
|
|
575
|
+
if input.address == "" {
|
|
576
|
+
b.Warn(s.At(call.Args[1].Pos()).String(), "Watermill handler topic could not be resolved to a literal, constant, or config default")
|
|
577
|
+
return false
|
|
578
|
+
}
|
|
579
|
+
name := s.topicValue(call.Args[0], fn.file, outer, map[string]bool{}).address
|
|
580
|
+
if name == "" {
|
|
581
|
+
name = s.PrintNode(call.Args[0])
|
|
582
|
+
}
|
|
583
|
+
callbackState := cloneState(outer)
|
|
584
|
+
var body *ast.BlockStmt
|
|
585
|
+
entrypoint := ""
|
|
586
|
+
switch cb := goscan.Unwrap(call.Args[callbackIndex]).(type) {
|
|
587
|
+
case *ast.FuncLit:
|
|
588
|
+
body = cb.Body
|
|
589
|
+
if cb.Type.Params != nil {
|
|
590
|
+
for _, field := range cb.Type.Params.List {
|
|
591
|
+
for _, param := range field.Names {
|
|
592
|
+
callbackState.types[param.Name] = s.TypeKey(field.Type, fn.file)
|
|
593
|
+
}
|
|
594
|
+
}
|
|
595
|
+
}
|
|
596
|
+
case *ast.Ident:
|
|
597
|
+
if target := s.functions[fn.file.Pkg+"."+cb.Name]; target != nil {
|
|
598
|
+
body = target.decl.Body
|
|
599
|
+
callbackState = s.stateFor(target)
|
|
600
|
+
entrypoint = watermillFunctionKey(target)
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
if body == nil {
|
|
604
|
+
b.Warn(s.At(call.Args[callbackIndex].Pos()).String(), "Watermill handler body could not be resolved")
|
|
605
|
+
return false
|
|
606
|
+
}
|
|
607
|
+
found := s.analyzeBlock(body, fn.file, callbackState, true)
|
|
608
|
+
if sel.Sel.Name == "AddHandler" && len(call.Args) >= 7 {
|
|
609
|
+
output := s.topicValue(call.Args[3], fn.file, outer, map[string]bool{})
|
|
610
|
+
if output.address != "" {
|
|
611
|
+
found.publications = append(found.publications, publication{topic: output, at: s.At(call.Args[3].Pos())})
|
|
612
|
+
}
|
|
613
|
+
}
|
|
614
|
+
group := ""
|
|
615
|
+
if subscriber, ok := call.Args[2].(*ast.Ident); ok {
|
|
616
|
+
group = s.subscriberGroup(fn.decl.Body, fn.file, outer, subscriber.Name)
|
|
617
|
+
}
|
|
618
|
+
s.handlers = append(s.handlers, handler{name: name, input: input, inputPayload: found.input, consumerGroup: group, entrypoint: entrypoint, publications: uniquePublications(found.publications), at: s.At(call.Pos())})
|
|
619
|
+
return false
|
|
620
|
+
})
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
func watermillFunctionKey(fn *function) string {
|
|
624
|
+
name := fn.name
|
|
625
|
+
if fn.receiver != "" {
|
|
626
|
+
name = goscan.LastSegment(fn.receiver) + "." + name
|
|
627
|
+
}
|
|
628
|
+
dir := path.Dir(fn.file.Name)
|
|
629
|
+
if dir == "." || dir == "" {
|
|
630
|
+
return name
|
|
631
|
+
}
|
|
632
|
+
return dir + ":" + name
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
func (s *scanner) indexCQRS(fn *function, b *plugin.Builder) {
|
|
636
|
+
usesCQRS := false
|
|
637
|
+
for _, imported := range fn.file.Imports {
|
|
638
|
+
if imported == "github.com/ThreeDotsLabs/watermill/components/cqrs" {
|
|
639
|
+
usesCQRS = true
|
|
640
|
+
}
|
|
641
|
+
}
|
|
642
|
+
if !usesCQRS {
|
|
643
|
+
return
|
|
644
|
+
}
|
|
645
|
+
state := s.stateFor(fn)
|
|
646
|
+
s.collectAssignments(fn.decl.Body, fn.file, state)
|
|
647
|
+
processorTopics := map[string]topic{}
|
|
648
|
+
handlers := map[string]cqrsHandler{}
|
|
649
|
+
|
|
650
|
+
ast.Inspect(fn.decl.Body, func(node ast.Node) bool {
|
|
651
|
+
assign, ok := node.(*ast.AssignStmt)
|
|
652
|
+
if !ok || len(assign.Rhs) == 0 {
|
|
653
|
+
return true
|
|
654
|
+
}
|
|
655
|
+
call, ok := goscan.Unwrap(assign.Rhs[0]).(*ast.CallExpr)
|
|
656
|
+
if !ok {
|
|
657
|
+
return true
|
|
658
|
+
}
|
|
659
|
+
for _, raw := range assign.Lhs {
|
|
660
|
+
name, ok := raw.(*ast.Ident)
|
|
661
|
+
if !ok || name.Name == "_" {
|
|
662
|
+
continue
|
|
663
|
+
}
|
|
664
|
+
if processorKind := s.cqrsCallName(call, fn.file); processorKind == "NewEventProcessorWithConfig" || processorKind == "NewCommandProcessorWithConfig" || processorKind == "NewEventProcessor" || processorKind == "NewCommandProcessor" {
|
|
665
|
+
if resolved := s.cqrsProcessorTopic(call, fn.file, state); resolved.valid() {
|
|
666
|
+
processorTopics[name.Name] = resolved
|
|
667
|
+
}
|
|
668
|
+
}
|
|
669
|
+
if built, ok := s.cqrsHandler(call, fn.file, state); ok {
|
|
670
|
+
handlers[name.Name] = built
|
|
671
|
+
}
|
|
672
|
+
}
|
|
673
|
+
return true
|
|
674
|
+
})
|
|
675
|
+
|
|
676
|
+
ast.Inspect(fn.decl.Body, func(node ast.Node) bool {
|
|
677
|
+
call, ok := node.(*ast.CallExpr)
|
|
678
|
+
if !ok {
|
|
679
|
+
return true
|
|
680
|
+
}
|
|
681
|
+
sel, ok := call.Fun.(*ast.SelectorExpr)
|
|
682
|
+
if !ok || (sel.Sel.Name != "AddHandler" && sel.Sel.Name != "AddHandlers" && sel.Sel.Name != "AddHandlersGroup") {
|
|
683
|
+
return true
|
|
684
|
+
}
|
|
685
|
+
receiver, ok := sel.X.(*ast.Ident)
|
|
686
|
+
if !ok {
|
|
687
|
+
return true
|
|
688
|
+
}
|
|
689
|
+
baseTopic, ok := processorTopics[receiver.Name]
|
|
690
|
+
if !ok {
|
|
691
|
+
return true
|
|
692
|
+
}
|
|
693
|
+
start := 0
|
|
694
|
+
group := ""
|
|
695
|
+
if sel.Sel.Name == "AddHandlersGroup" && len(call.Args) > 0 {
|
|
696
|
+
group = s.topicValue(call.Args[0], fn.file, state, map[string]bool{}).address
|
|
697
|
+
start = 1
|
|
698
|
+
}
|
|
699
|
+
for _, arg := range call.Args[start:] {
|
|
700
|
+
var built cqrsHandler
|
|
701
|
+
var found bool
|
|
702
|
+
switch value := goscan.Unwrap(arg).(type) {
|
|
703
|
+
case *ast.Ident:
|
|
704
|
+
built, found = handlers[value.Name]
|
|
705
|
+
case *ast.CallExpr:
|
|
706
|
+
built, found = s.cqrsHandler(value, fn.file, state)
|
|
707
|
+
}
|
|
708
|
+
if !found {
|
|
709
|
+
continue
|
|
710
|
+
}
|
|
711
|
+
input := baseTopic
|
|
712
|
+
if input.address == "$message" {
|
|
713
|
+
input.address = goscan.LastSegment(built.payload)
|
|
714
|
+
}
|
|
715
|
+
if input.address == "" {
|
|
716
|
+
b.Warn(s.At(arg.Pos()).String(), "Watermill CQRS handler topic generator could not be resolved")
|
|
717
|
+
continue
|
|
718
|
+
}
|
|
719
|
+
consumerGroup := group
|
|
720
|
+
if consumerGroup == "" {
|
|
721
|
+
consumerGroup = built.name
|
|
722
|
+
}
|
|
723
|
+
s.handlers = append(s.handlers, handler{name: built.name, input: input, inputPayload: built.payload, consumerGroup: consumerGroup, at: s.At(call.Pos())})
|
|
724
|
+
}
|
|
725
|
+
return true
|
|
726
|
+
})
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
func (s *scanner) cqrsCallName(call *ast.CallExpr, file *goscan.File) string {
|
|
730
|
+
fun := call.Fun
|
|
731
|
+
switch generic := fun.(type) {
|
|
732
|
+
case *ast.IndexExpr:
|
|
733
|
+
fun = generic.X
|
|
734
|
+
case *ast.IndexListExpr:
|
|
735
|
+
fun = generic.X
|
|
736
|
+
}
|
|
737
|
+
sel, ok := fun.(*ast.SelectorExpr)
|
|
738
|
+
if !ok {
|
|
739
|
+
return ""
|
|
740
|
+
}
|
|
741
|
+
base, ok := sel.X.(*ast.Ident)
|
|
742
|
+
if !ok || file.Imports[base.Name] != "github.com/ThreeDotsLabs/watermill/components/cqrs" {
|
|
743
|
+
return ""
|
|
744
|
+
}
|
|
745
|
+
return sel.Sel.Name
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
func (s *scanner) cqrsHandler(call *ast.CallExpr, file *goscan.File, state *analysisState) (cqrsHandler, bool) {
|
|
749
|
+
name := s.cqrsCallName(call, file)
|
|
750
|
+
if name != "NewEventHandler" && name != "NewCommandHandler" && name != "NewGroupEventHandler" {
|
|
751
|
+
return cqrsHandler{}, false
|
|
752
|
+
}
|
|
753
|
+
handlerName := name
|
|
754
|
+
callbackIndex := 0
|
|
755
|
+
if name != "NewGroupEventHandler" {
|
|
756
|
+
if len(call.Args) < 2 {
|
|
757
|
+
return cqrsHandler{}, false
|
|
758
|
+
}
|
|
759
|
+
handlerName = s.topicValue(call.Args[0], file, state, map[string]bool{}).address
|
|
760
|
+
callbackIndex = 1
|
|
761
|
+
}
|
|
762
|
+
if handlerName == "" {
|
|
763
|
+
handlerName = strings.TrimSuffix(strings.TrimPrefix(name, "New"), "Handler")
|
|
764
|
+
}
|
|
765
|
+
payload := ""
|
|
766
|
+
switch generic := call.Fun.(type) {
|
|
767
|
+
case *ast.IndexExpr:
|
|
768
|
+
payload = s.TypeKey(generic.Index, file)
|
|
769
|
+
case *ast.IndexListExpr:
|
|
770
|
+
if len(generic.Indices) > 0 {
|
|
771
|
+
payload = s.TypeKey(generic.Indices[0], file)
|
|
772
|
+
}
|
|
773
|
+
}
|
|
774
|
+
if payload == "" && callbackIndex < len(call.Args) {
|
|
775
|
+
if callback, ok := goscan.Unwrap(call.Args[callbackIndex]).(*ast.FuncLit); ok && callback.Type.Params != nil && len(callback.Type.Params.List) > 1 {
|
|
776
|
+
payload = s.TypeKey(callback.Type.Params.List[1].Type, file)
|
|
777
|
+
}
|
|
778
|
+
}
|
|
779
|
+
return cqrsHandler{name: handlerName, payload: payload, at: s.At(call.Pos())}, payload != ""
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
func (s *scanner) cqrsProcessorTopic(call *ast.CallExpr, file *goscan.File, state *analysisState) topic {
|
|
783
|
+
name := s.cqrsCallName(call, file)
|
|
784
|
+
index := 1
|
|
785
|
+
if name == "NewEventProcessor" || name == "NewCommandProcessor" {
|
|
786
|
+
index = 1
|
|
787
|
+
}
|
|
788
|
+
if len(call.Args) <= index {
|
|
789
|
+
return topic{param: -1}
|
|
790
|
+
}
|
|
791
|
+
var generator ast.Expr
|
|
792
|
+
if name == "NewEventProcessorWithConfig" || name == "NewCommandProcessorWithConfig" {
|
|
793
|
+
config, ok := goscan.Unwrap(call.Args[index]).(*ast.CompositeLit)
|
|
794
|
+
if !ok {
|
|
795
|
+
return topic{param: -1}
|
|
796
|
+
}
|
|
797
|
+
for _, raw := range config.Elts {
|
|
798
|
+
field, ok := raw.(*ast.KeyValueExpr)
|
|
799
|
+
if !ok {
|
|
800
|
+
continue
|
|
801
|
+
}
|
|
802
|
+
key, named := field.Key.(*ast.Ident)
|
|
803
|
+
if named && key.Name == "GenerateSubscribeTopic" {
|
|
804
|
+
generator = field.Value
|
|
805
|
+
}
|
|
806
|
+
}
|
|
807
|
+
} else {
|
|
808
|
+
generator = call.Args[index]
|
|
809
|
+
}
|
|
810
|
+
callback, ok := goscan.Unwrap(generator).(*ast.FuncLit)
|
|
811
|
+
if !ok || callback.Body == nil {
|
|
812
|
+
return topic{param: -1}
|
|
813
|
+
}
|
|
814
|
+
resolved := topic{param: -1}
|
|
815
|
+
ast.Inspect(callback.Body, func(node ast.Node) bool {
|
|
816
|
+
ret, ok := node.(*ast.ReturnStmt)
|
|
817
|
+
if !ok || len(ret.Results) == 0 || resolved.valid() {
|
|
818
|
+
return true
|
|
819
|
+
}
|
|
820
|
+
if selector, ok := goscan.Unwrap(ret.Results[0]).(*ast.SelectorExpr); ok {
|
|
821
|
+
if selector.Sel.Name == "EventName" || selector.Sel.Name == "CommandName" {
|
|
822
|
+
resolved = topic{address: "$message", param: -1, at: s.At(ret.Results[0].Pos())}
|
|
823
|
+
return false
|
|
824
|
+
}
|
|
825
|
+
}
|
|
826
|
+
resolved = s.topicValue(ret.Results[0], file, state, map[string]bool{})
|
|
827
|
+
return false
|
|
828
|
+
})
|
|
829
|
+
return resolved
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
func (s *scanner) subscriberGroup(body *ast.BlockStmt, file *goscan.File, state *analysisState, variable string) string {
|
|
833
|
+
group := ""
|
|
834
|
+
ast.Inspect(body, func(node ast.Node) bool {
|
|
835
|
+
assign, ok := node.(*ast.AssignStmt)
|
|
836
|
+
if !ok || len(assign.Rhs) == 0 {
|
|
837
|
+
return true
|
|
838
|
+
}
|
|
839
|
+
for _, lhs := range assign.Lhs {
|
|
840
|
+
ident, ok := lhs.(*ast.Ident)
|
|
841
|
+
if !ok || ident.Name != variable {
|
|
842
|
+
continue
|
|
843
|
+
}
|
|
844
|
+
call, ok := goscan.Unwrap(assign.Rhs[0]).(*ast.CallExpr)
|
|
845
|
+
if !ok || len(call.Args) < 2 {
|
|
846
|
+
continue
|
|
847
|
+
}
|
|
848
|
+
group = s.topicValue(call.Args[1], file, state, map[string]bool{}).address
|
|
849
|
+
}
|
|
850
|
+
return group == ""
|
|
851
|
+
})
|
|
852
|
+
return group
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
func (s *scanner) catalog(serviceID, owner string) ([]catalog.Channel, []catalog.Flow) {
|
|
856
|
+
channels := map[string]*channelState{}
|
|
857
|
+
ensure := func(value topic) *channelState {
|
|
858
|
+
found := channels[value.address]
|
|
859
|
+
if found != nil {
|
|
860
|
+
return found
|
|
861
|
+
}
|
|
862
|
+
title := "Watermill topic"
|
|
863
|
+
if s.transport != "" {
|
|
864
|
+
title = "Watermill / " + s.transport + " topic"
|
|
865
|
+
}
|
|
866
|
+
doc := "Messages routed through github.com/ThreeDotsLabs/watermill."
|
|
867
|
+
if value.env != "" {
|
|
868
|
+
doc += " Configured by `" + value.env + "`; extracted address is its source default."
|
|
869
|
+
}
|
|
870
|
+
found = &channelState{channel: catalog.Channel{Address: value.address, Title: title, Doc: doc, Messages: []catalog.ChannelMessage{}, Source: value.at.String()}, seen: map[string]bool{}}
|
|
871
|
+
channels[value.address] = found
|
|
872
|
+
return found
|
|
873
|
+
}
|
|
874
|
+
var flows []catalog.Flow
|
|
875
|
+
for _, found := range s.handlers {
|
|
876
|
+
inputPayload := goscan.FirstNonEmpty(goscan.LastSegment(found.inputPayload), found.name)
|
|
877
|
+
input := ensure(found.input)
|
|
878
|
+
addMessage(input, catalog.ChannelMessage{Name: inputPayload, Title: inputPayload, Doc: s.payloadDescription(found.inputPayload, "Input"), Direction: catalog.ChannelReceive})
|
|
879
|
+
if len(found.publications) == 0 {
|
|
880
|
+
flows = append(flows, s.flow(serviceID, owner, found, nil))
|
|
881
|
+
}
|
|
882
|
+
for i := range found.publications {
|
|
883
|
+
pub := found.publications[i]
|
|
884
|
+
output := ensure(pub.topic)
|
|
885
|
+
payload := goscan.FirstNonEmpty(goscan.LastSegment(pub.payload), "message")
|
|
886
|
+
addMessage(output, catalog.ChannelMessage{Name: payload, Title: payload, Doc: s.payloadDescription(pub.payload, "Payload"), Direction: catalog.ChannelSend})
|
|
887
|
+
}
|
|
888
|
+
if structuredBranches(found.publications) {
|
|
889
|
+
flows = append(flows, s.branchedFlow(serviceID, owner, found))
|
|
890
|
+
} else {
|
|
891
|
+
for i := range found.publications {
|
|
892
|
+
pub := found.publications[i]
|
|
893
|
+
flows = append(flows, s.flow(serviceID, owner, found, &pub))
|
|
894
|
+
}
|
|
895
|
+
}
|
|
896
|
+
}
|
|
897
|
+
addresses := make([]string, 0, len(channels))
|
|
898
|
+
for address := range channels {
|
|
899
|
+
addresses = append(addresses, address)
|
|
900
|
+
}
|
|
901
|
+
sort.Strings(addresses)
|
|
902
|
+
out := make([]catalog.Channel, 0, len(addresses))
|
|
903
|
+
for _, address := range addresses {
|
|
904
|
+
out = append(out, channels[address].channel)
|
|
905
|
+
}
|
|
906
|
+
sort.Slice(flows, func(i, j int) bool { return flows[i].Slug < flows[j].Slug })
|
|
907
|
+
return out, flows
|
|
908
|
+
}
|
|
909
|
+
|
|
910
|
+
func structuredBranches(publications []publication) bool {
|
|
911
|
+
if len(publications) < 2 {
|
|
912
|
+
return false
|
|
913
|
+
}
|
|
914
|
+
seen := map[string]bool{}
|
|
915
|
+
for _, pub := range publications {
|
|
916
|
+
condition := strings.Join(pub.conditions, " and ")
|
|
917
|
+
if condition == "" || seen[condition] {
|
|
918
|
+
return false
|
|
919
|
+
}
|
|
920
|
+
seen[condition] = true
|
|
921
|
+
}
|
|
922
|
+
return true
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
func branchConditions(publications []publication) []string {
|
|
926
|
+
all := make([]map[string]bool, len(publications))
|
|
927
|
+
common := map[string]int{}
|
|
928
|
+
for i, pub := range publications {
|
|
929
|
+
all[i] = map[string]bool{}
|
|
930
|
+
for _, condition := range pub.conditions {
|
|
931
|
+
all[i][condition] = true
|
|
932
|
+
common[condition]++
|
|
933
|
+
}
|
|
934
|
+
}
|
|
935
|
+
titles := make([]string, len(publications))
|
|
936
|
+
for i, pub := range publications {
|
|
937
|
+
for _, condition := range pub.conditions {
|
|
938
|
+
opposite := oppositeCondition(condition)
|
|
939
|
+
for other := range publications {
|
|
940
|
+
if other != i && all[other][opposite] {
|
|
941
|
+
titles[i] = condition
|
|
942
|
+
break
|
|
943
|
+
}
|
|
944
|
+
}
|
|
945
|
+
if titles[i] != "" {
|
|
946
|
+
break
|
|
947
|
+
}
|
|
948
|
+
}
|
|
949
|
+
if titles[i] != "" {
|
|
950
|
+
continue
|
|
951
|
+
}
|
|
952
|
+
var distinguishing []string
|
|
953
|
+
for _, condition := range pub.conditions {
|
|
954
|
+
if common[condition] != len(publications) {
|
|
955
|
+
distinguishing = append(distinguishing, condition)
|
|
956
|
+
}
|
|
957
|
+
}
|
|
958
|
+
titles[i] = goscan.FirstNonEmpty(strings.Join(distinguishing, " and "), strings.Join(pub.conditions, " and "))
|
|
959
|
+
}
|
|
960
|
+
return titles
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
func oppositeCondition(condition string) string {
|
|
964
|
+
if strings.HasPrefix(condition, "not (") && strings.HasSuffix(condition, ")") {
|
|
965
|
+
return strings.TrimSuffix(strings.TrimPrefix(condition, "not ("), ")")
|
|
966
|
+
}
|
|
967
|
+
return "not (" + condition + ")"
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
func addMessage(channel *channelState, message catalog.ChannelMessage) {
|
|
971
|
+
key := string(message.Direction) + "|" + message.Name
|
|
972
|
+
if channel.seen[key] {
|
|
973
|
+
return
|
|
974
|
+
}
|
|
975
|
+
channel.seen[key] = true
|
|
976
|
+
channel.channel.Messages = append(channel.channel.Messages, message)
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
func (s *scanner) flow(serviceID, owner string, found handler, pub *publication) catalog.Flow {
|
|
980
|
+
inputBroker := "watermill." + goscan.Slug(found.input.address)
|
|
981
|
+
ending := "consume"
|
|
982
|
+
name := goscan.Title(found.name)
|
|
983
|
+
summary := "Watermill handler `" + found.name + "` consumes `" + found.input.address + "`"
|
|
984
|
+
participants := []catalog.Participant{{ID: serviceID, Kind: catalog.ParticipantService, Context: stringPtr(owner)}, {ID: inputBroker, Kind: catalog.ParticipantBroker, Label: goscan.FirstNonEmpty(s.transport, "Watermill") + " · " + found.input.address}}
|
|
985
|
+
note := s.payloadDescription(found.inputPayload, "Input")
|
|
986
|
+
if found.consumerGroup != "" {
|
|
987
|
+
note += " Consumer group `" + found.consumerGroup + "`."
|
|
988
|
+
}
|
|
989
|
+
steps := catalog.FlowNodes{&catalog.Step{Type: "step", ID: "receive", From: inputBroker, To: serviceID, Kind: catalog.StepEvent, Label: found.name, Status: catalog.StatusDeclared, Note: strings.TrimSpace(note), Line: found.at.String(), ContinuesAt: found.entrypoint, Handoff: s.messageHandoff(found.input.address, "receive")}}
|
|
990
|
+
if pub != nil {
|
|
991
|
+
ending = pub.topic.address
|
|
992
|
+
outputBroker := "watermill." + goscan.Slug(pub.topic.address)
|
|
993
|
+
if outputBroker != inputBroker {
|
|
994
|
+
participants = append(participants, catalog.Participant{ID: outputBroker, Kind: catalog.ParticipantBroker, Label: goscan.FirstNonEmpty(s.transport, "Watermill") + " · " + pub.topic.address})
|
|
995
|
+
}
|
|
996
|
+
payload := goscan.FirstNonEmpty(goscan.LastSegment(pub.payload), "message")
|
|
997
|
+
steps = append(steps, &catalog.Step{Type: "step", ID: "publish", From: serviceID, To: outputBroker, Kind: catalog.StepEvent, Label: "publish " + payload, Status: catalog.StatusDeclared, Note: s.payloadDescription(pub.payload, "Payload"), Line: pub.at.String(), Handoff: s.messageHandoff(pub.topic.address, "send")})
|
|
998
|
+
name += " → " + pub.topic.address
|
|
999
|
+
summary += " and may publish `" + pub.topic.address + "`"
|
|
1000
|
+
}
|
|
1001
|
+
summary += "."
|
|
1002
|
+
slugged := goscan.Slug(goscan.LastSegment(serviceID) + "-watermill-" + found.name + "-" + ending)
|
|
1003
|
+
return catalog.Flow{ID: "flow." + slugged, Slug: slugged, Name: name, Summary: summary, Source: found.at.String(), Trigger: &catalog.FlowTrigger{Kind: "event", Label: found.input.address, Confidence: "high"}, Owner: owner, Participants: participants, Steps: steps}
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
func (s *scanner) branchedFlow(serviceID, owner string, found handler) catalog.Flow {
|
|
1007
|
+
inputBroker := "watermill." + goscan.Slug(found.input.address)
|
|
1008
|
+
participants := []catalog.Participant{
|
|
1009
|
+
{ID: serviceID, Kind: catalog.ParticipantService, Context: stringPtr(owner)},
|
|
1010
|
+
{ID: inputBroker, Kind: catalog.ParticipantBroker, Label: goscan.FirstNonEmpty(s.transport, "Watermill") + " · " + found.input.address},
|
|
1011
|
+
}
|
|
1012
|
+
participantSeen := map[string]bool{serviceID: true, inputBroker: true}
|
|
1013
|
+
branches := make([]catalog.AltBranch, 0, len(found.publications))
|
|
1014
|
+
addresses := make([]string, 0, len(found.publications))
|
|
1015
|
+
conditions := branchConditions(found.publications)
|
|
1016
|
+
for i, pub := range found.publications {
|
|
1017
|
+
outputBroker := "watermill." + goscan.Slug(pub.topic.address)
|
|
1018
|
+
if !participantSeen[outputBroker] {
|
|
1019
|
+
participantSeen[outputBroker] = true
|
|
1020
|
+
participants = append(participants, catalog.Participant{ID: outputBroker, Kind: catalog.ParticipantBroker, Label: goscan.FirstNonEmpty(s.transport, "Watermill") + " · " + pub.topic.address})
|
|
1021
|
+
}
|
|
1022
|
+
payload := goscan.FirstNonEmpty(goscan.LastSegment(pub.payload), "message")
|
|
1023
|
+
branches = append(branches, catalog.AltBranch{
|
|
1024
|
+
Title: conditions[i],
|
|
1025
|
+
Terminal: pub.terminal,
|
|
1026
|
+
Steps: catalog.FlowNodes{&catalog.Step{
|
|
1027
|
+
Type: "step",
|
|
1028
|
+
ID: fmt.Sprintf("publish-%d", i+1),
|
|
1029
|
+
From: serviceID,
|
|
1030
|
+
To: outputBroker,
|
|
1031
|
+
Kind: catalog.StepEvent,
|
|
1032
|
+
Label: "publish " + payload,
|
|
1033
|
+
Status: catalog.StatusDeclared,
|
|
1034
|
+
Note: s.payloadDescription(pub.payload, "Payload"),
|
|
1035
|
+
Line: pub.at.String(),
|
|
1036
|
+
Handoff: s.messageHandoff(pub.topic.address, "send"),
|
|
1037
|
+
}},
|
|
1038
|
+
})
|
|
1039
|
+
addresses = append(addresses, "`"+pub.topic.address+"`")
|
|
1040
|
+
}
|
|
1041
|
+
note := s.payloadDescription(found.inputPayload, "Input")
|
|
1042
|
+
if found.consumerGroup != "" {
|
|
1043
|
+
note += " Consumer group `" + found.consumerGroup + "`."
|
|
1044
|
+
}
|
|
1045
|
+
steps := catalog.FlowNodes{
|
|
1046
|
+
&catalog.Step{Type: "step", ID: "receive", From: inputBroker, To: serviceID, Kind: catalog.StepEvent, Label: found.name, Status: catalog.StatusDeclared, Note: strings.TrimSpace(note), Line: found.at.String(), ContinuesAt: found.entrypoint, Handoff: s.messageHandoff(found.input.address, "receive")},
|
|
1047
|
+
&catalog.Alt{Type: "alt", ID: "outcome", Branches: branches},
|
|
1048
|
+
}
|
|
1049
|
+
slugged := goscan.Slug(goscan.LastSegment(serviceID) + "-watermill-" + found.name)
|
|
1050
|
+
return catalog.Flow{
|
|
1051
|
+
ID: "flow." + slugged,
|
|
1052
|
+
Slug: slugged,
|
|
1053
|
+
Name: goscan.Title(found.name),
|
|
1054
|
+
Summary: "Watermill handler `" + found.name + "` consumes `" + found.input.address + "` and source control flow branches to " + strings.Join(addresses, " or ") + ".",
|
|
1055
|
+
Source: found.at.String(),
|
|
1056
|
+
Trigger: &catalog.FlowTrigger{Kind: "event", Label: found.input.address, Confidence: "high"},
|
|
1057
|
+
Owner: owner,
|
|
1058
|
+
Participants: participants,
|
|
1059
|
+
Steps: steps,
|
|
1060
|
+
}
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
func (s *scanner) messageHandoff(channel, direction string) *catalog.FlowHandoff {
|
|
1064
|
+
transport := strings.ToLower(goscan.FirstNonEmpty(s.transport, "watermill"))
|
|
1065
|
+
return &catalog.FlowHandoff{Kind: "message", Transport: transport, Channel: channel, Direction: direction}
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
func (s *scanner) payloadDescription(key, prefix string) string {
|
|
1069
|
+
found := s.types[key]
|
|
1070
|
+
if found == nil {
|
|
1071
|
+
if key == "" {
|
|
1072
|
+
return prefix + " payload type is not visible in source."
|
|
1073
|
+
}
|
|
1074
|
+
return prefix + " `" + goscan.LastSegment(key) + "`."
|
|
1075
|
+
}
|
|
1076
|
+
if len(found.fields) == 0 {
|
|
1077
|
+
return prefix + " `" + found.name + "`."
|
|
1078
|
+
}
|
|
1079
|
+
fields := found.fields
|
|
1080
|
+
suffix := ""
|
|
1081
|
+
if len(fields) > 10 {
|
|
1082
|
+
suffix = fmt.Sprintf(", and %d more", len(fields)-10)
|
|
1083
|
+
fields = fields[:10]
|
|
1084
|
+
}
|
|
1085
|
+
return prefix + " `" + found.name + "`: `" + strings.Join(fields, "`, `") + "`" + suffix + "."
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
func uniquePublications(values []publication) []publication {
|
|
1089
|
+
seen := map[string]bool{}
|
|
1090
|
+
var out []publication
|
|
1091
|
+
for _, value := range values {
|
|
1092
|
+
if !value.topic.valid() {
|
|
1093
|
+
continue
|
|
1094
|
+
}
|
|
1095
|
+
topicKey := value.topic.address
|
|
1096
|
+
if topicKey == "" {
|
|
1097
|
+
topicKey = fmt.Sprintf("$param:%d", value.topic.param)
|
|
1098
|
+
}
|
|
1099
|
+
key := topicKey + "|" + value.payload + "|" + strings.Join(value.conditions, "&&")
|
|
1100
|
+
if seen[key] {
|
|
1101
|
+
continue
|
|
1102
|
+
}
|
|
1103
|
+
seen[key] = true
|
|
1104
|
+
out = append(out, value)
|
|
1105
|
+
}
|
|
1106
|
+
return out
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
func (s *scanner) topicValue(expr ast.Expr, file *goscan.File, state *analysisState, visiting map[string]bool) topic {
|
|
1110
|
+
expr = goscan.Unwrap(expr)
|
|
1111
|
+
switch value := expr.(type) {
|
|
1112
|
+
case *ast.BasicLit:
|
|
1113
|
+
if value.Kind == token.STRING {
|
|
1114
|
+
text, _ := strconv.Unquote(value.Value)
|
|
1115
|
+
return topic{address: text, expr: s.PrintNode(expr), param: -1, at: s.At(expr.Pos())}
|
|
1116
|
+
}
|
|
1117
|
+
case *ast.Ident:
|
|
1118
|
+
if local, ok := state.strings[value.Name]; ok {
|
|
1119
|
+
return local
|
|
1120
|
+
}
|
|
1121
|
+
if index, ok := state.topicParams[value.Name]; ok {
|
|
1122
|
+
return topic{param: index, expr: value.Name}
|
|
1123
|
+
}
|
|
1124
|
+
return s.constantValue(file.Pkg+"."+value.Name, visiting)
|
|
1125
|
+
case *ast.SelectorExpr:
|
|
1126
|
+
base, ok := value.X.(*ast.Ident)
|
|
1127
|
+
if !ok {
|
|
1128
|
+
break
|
|
1129
|
+
}
|
|
1130
|
+
if imported := file.Imports[base.Name]; imported != "" {
|
|
1131
|
+
return s.constantValue(imported+"."+value.Sel.Name, visiting)
|
|
1132
|
+
}
|
|
1133
|
+
if kind := state.types[base.Name]; kind != "" {
|
|
1134
|
+
if field, ok := s.configFields[kind+"."+value.Sel.Name]; ok && field.value != "" {
|
|
1135
|
+
return topic{address: field.value, env: field.env, expr: s.PrintNode(expr), param: -1, at: s.At(expr.Pos())}
|
|
1136
|
+
}
|
|
1137
|
+
}
|
|
1138
|
+
}
|
|
1139
|
+
return topic{param: -1, expr: s.PrintNode(expr)}
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
func (s *scanner) constantValue(key string, visiting map[string]bool) topic {
|
|
1143
|
+
if visiting[key] {
|
|
1144
|
+
return topic{param: -1}
|
|
1145
|
+
}
|
|
1146
|
+
found, ok := s.Constants[key]
|
|
1147
|
+
if !ok {
|
|
1148
|
+
return topic{param: -1}
|
|
1149
|
+
}
|
|
1150
|
+
visiting[key] = true
|
|
1151
|
+
value := s.topicValue(found.Expr, found.File, &analysisState{types: map[string]string{}, strings: map[string]topic{}, topicParams: map[string]int{}}, visiting)
|
|
1152
|
+
delete(visiting, key)
|
|
1153
|
+
return value
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
func (s *scanner) payloadOf(expr ast.Expr, file *goscan.File, state *analysisState) string {
|
|
1157
|
+
expr = goscan.Unwrap(expr)
|
|
1158
|
+
if ident, ok := expr.(*ast.Ident); ok {
|
|
1159
|
+
if payload := state.messages[ident.Name]; payload != "" {
|
|
1160
|
+
return payload
|
|
1161
|
+
}
|
|
1162
|
+
if payload := state.bytesPayload[ident.Name]; payload != "" {
|
|
1163
|
+
return payload
|
|
1164
|
+
}
|
|
1165
|
+
}
|
|
1166
|
+
return s.typeOf(expr, file, state)
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
func (s *scanner) typeOf(expr ast.Expr, file *goscan.File, state *analysisState) string {
|
|
1170
|
+
expr = goscan.Unwrap(expr)
|
|
1171
|
+
switch value := expr.(type) {
|
|
1172
|
+
case *ast.CompositeLit:
|
|
1173
|
+
return s.TypeKey(value.Type, file)
|
|
1174
|
+
case *ast.Ident:
|
|
1175
|
+
return state.types[value.Name]
|
|
1176
|
+
case *ast.CallExpr:
|
|
1177
|
+
results := s.callResults(value, file, state)
|
|
1178
|
+
if len(results) > 0 {
|
|
1179
|
+
return results[0]
|
|
1180
|
+
}
|
|
1181
|
+
}
|
|
1182
|
+
return ""
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
func (s *scanner) callResults(call *ast.CallExpr, file *goscan.File, state *analysisState) []string {
|
|
1186
|
+
if key := s.functionKey(call.Fun, file); key != "" {
|
|
1187
|
+
if fn := s.functions[key]; fn != nil {
|
|
1188
|
+
return fn.results
|
|
1189
|
+
}
|
|
1190
|
+
}
|
|
1191
|
+
if sel, ok := call.Fun.(*ast.SelectorExpr); ok {
|
|
1192
|
+
if base, ok := sel.X.(*ast.Ident); ok {
|
|
1193
|
+
if receiver := state.types[base.Name]; receiver != "" {
|
|
1194
|
+
if result := s.methodResults[receiver+"."+sel.Sel.Name]; result != "" {
|
|
1195
|
+
return []string{result}
|
|
1196
|
+
}
|
|
1197
|
+
}
|
|
1198
|
+
}
|
|
1199
|
+
if result := s.methodResults[sel.Sel.Name]; result != "" {
|
|
1200
|
+
return []string{result}
|
|
1201
|
+
}
|
|
1202
|
+
}
|
|
1203
|
+
return nil
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
func (s *scanner) functionKey(expr ast.Expr, file *goscan.File) string {
|
|
1207
|
+
switch value := expr.(type) {
|
|
1208
|
+
case *ast.Ident:
|
|
1209
|
+
return file.Pkg + "." + value.Name
|
|
1210
|
+
case *ast.SelectorExpr:
|
|
1211
|
+
base, ok := value.X.(*ast.Ident)
|
|
1212
|
+
if ok && file.Imports[base.Name] != "" {
|
|
1213
|
+
return file.Imports[base.Name] + "." + value.Sel.Name
|
|
1214
|
+
}
|
|
1215
|
+
}
|
|
1216
|
+
return ""
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
func (s *scanner) isPackageCall(call *ast.CallExpr, file *goscan.File, pkg, name string) bool {
|
|
1220
|
+
sel, ok := call.Fun.(*ast.SelectorExpr)
|
|
1221
|
+
if !ok || sel.Sel.Name != name {
|
|
1222
|
+
return false
|
|
1223
|
+
}
|
|
1224
|
+
base, ok := sel.X.(*ast.Ident)
|
|
1225
|
+
return ok && file.Imports[base.Name] == pkg
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
func stringPtr(value string) *string { return &value }
|