{"id":16147808,"url":"https://github.com/bakercp/ofxio","last_synced_at":"2025-03-16T09:33:34.726Z","repository":{"id":8334710,"uuid":"9889697","full_name":"bakercp/ofxIO","owner":"bakercp","description":"A collection of I/O core utils including a directory watcher, file filters and ordering, compression and more.","archived":false,"fork":false,"pushed_at":"2023-12-31T02:41:51.000Z","size":1807,"stargazers_count":83,"open_issues_count":8,"forks_count":31,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-02-27T07:12:03.708Z","etag":null,"topics":["addon","bytebuffer","c-plus-plus","compression","directory-watcher","openframeworks","polling","threads"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"greenrobot/EventBus","license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bakercp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-05-06T15:20:52.000Z","updated_at":"2024-12-27T22:52:41.000Z","dependencies_parsed_at":"2023-01-11T20:10:53.268Z","dependency_job_id":null,"html_url":"https://github.com/bakercp/ofxIO","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bakercp%2FofxIO","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bakercp%2FofxIO/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bakercp%2FofxIO/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bakercp%2FofxIO/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bakercp","download_url":"https://codeload.github.com/bakercp/ofxIO/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243809875,"owners_count":20351407,"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":["addon","bytebuffer","c-plus-plus","compression","directory-watcher","openframeworks","polling","threads"],"created_at":"2024-10-10T00:27:36.602Z","updated_at":"2025-03-16T09:33:33.821Z","avatar_url":"https://github.com/bakercp.png","language":"C","readme":"# ofxIO\n\n## Description\n\nA collection of I/O core utils for [openFrameworks](https://openframeworks.cc).\n\n## Features\n\n- `ofEvent`-based Directory Watcher\n  - Watch for changes in your directories.\n  - _NOTE: `Poco::DirectoryWatcher` was added in Poco 1.5+.  These files are included for backward compatibility._\n- File filters.\n- Compression\n  - Zip, deflate, gzip, [snappy](https://github.com/google/snappy), [LZ4](https://github.com/lz4/lz4), [brotli](https://github.com/google/`brotli`)\n  - Encoding`.`\n    - COBS, `SLIP`, Hex Binary, Base64, etc.\n- `ByteBuffer`\n  - Tools for interacting with raw byte buffers.\n  - `ByteBuffer` streams.\n  - `ByteBufferReader`.\n  - `ByteBufferWriter`.\n  - `ByteBufferStream`.\n- Recursive File Listing `Poco::RecursiveDirectoryIterator`\n  - List files and folders inside of directories.\n  - Use custom file filters to return relevant results.\n    - _NOTE: `Poco::RecursiveDirectoryIterator` was added in Poco 1.6+.  These files are included under the `ofxIO` namespace for backward compatibility._\n- Correct alphanumeric filename ordering\n  - _Note: Implemented using [alphanum.hpp](http://www.davekoelle.com/files/alphanum.hpp)_\n\n## Getting Started\n\n### Bootstrap\n\nEvery effort is made to keep the repository small. Thus sometimes third-party libraries need to be compiled and example data needs to be downloaded. The bootstrap script takes care of this.\n\n-   From the `scripts/` directory ...\n    -   `./bootstrap.sh`\n\n### Generate Project Files\n\n1.   Generate the example project files using the openFrameworks [Project Generator](http://openframeworks.cc/learning/01_basics/how_to_add_addon_to_project/).\n2.   Open the Project Files in your Integrated Development Environment (IDE), or run `make \u0026\u0026 make run` from the example directory.\n\nFor more, see [docs/GETTING_STARTED.md](docs/GETTING_STARTED.md).\n\n## Support\n\nSee [docs/SUPPORT.md](docs/SUPPORT.md).\n\n## Documentation\n\nAPI documentation can be found [here](https://bakercp.github.io/ofxAddon/).\n\n## Requirements\n\n-   ofxPoco (included with openFrameworks)\n\n## Compatibility\n\n### Supported Platforms\n\n| Platform          | Build Status | Notes  |\n|-------------------|--------------|--------|\n| **osx**           |      ❓      | _None_ |\n| **linux**         |      ❓      | _None_ |\n| **Linux64**       |      ❓      | _None_ |\n| **linuxarmv6l**   |      ❓      | _None_ |\n| **msys2**         |      ❓      | _None_ |\n| **vs**            |      ❓      | _None_ |\n| **ios**           |      ❓      | _None_ |\n| **tvos**          |      ❓      | _None_ |\n| **emscripten**    |      ❓      | _None_ |\n| **android**       |      ❓      | _None_ |\n\n|      Status      | Symbol |\n|------------------|--------|\n| **Tested**       |   ✅   | \n| **Untested**     |   ⚠️   |\n| **Incompatible** |   ❌   |\n| **Unknown**      |   ❓   |\n\nLinux, macOS [![Build Status](https://travis-ci.org/bakercp/ofxIO.svg?branch=master)](https://travis-ci.org/bakercp/ofxIO)\n\nVisual Studio, MSYS [![Build status](https://ci.appveyor.com/api/projects/status/krr0ck8ffida8nsj/branch/master?svg=true)](https://ci.appveyor.com/project/bakercp/ofxio/branch/master)\n\n### Build Status\n\nThe `stable` branch of this repository is meant to be compatible with the openFrameworks [stable branch](https://github.com/openframeworks/openFrameworks/tree/stable), which corresponds to the latest official openFrameworks release.\n\nThe `master` branch of this repository is meant to be compatible with the openFrameworks [master branch](https://github.com/openframeworks/openFrameworks/tree/master).\n\nSome past openFrameworks releases are supported via tagged versions, but only `stable` and `master` branches are actively supported.\n\n### Branches\n\nThe `stable` branch of this repository is meant to be compatible with the openFrameworks [stable branch](https://github.com/openframeworks/openFrameworks/tree/stable), which corresponds to the latest official openFrameworks release.\n\nThe `master` branch of this repository is meant to be compatible with the openFrameworks [master branch](https://github.com/openframeworks/openFrameworks/tree/master). This is often the same as the `stable` branch.\n\nThe `develop` branch of this repository is used by developers to test new features. It is usually compatible with the openFrameworks [master branch](https://github.com/openframeworks/openFrameworks/tree/master), but is compatibility is not guaranteed. The `develop` branch should not be used for production.\n\nSome past openFrameworks releases are supported via tagged versions and [releases](releases/), but only `stable` and `master` branches are actively supported.\n\n## Versioning\n\nThis project uses [Semantic Versioning](http://semver.org/spec/v2.0.0.html), although strict adherence will only come into effect at version 1.0.0.\n\n## Changelog\n\nSee [CHANGELOG.md](CHANGELOG.md)\n\n## Code of Conduct\n\nSee [CODE_OF_CONDUCT.md](CODE_OF_CONDUCT.md)\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md)\n\n## Licensing\n\nSee [LICENSE.md](LICENSE.md)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbakercp%2Fofxio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbakercp%2Fofxio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbakercp%2Fofxio/lists"}