Skip to main content

No project description provided

Project description

Gossiphs = Gossip Graphs

Crates.io Version RealWorld Test

"Zero setup" general code file relationship analysis. With Python & Rust. Based on tree-sitter and git analysis.

What's it

Gossiphs can analyze the history of commits and the relationships between variable declarations and references in your codebase to obtain a relationship diagram of the code files.

It also allows developers to query the content declared in each file, thereby enabling free search for its references throughout the entire codebase to achieve more complex analysis.

graph TD
    A[main.py] --- S1[func_main] --- B[module_a.py]
    A --- S2[Handler] --- C[module_b.py]
    B --- S3[func_util] --- D[utils.py]
    C --- S3[func_util] --- D
    A --- S4[func_init] --- E[module_c.py]
    E --- S5[process] --- F[module_d.py]
    E --- S6[Processor] --- H[module_e.py]
    H --- S7[transform] --- I[module_f.py]
    I --- S3[func_util] --- D

Supported Languages

We are expanding language support based on Tree-Sitter Query, which isn't too costly. If you're interested, you can check out the contribution section.

Language Status
Rust
Python
TypeScript
JavaScript
Golang
Java
Kotlin
Swift

You can see the rule files here.

Usage

Python

pip install gossiphs

Analyze your codebase with networkx within 30 lines:

import networkx as nx
from gossiphs import GraphConfig, create_graph, Graph

config = GraphConfig()
config.project_path = "../.."
graph: Graph = create_graph(config)

nx_graph = nx.DiGraph()

for each_file in graph.files():
    nx_graph.add_node(each_file, metadata=graph.file_metadata(each_file))

    related_files = graph.related_files(each_file)
    for each_related_file in related_files:
        related_symbols = set(each_symbol.symbol.name for each_symbol in each_related_file.related_symbols)

        nx_graph.add_edge(
            each_file,
            each_related_file.name,
            related_symbols=list(related_symbols)
        )

print(f"NetworkX graph created with {nx_graph.number_of_nodes()} nodes and {nx_graph.number_of_edges()} edges.")

for src, dest, data in nx_graph.edges(data=True):
    print(f"{src} -> {dest}, related symbols: {data['related_symbols']}")

Output:

NetworkX graph created with 13 nodes and 27 edges.
src/server.rs -> src/main.rs, related symbols: ['server_main']
src/main.rs -> src/graph.rs, related symbols: ['default']
src/main.rs -> examples/mini.rs, related symbols: ['default']
src/main.rs -> src/server.rs, related symbols: ['main']
src/symbol.rs -> src/graph.rs, related symbols: ['link_file_to_symbol', 'list_references', 'list_references_by_definition', 'id', 'enhance_symbol_to_symbol', 'add_file', 'add_symbol', 'list_definitions', 'list_symbols', 'new', 'link_symbol_to_symbol', 'get_symbol']
...

More examples can be found here.

Others

We also provide a CLI and additional usage options, making it easy to directly export CSV files or start an HTTP service.

See usage page.

Goal & Motivation

[!TIP] Create a file relationship index with:

  • low cost
  • acceptable accuracy
  • high versatility for nearly any code repository

Code navigation is a fascinating subject that plays a pivotal role in various domains, such as:

  • Guiding the context during the development process within an IDE.
  • Facilitating more convenient code browsing on websites.
  • Analyzing the impact of code changes in Continuous Integration (CI) systems.
  • ...

In the past, I endeavored to apply LSP/LSIF technologies and techniques like Github's Stack-Graphs to impact analysis, encountering different challenges along the way. For our needs, a method akin to Stack-Graphs aligns most closely with our expectations. However, the challenges are evident: it requires crafting highly language-specific rules, which is a considerable investment for us, given that we do not require such high precision data.

We attempt to make some trade-offs on the challenges currently faced by stack-graphs to achieve our expected goals to a certain extent:

  • Zero repo-specific configuration: It can be applied to most languages and repositories without additional configuration.
  • Low extension cost: adding rules for languages is not high.
  • Acceptable precision: We have sacrificed a certain level of precision, but we also hope that it remains at an acceptable level.

How it works

Gossiphs constructs a graph that interconnects symbols of definitions and references.

  1. Extract imports and exports: Identify the imports and exports of each file.
  2. Connect nodes: Establish connections between potential definition and reference nodes.
  3. Refine edges with commit histories: Utilize commit histories to refine the relationships between nodes.

Unlike stack-graphs, we have omitted the highly complex scope analysis and instead opted to refine our edges using commit histories. This approach significantly reduces the complexity of rule writing, as the rules only need to specify which types of symbols should be exported or imported for each file.

While there is undoubtedly a trade-off in precision, the benefits are clear:

  1. Minimal impact on accuracy: In practical scenarios, the loss of precision is not as significant as one might expect.
  2. Commit history relevance: The use of commit history to reflect the influence between code segments aligns well with our objectives.
  3. Language support: We can easily support the vast majority of programming languages, meeting the analysis needs of various types of repositories.

Precision

Static analysis has its limits, such as dynamic binding. Therefore, it is unlikely to achieve the level of accuracy provided by LSP, but it can offer sufficient accuracy in the areas where it is primarily used.

The method we use to demonstrate accuracy is to compare the results with those of LSP/LSIF. It must be admitted that static inference is almost impossible to obtain all reference relationships like LSP.

You can further combine your own needs and use other methods such as tfidf to process the results to meet more complex requirements.

Repo Coverage of LSP Edges by Gossiphs
https://github.com/go-gorm/gorm 442/499 = 88.5 %
https://github.com/gin-gonic/gin 238/252 = 94.4%

Contribution

The project is still in a very early and experimental stage. If you are interested, please leave your thoughts through an issue. In the short term, we hope to build better support for more languages.

You just need to:

  1. Edit rules in src/rule.rs
  2. Test it in src/extractor.rs
  3. Try it with your repo in src/graph.rs

Tree-sitter Playground is a good helper.

License

Apache 2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gossiphs-0.11.2.tar.gz (47.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

gossiphs-0.11.2-cp38-abi3-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.8+Windows x86-64

gossiphs-0.11.2-cp38-abi3-manylinux_2_34_x86_64.whl (4.8 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.34+ x86-64

gossiphs-0.11.2-cp38-abi3-manylinux_2_34_i686.whl (4.8 MB view details)

Uploaded CPython 3.8+manylinux: glibc 2.34+ i686

gossiphs-0.11.2-cp38-abi3-macosx_11_0_arm64.whl (4.2 MB view details)

Uploaded CPython 3.8+macOS 11.0+ ARM64

gossiphs-0.11.2-cp38-abi3-macosx_10_12_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8+macOS 10.12+ x86-64

File details

Details for the file gossiphs-0.11.2.tar.gz.

File metadata

  • Download URL: gossiphs-0.11.2.tar.gz
  • Upload date:
  • Size: 47.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.8

File hashes

Hashes for gossiphs-0.11.2.tar.gz
Algorithm Hash digest
SHA256 b9fa5d5eb2ae5ef3840fab629c2fa57bf3f3bb1e5a4c6fc33315ce5f724b08b0
MD5 032791a0d8fefa53b5fd5aaf767bab3a
BLAKE2b-256 b5063b2ad93f5894b166a661d9f9df86c9fa597bb6e9bd4098d21b3c82c82ab4

See more details on using hashes here.

File details

Details for the file gossiphs-0.11.2-cp38-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for gossiphs-0.11.2-cp38-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 7f00da76d432ede9ecf0283d3b8134086d2cfa58fc5ffb6cae389ea0e24abdec
MD5 9d99bea04dae7fea252e66ee7f12db63
BLAKE2b-256 3339bb31f6dd788398177f105764a677090f11008a1285f4ed2b73ac3286226c

See more details on using hashes here.

File details

Details for the file gossiphs-0.11.2-cp38-abi3-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for gossiphs-0.11.2-cp38-abi3-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 99e1edbb2678b8d368e1bf93145a1db8183f908beb3a1d14d51dd8d42e2faa0e
MD5 6e52e0a2a31079e7ca1f3acfcbd2cd40
BLAKE2b-256 3bb5cbc38a42c162ab6ef1efb75794e5b3b594ceef1a9581f9fdf98a21751230

See more details on using hashes here.

File details

Details for the file gossiphs-0.11.2-cp38-abi3-manylinux_2_34_i686.whl.

File metadata

File hashes

Hashes for gossiphs-0.11.2-cp38-abi3-manylinux_2_34_i686.whl
Algorithm Hash digest
SHA256 ff868030c1767861a63c02da6ec4e247dc687ac49ef5d058e5ed10a23c2810f9
MD5 e2cb298cf11e343592e57e71915504c6
BLAKE2b-256 23b5439d331cfc7cad3f1cb58af1864b6f62a3aa7ea7fe5e2a99595756e05f5d

See more details on using hashes here.

File details

Details for the file gossiphs-0.11.2-cp38-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for gossiphs-0.11.2-cp38-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd39bdf71d019d5012fea4741d60af74397857063144f2b4452d007a951dbf09
MD5 4eed748316068dfc1dd92868aaeb61bb
BLAKE2b-256 bc23ab4eb440582d96708b0e97f7e99dff3f4724c915a7851c7660f00a83187f

See more details on using hashes here.

File details

Details for the file gossiphs-0.11.2-cp38-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for gossiphs-0.11.2-cp38-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a510dfa9c625583eab5aabb69f6f913f4966ee42090b3125a95b2adc20f9ed76
MD5 3f90c1985c529f5a8074e90d2a7a62ca
BLAKE2b-256 13dbe3f9630905262fea7133d9b292dd072d24a92596ff7726f58551b0f01725

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page