{"id":50434051,"url":"https://github.com/jefrisibarani/tobasa-cpp","last_synced_at":"2026-05-31T16:01:55.398Z","repository":{"id":352190516,"uuid":"1179194258","full_name":"jefrisibarani/tobasa-cpp","owner":"jefrisibarani","description":"Tobasa C++ Framework - Web Server, SQL Abstraction, Laboratory Information System (LIS)","archived":false,"fork":false,"pushed_at":"2026-04-18T09:24:55.000Z","size":7890,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-18T11:32:47.450Z","etag":null,"topics":["asio","hl7","http-client","http-server","lis","orm-framework","rest","sql","websocket"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jefrisibarani.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-11T19:33:07.000Z","updated_at":"2026-04-18T09:24:59.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/jefrisibarani/tobasa-cpp","commit_stats":null,"previous_names":["jefrisibarani/tobasa-cpp"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/jefrisibarani/tobasa-cpp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jefrisibarani%2Ftobasa-cpp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jefrisibarani%2Ftobasa-cpp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jefrisibarani%2Ftobasa-cpp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jefrisibarani%2Ftobasa-cpp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jefrisibarani","download_url":"https://codeload.github.com/jefrisibarani/tobasa-cpp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jefrisibarani%2Ftobasa-cpp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33737692,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-31T02:00:06.040Z","response_time":95,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["asio","hl7","http-client","http-server","lis","orm-framework","rest","sql","websocket"],"created_at":"2026-05-31T16:01:54.511Z","updated_at":"2026-05-31T16:01:55.382Z","avatar_url":"https://github.com/jefrisibarani.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Tobasa C++ Libraries\n\nTobasa is a collection of small, focused C++ libraries that form the\nbuilding blocks web‑service applications.\\\nEach sub‑project is self‑contained; you can link only the libraries you need.\n\n## Projects in this repository\n\n| Module         | Description |\n|----------------|-------------|\n| `tobasa`       | **Common library** – utilities such as logging, configuration, JSON,\n|                | date/time, string helpers, plugins, task manager, etc. \n|                | This is the foundation for all other Tobasa components. |\n| `tobasahttp`   | **HTTP library** – Asio‑based HTTP/1.1 and HTTP/2(with nghttp) server and client with\n|                | optional TLS, WebSocket, multipart parsing, etc. |\n| `tobasaweb`    | **Web App/REST framework** – routing, controllers, middleware, JWT/session\n|                | support built on top of `tobasahttp` and `tobasasql`. |\n| `tobasasql`    | **SQL abstraction** – lightweight wrapper around SQLite/MySQL/Postgres\n|                | and MSSQL(through ODBC and ADO) with connection pools, query helpers. |\n| `tobasalis`    | **LIS (Lab Instrument) library** – message parsing (LIS2‑A2/ASTM and HL7), \n|                | TCP/serial transports, session management. |\n| `webservice`   | **Example web service application** – integrates the above libraries\n|                | into a runnable server with configuration and database helpers. |\n| `webclient`    | **HTTP client demo** – simple client using `tobasahttp`.\n\n\n\n## Repository layout\n\n```\nsrc/                   \n  app_server/         # sample webservice application\n  ext/                # bundled third-party libs \n  samples/            # samples projects\n  tobasa/             # core helpers library\n  tobasahttp/         # HTTP transport library\n  tobasaweb/          # Web App framework library\n  tobasasql/          # SQL abstraction library\n  tobasalis/          # LIS protocol support  library\nCMakeLists.txt        # top-level CMake project\nCMakeDefaults.txt     # machine-specific default paths\nbuild/                # out-of-source build directory\n_output/              # packaged build result\n```\n\n## Build\nTobasa uses CMake as the build system. The project is currently tested with\nMSVC on Windows and GCC on Linux.\n\n### Windows\n- Visual Studio 2017\n- Visual Studio 2022\n\n### Ubuntu Server 20.04.5\n- GCC 9.4.0\n- GCC 11.1.0\n\nSee [build_all.cmd](./build_all.cmd) and [build_all.sh](./build_all.sh) for example\\\nSee also [BUILD](./BUILD.md) for more information \n\n\n## License\n\nTobasa libraries are licensed under the GNU LGPL (Lesser General Public License).\\\nTobasa applications are licensed under the GNU GPL (General Public License).\n\n---\n\n(See also each subdirectory’s README for detailed information on that module.)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjefrisibarani%2Ftobasa-cpp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjefrisibarani%2Ftobasa-cpp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjefrisibarani%2Ftobasa-cpp/lists"}