Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
111 commits
Select commit Hold shift + click to select a range
f83fee2
added tree structure with relationship starter skeleton
shivasurya Feb 1, 2025
f9c0073
:ship: added relationship via tree datastructure
shivasurya Feb 2, 2025
c8ef06e
:ship: add processed tree nodes
shivasurya Feb 3, 2025
c3c47dc
refactor: optimize construct.go and move to tree based structure and …
shivasurya Feb 3, 2025
4e43a59
remove method name extraction logic
shivasurya Feb 3, 2025
ff15dac
refactor: move parsing logic to lang parser package - part 1 🚂
shivasurya Feb 5, 2025
0948785
refactor: move parsing logic to lang parser package - part 1 🚂
shivasurya Feb 5, 2025
18765ac
refactor: part 2 move the lang independent parsing
shivasurya Feb 6, 2025
10fb843
refactor: part 3 move object creation expr
shivasurya Feb 6, 2025
71b97a6
refactor: fixed log package
shivasurya Feb 6, 2025
b20acc6
refactor: revamp parsing logic and test
shivasurya Feb 6, 2025
df6dce8
refactor: add relevant model
shivasurya Feb 8, 2025
1dae059
refactor: add modifiable class
shivasurya Feb 9, 2025
26b7f0e
Merge branch 'main' into shiva/graph-relation
shivasurya Feb 12, 2025
00939a3
moved to relational tree approach
shivasurya Feb 15, 2025
b1f39b9
refactor: add db layer table statements
shivasurya Feb 15, 2025
6716504
refactor: datastructure normalization before persist :sad: most tough…
shivasurya Feb 15, 2025
db46405
refactor: datastructure normalization before persist :sad: most tough…
shivasurya Feb 16, 2025
098ffd8
refactor: datastructure normalization before persist :sad: most tough…
shivasurya Feb 17, 2025
9544aa4
refactor: refining relationship nodes
shivasurya Feb 19, 2025
e667178
refactor: removed unwanted code
shivasurya Feb 19, 2025
395fad9
add sqlite db for relational support
shivasurya Feb 19, 2025
d2657ee
fix: added missing semicolon in db schema
shivasurya Feb 21, 2025
dbf8e47
fix: few db column fixes and requires refactor on the goroutine level…
shivasurya Feb 21, 2025
4fc9c3b
removed duplicates while processing ast nodes
shivasurya Feb 23, 2025
e320d74
:rocket: finally db is ready and parsing with relationship is happening
shivasurya Feb 24, 2025
17d989f
fix lint issue
shivasurya Feb 24, 2025
b7ac6f7
persisted important entitiy into database💿
shivasurya Feb 24, 2025
c2097d9
Merge branch 'main' into shiva/graph-relation
shivasurya Feb 26, 2025
b971c95
Parse Java method modifiers and improve modifier handling
shivasurya Feb 27, 2025
c0e7bc8
Add Java import declaration parsing support
shivasurya Feb 27, 2025
447ac84
Add package declaration parsing support and fix package table name
shivasurya Feb 27, 2025
6f84856
Refactor: Extract isIdentifier function and simplify package parsing
shivasurya Feb 27, 2025
8d739af
feat: Enhance class declaration storage in database
shivasurya Feb 28, 2025
f5e3530
feat: Enhance field declaration parsing and database storage
shivasurya Feb 28, 2025
049aeff
added reftype test
shivasurya Feb 28, 2025
49d5977
Enhance method_call table schema and tracking: add qualified_name, pa…
shivasurya Feb 28, 2025
f7732e5
Enhance binary expression table schema and update insert logic
shivasurya Feb 28, 2025
1456a03
removed comments :ship:
shivasurya Feb 28, 2025
8c5a5c4
started solving join based relationship + making cartesian product ir…
shivasurya Mar 1, 2025
a5db88f
finally 🚀: closure table is computed
shivasurya Mar 1, 2025
4bf86fb
Merge branch 'main' into shiva/graph-relation
shivasurya Mar 2, 2025
efbda5b
Merge branch 'main' into shiva/graph-relation
shivasurya Mar 28, 2025
9d0bb78
lint fixes 🏹
shivasurya Mar 28, 2025
2b6074c
fix testcases
shivasurya Mar 28, 2025
97c0095
add few more testcases
shivasurya Mar 28, 2025
935c161
Merge branch 'main' into shiva/graph-relation
shivasurya Mar 29, 2025
80adf1f
testcase fix for parse class
shivasurya Mar 29, 2025
a7b00a4
fix test issue
shivasurya Mar 29, 2025
44bb5b2
add test for parse field
shivasurya Mar 30, 2025
0d6897f
fix if statement test
shivasurya Mar 30, 2025
d257076
fixed testcase for package import
shivasurya Mar 30, 2025
7709ba3
add statement testcase
shivasurya Mar 30, 2025
aab27b0
added javadoc test
shivasurya Mar 30, 2025
009bd0a
added expr statement test
shivasurya Mar 30, 2025
741c225
added util test
shivasurya Mar 30, 2025
d376d40
added test for method parsing
shivasurya Mar 30, 2025
e61d754
added ast evaluator for condition
shivasurya Apr 1, 2025
88373c4
Merge branch 'main' into shiva/graph-relation
shivasurya Apr 1, 2025
5eda600
remove basic evaluator
shivasurya Apr 2, 2025
8684f63
added antlr based expression parser
shivasurya Apr 2, 2025
9c4ca8d
Merge branch 'main' into shiva/graph-relation
shivasurya Apr 6, 2025
bc59d7a
added basic evaluator
shivasurya Apr 7, 2025
ecdedb3
added entity detection in conditions
shivasurya Apr 7, 2025
e797004
added relationship detection code
shivasurya Apr 7, 2025
60a9c41
finally integrated optimized evaluator with relationship instead of c…
shivasurya Apr 8, 2025
a0627ee
refactor condition evaluator
shivasurya Apr 9, 2025
669fefc
finally something truly relational merge reducing time complexity
shivasurya Apr 9, 2025
fefac5e
cleanup 🧙
shivasurya Apr 10, 2025
44b5546
fix few entity name
shivasurya Apr 11, 2025
5053a48
finally fixed all pieces together to make the whole evaluator switch …
shivasurya Apr 11, 2025
2e66bf5
optimized entity selection
shivasurya Apr 11, 2025
a4d6a69
basic working code for method_declaration
shivasurya Apr 12, 2025
6132591
optimized the filtering
shivasurya Apr 12, 2025
0c91ecb
added visibility
shivasurya Apr 12, 2025
2b79036
fix output function finally 🚀
shivasurya Apr 13, 2025
3abf899
Fixed some concurrency issue
shivasurya Apr 13, 2025
acba116
Merge branch 'main' into shiva/graph-relation
shivasurya Apr 13, 2025
1a21c3b
fix relational case
shivasurya Apr 13, 2025
b6be625
start fixing relational part
shivasurya Apr 13, 2025
b81d0d9
nearly relationship has touched
shivasurya Apr 13, 2025
9170378
made the relationship working for couple of entities. now need to gen…
shivasurya Apr 13, 2025
0a4bf22
generalizing relationship based queries - part 1
shivasurya Apr 14, 2025
c971baf
formatting code and testcase for evaluator
shivasurya Apr 14, 2025
e30ac23
fix import
shivasurya Apr 14, 2025
4cfde69
added run file easy launch and debug
shivasurya Apr 14, 2025
c1fb773
fix testcase
shivasurya Apr 14, 2025
93e4588
fix filtering
shivasurya Apr 14, 2025
187d28f
fixed output selector impl listener
shivasurya Apr 15, 2025
cd714af
removed duplicate select output
shivasurya Apr 15, 2025
b2ff5ac
fix few lint
shivasurya Apr 15, 2025
3b4591f
fix evaluator testcases
shivasurya Apr 15, 2025
9747095
fix testcase for listener impl
shivasurya Apr 15, 2025
080332d
fix lint
shivasurya Apr 15, 2025
a29a4b5
Merge branch 'main' into shiva/graph-relation
shivasurya Apr 15, 2025
8521837
added testcase for variable.go
shivasurya Apr 15, 2025
ade7b1d
added expr test
shivasurya Apr 15, 2025
edcda45
added member_test.go
shivasurya Apr 15, 2025
ee4072c
fix member_test.go
shivasurya Apr 15, 2025
ebbe74e
Merge branch 'main' into shiva/graph-relation
shivasurya Apr 27, 2025
fe4c302
added proxyenv for model
shivasurya Apr 28, 2025
a10c199
added test for db.go
shivasurya Apr 29, 2025
ce6d59c
added tests for expr
shivasurya Apr 29, 2025
e969248
fixed lint issues
shivasurya Apr 29, 2025
5f3797a
added test for package.go
shivasurya Apr 29, 2025
af3805b
updated lint version
shivasurya Apr 29, 2025
b886197
added lint action
shivasurya Apr 29, 2025
533e6ba
added javadoc test
shivasurya Apr 29, 2025
c9b87e8
added test for rest of model files
shivasurya Apr 29, 2025
e499d47
added constuct test
shivasurya Apr 29, 2025
7b04260
added few more tests
shivasurya Apr 29, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
with:
go-version: '1.23.5'
- name: golangci-lint
uses: golangci/golangci-lint-action@v5
uses: golangci/golangci-lint-action@v7.0.0
with:
version: latest
working-directory: sourcecode-parser
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,11 @@ docs/public/rules/*.json
.DS_Store

node_modules

test-src/android/pathfinder.db
.vscode/cody.json

coverage.out
coverage.html

.windsurfrules
Loading
Loading