{"id":24750890,"url":"https://github.com/scopeo-project/scopeo-execution-recorder","last_synced_at":"2025-08-20T21:10:56.069Z","repository":{"id":224515360,"uuid":"763009865","full_name":"scopeo-project/scopeo-execution-recorder","owner":"scopeo-project","description":null,"archived":false,"fork":false,"pushed_at":"2025-05-13T07:32:11.000Z","size":181,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-29T09:03:09.248Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Smalltalk","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/scopeo-project.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-02-25T10:14:25.000Z","updated_at":"2025-05-13T07:32:15.000Z","dependencies_parsed_at":"2024-04-01T12:45:51.828Z","dependency_job_id":"75fff1cc-c93f-47d9-a6fa-55486e68835a","html_url":"https://github.com/scopeo-project/scopeo-execution-recorder","commit_stats":null,"previous_names":["scopeo-project/scopeo-trace-recorder","scopeo-project/scopeo-execution-recorder"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/scopeo-project/scopeo-execution-recorder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scopeo-project%2Fscopeo-execution-recorder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scopeo-project%2Fscopeo-execution-recorder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scopeo-project%2Fscopeo-execution-recorder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scopeo-project%2Fscopeo-execution-recorder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scopeo-project","download_url":"https://codeload.github.com/scopeo-project/scopeo-execution-recorder/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scopeo-project%2Fscopeo-execution-recorder/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264721587,"owners_count":23653960,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-28T09:49:18.614Z","updated_at":"2025-07-11T03:33:39.127Z","avatar_url":"https://github.com/scopeo-project.png","language":"Smalltalk","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Scopeo execution recorder\n\n![Unit tests badge](https://img.shields.io/github/actions/workflow/status/scopeo-project/scopeo-execution-recorder/tests.yml?label=Unit%20tests\u0026branch=main)\n\nA library to record a method execution in a given (or automatically created) process and reify it as a call graph in Pharo.\n\n## How to install?\n\n```st\nMetacello new\n  githubUser: 'scopeo-project' project: 'scopeo-execution-recorder'\n  commitish: 'main' path: 'src';\n  baseline: 'ScopeoExecutionRecorder';\n  load\n```\n\n## How to use it?\n\n*More information to come*\n\nSimply create an instance of the recorder.  \nIf needed, specify a block which must return true whenever the recorder should ignore the execution details of the method in argument.  \n\nStart the recorded execution by using the method `recordBlock: aBlock`:\n\n```st\n| recorder |\n\nrecorder := ScpExecutionRecorder new \n\tignore: [ :m | \n\t\t(m package name beginsWith: #Morph)\n\t\tor: [ m package name beginsWith: #FreeType ]\n\t];\n\trecordBlock: [ Transcript open ];\n  yourself.\n\nrecorder execution inspect. \"Inspect the traces. (More to come)\"\n```\n\nOr attach the newly created recorder to an existing process and resume the latter process:\n\n```st\n| recorder |\n\nrecorder := ScpExecutionRecorder new \n  attachToProcess: anExistingProcess;\n  yourself.\n\nanExistingProcess resume.\n\nrecorder execution inspect. \"Inspect the traces. (More to come)\"\n\n```\n\nOr attach to the context of a suspended process and resume that process:\n\n```st\n| recorder | \n\nrecorder := ScpExecutionRecorder new \n  attachToContext: anExistingProcess suspendedContext;\n  yourself\n\nanExistingProcess resume.\n\nrecorder execution inspect. \"Inspect the traces. (More to come)\"\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscopeo-project%2Fscopeo-execution-recorder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscopeo-project%2Fscopeo-execution-recorder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscopeo-project%2Fscopeo-execution-recorder/lists"}