Compare commits
2 Commits
3da0da6217
...
main-2.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fbcf438381 | ||
| 2b8a900d12 |
@@ -111,11 +111,11 @@ persona/bio generation later.
|
|||||||
The full multinational dataset is kept as-is (106 countries for forenames,
|
The full multinational dataset is kept as-is (106 countries for forenames,
|
||||||
75 for surnames) rather than trimmed to `locations.json`'s current country
|
75 for surnames) rather than trimmed to `locations.json`'s current country
|
||||||
list, so it doesn't need re-sourcing if more countries are added later.
|
list, so it doesn't need re-sourcing if more countries are added later.
|
||||||
`NamesByCountry::SampleName()` returns no result for a country present in
|
`SampleName()` (a free helper in `generate_users.cc`) returns no result for
|
||||||
neither file; of the countries in `locations.json`, that's currently `KE`,
|
a country present in neither file; of the countries in `locations.json`,
|
||||||
`SE`, `SG`, `TH`, `VN`, and `ZA` — `GenerateUsers` skips cities in those
|
that's currently `KE`, `SE`, `SG`, `TH`, `VN`, and `ZA` — `GenerateUsers`
|
||||||
countries the same way brewery generation skips cities whose enrichment
|
skips cities in those countries the same way brewery generation skips
|
||||||
lookup fails.
|
cities whose enrichment lookup fails.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
# Biergarten Pipeline
|
# Biergarten Pipeline
|
||||||
|
|
||||||
A C++20 command-line pipeline that samples city records from local JSON,
|
A C++20 command-line pipeline that samples city records from local JSON,
|
||||||
enriches each with Wikipedia context, and generates bilingual brewery names and
|
enriches each with Wikipedia context, and generates bilingual brewery names
|
||||||
descriptions via a local GGUF model or a deterministic mock.
|
and descriptions plus locale-grounded user profiles via a local GGUF model or
|
||||||
|
a deterministic mock.
|
||||||
|
|
||||||
> **This pipeline produces AI-generated data.** It is not a source of truth for
|
> **This pipeline produces AI-generated data.** It is not a source of truth for
|
||||||
> brewing techniques, cultural representation, or local-language accuracy. See
|
> brewing techniques, cultural representation, or local-language accuracy. See
|
||||||
@@ -45,6 +46,7 @@ step.
|
|||||||
| Beer reviews and ratings | Stable brewery fixtures with enough context to anchor review pages |
|
| Beer reviews and ratings | Stable brewery fixtures with enough context to anchor review pages |
|
||||||
| Social follow relationships | Repeatable brewery entities for feeds, follows, and saved lists |
|
| Social follow relationships | Repeatable brewery entities for feeds, follows, and saved lists |
|
||||||
| Geospatial brewery experiences | Latitude, longitude, and country-level metadata |
|
| Geospatial brewery experiences | Latitude, longitude, and country-level metadata |
|
||||||
|
| User accounts and profiles | Locale-grounded names, bios, and an auth-ready email/date-of-birth pair for seeding real accounts |
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -219,34 +221,45 @@ environment variables listed above to match your run.
|
|||||||
### Pipeline Stages
|
### Pipeline Stages
|
||||||
|
|
||||||
| Stage | Implementation |
|
| Stage | Implementation |
|
||||||
| -------- | --------------------------------------------------------------------------------------------------------------------------------------- |
|
| --------------- | ----------------------------------------------------------------------------------------------------------------------------------------- |
|
||||||
| Load | `JsonLoader::LoadLocations()` reads `locations.json` into typed `Location` records. |
|
| Load | `ICuratedDataService` (`CuratedJsonDataService`) reads `locations.json`, `personas.json`, `forenames-by-country.json`, and `surnames-by-country.json` (paths supplied via a `CuratedDataFilePaths` DTO at construction) into typed records, caching each after its first load. `--mocked` runs use `MockCuratedDataService`'s fixed in-memory dataset instead. |
|
||||||
| Sample | `BiergartenPipelineOrchestrator::QueryCitiesWithCountries()` samples `--location-count` locations per run (default `10`). |
|
| Sample | `BiergartenPipelineOrchestrator::QueryCitiesWithCountries()` samples `--location-count` locations per run (default `10`). |
|
||||||
| Enrich | `WikipediaEnrichmentService` fetches brewing and beer-related context. Keeps going when a lookup fails. `--mocked` runs use `MockEnrichmentService` instead and skip Wikipedia entirely. |
|
| Enrich | `WikipediaEnrichmentService` fetches brewing and beer-related context. Keeps going when a lookup fails. `--mocked` runs use `MockEnrichmentService` instead and skip Wikipedia entirely. |
|
||||||
| Generate | `MockGenerator` or `LlamaGenerator` produces brewery names and descriptions in English and the local language. |
|
| Generate Users | `GenerateUsers()` samples a persona and a forename/surname pair per enriched city (skipping countries with no name data), then `MockGenerator` or `LlamaGenerator` produces a username, bio, and activity weight around the sampled name. |
|
||||||
| Store | `SqliteExportService` writes each successful brewery into a fresh dated `.sqlite` database with normalized location and brewery tables. |
|
| Generate Breweries | `MockGenerator` or `LlamaGenerator` produces brewery names and descriptions in English and the local language. |
|
||||||
|
| Store | `SqliteExportService` writes each successful user and brewery into a fresh dated `.sqlite` database with normalized `locations`, `users`, and `breweries` tables. |
|
||||||
| Log | `spdlog` writes results and warnings to the console. |
|
| Log | `spdlog` writes results and warnings to the console. |
|
||||||
|
|
||||||
If enrichment or generation fails for a city, that city is skipped and the
|
If name sampling, enrichment, or generation fails for a city, that city is
|
||||||
pipeline continues.
|
skipped and the pipeline continues. `GenerateUsers()` runs before
|
||||||
|
`GenerateBreweries()` in `BiergartenPipelineOrchestrator::Run()`.
|
||||||
|
|
||||||
### Key Components
|
### Key Components
|
||||||
|
|
||||||
- `src/main.cc` — argument parsing and Boost.DI composition root.
|
- `src/main.cc` — argument parsing and Boost.DI composition root.
|
||||||
- `JsonLoader` — validates curated location input.
|
- `CuratedJsonDataService` — implements `ICuratedDataService`; takes a
|
||||||
|
`CuratedDataFilePaths` DTO (locations/personas/forenames/surnames paths) in
|
||||||
|
its constructor, then parses and validates curated location, persona, and
|
||||||
|
forename/surname JSON, memoizing each result after its first load on a
|
||||||
|
given instance. `MockCuratedDataService` is the in-memory substitute (4
|
||||||
|
fixed locations, 3 personas, and name data for `US`/`DE`/`FR`/`BE`) used in
|
||||||
|
`--mocked` runs.
|
||||||
- `WikipediaEnrichmentService` — queries Wikipedia extracts, caches results,
|
- `WikipediaEnrichmentService` — queries Wikipedia extracts, caches results,
|
||||||
returns empty context on failure. `MockEnrichmentService` is the no-op
|
returns empty context on failure. `MockEnrichmentService` is the no-op
|
||||||
substitute used in `--mocked` runs.
|
substitute used in `--mocked` runs.
|
||||||
- `LlamaGenerator` — formats prompts for Gemma 4, validates JSON output, retries
|
- `LlamaGenerator` — formats prompts for Gemma 4, validates JSON output for
|
||||||
malformed responses up to three times with corrective feedback in the
|
both `GenerateBrewery` and `GenerateUser`, retries malformed responses up
|
||||||
retry prompt. The token budget is fixed across attempts; it is not raised
|
to three times with corrective feedback in the retry prompt. The token
|
||||||
automatically on truncation.
|
budget is fixed across attempts; it is not raised automatically on
|
||||||
- `MockGenerator` — stable hash-based output so the same city input always
|
truncation.
|
||||||
produces the same brewery.
|
- `MockGenerator` — stable hash-based output so the same city/persona/name
|
||||||
- `SqliteExportService` — creates a dated SQLite file per run and persists each
|
input always produces the same brewery or user.
|
||||||
successful brewery into normalized tables.
|
- `SqliteExportService` — creates a dated SQLite file per run and persists
|
||||||
|
each successful user and brewery into normalized tables.
|
||||||
- Brewery payloads include English and local-language name and description
|
- Brewery payloads include English and local-language name and description
|
||||||
fields.
|
fields. User payloads carry a sampled first/last name and gender, an
|
||||||
|
LLM-generated username/bio/activity weight, and a programmatically
|
||||||
|
generated (not LLM-authored) unique email and date of birth.
|
||||||
|
|
||||||
### Runtime Behaviour
|
### Runtime Behaviour
|
||||||
|
|
||||||
@@ -266,6 +279,18 @@ valid output on the first pass; the retry path is kept for resilience.
|
|||||||
`MockGenerator` uses stable hashes for repeatable output in demos and Storybook
|
`MockGenerator` uses stable hashes for repeatable output in demos and Storybook
|
||||||
runs.
|
runs.
|
||||||
|
|
||||||
|
`CuratedJsonDataService` memoizes each of `LoadLocations()`, `LoadPersonas()`,
|
||||||
|
`LoadForenamesByCountry()`, and `LoadSurnamesByCountry()` independently the
|
||||||
|
first time each is called, since `BiergartenPipelineOrchestrator` owns a
|
||||||
|
single `ICuratedDataService` instance for the whole run — later calls return
|
||||||
|
the cached result instead of re-parsing.
|
||||||
|
|
||||||
|
`GenerateUsers()` samples a forename/surname pair per city via `SampleName()`,
|
||||||
|
keyed by the city's ISO 3166-1 code. Countries present in `locations.json`
|
||||||
|
but absent from either name fixture (currently `KE`, `SE`, `SG`, `TH`, `VN`,
|
||||||
|
`ZA`) are skipped, the same way a failed enrichment or generation call skips
|
||||||
|
a city — see ETHICS-AND-KNOWN-ISSUES.md's Names-by-Country Dataset section.
|
||||||
|
|
||||||
### Process Flow - Activity Diagram
|
### Process Flow - Activity Diagram
|
||||||
|
|
||||||

|

|
||||||
@@ -278,9 +303,10 @@ runs.
|
|||||||
|
|
||||||
## Generated Output
|
## Generated Output
|
||||||
|
|
||||||
Each successful run stores a `GeneratedBrewery` pair with the source location
|
Each successful run stores a `BreweryRecord` pair with the source location
|
||||||
and a `BreweryResult` payload. The same generated records are also written to a
|
and a `BreweryResult` payload, and a `UserRecord` pair with the source
|
||||||
fresh SQLite export file named with the current UTC timestamp.
|
location and a `UserResult` payload. The same generated records are also
|
||||||
|
written to a fresh SQLite export file named with the current UTC timestamp.
|
||||||
|
|
||||||
| Field | Meaning |
|
| Field | Meaning |
|
||||||
| ------------------- | ------------------------------------------ |
|
| ------------------- | ------------------------------------------ |
|
||||||
@@ -289,6 +315,17 @@ fresh SQLite export file named with the current UTC timestamp.
|
|||||||
| `name_local` | Brewery name in the local language. |
|
| `name_local` | Brewery name in the local language. |
|
||||||
| `description_local` | Brewery description in the local language. |
|
| `description_local` | Brewery description in the local language. |
|
||||||
|
|
||||||
|
| Field | Meaning |
|
||||||
|
| ----------------- | ----------------------------------------------------------------- |
|
||||||
|
| `first_name` | Sampled forename, copied from the curated name data (not LLM-invented). |
|
||||||
|
| `last_name` | Sampled surname, copied from the curated name data (not LLM-invented). |
|
||||||
|
| `gender` | Gender associated with the sampled forename in the source dataset. |
|
||||||
|
| `username` | LLM-generated handle. |
|
||||||
|
| `bio` | LLM-generated short biography. |
|
||||||
|
| `activity_weight` | Relative check-in/activity weight, reserved for a future J-curve activity profile. |
|
||||||
|
| `email` | Unique `@thebiergarten.app` address, generated programmatically from the sampled name. |
|
||||||
|
| `date_of_birth` | Randomized date of birth (age 19-48), generated programmatically. |
|
||||||
|
|
||||||
The log dump also includes city, country, state or province, ISO subdivision
|
The log dump also includes city, country, state or province, ISO subdivision
|
||||||
code, latitude, and longitude for each entry.
|
code, latitude, and longitude for each entry.
|
||||||
|
|
||||||
@@ -367,11 +404,17 @@ Silicon; CUDA or HIP/ROCm is detected on Linux when the toolkit is present.
|
|||||||
## Fixture Strategy
|
## Fixture Strategy
|
||||||
|
|
||||||
- `--mocked` for stable fixtures, repeatable screenshots, and Storybook runs.
|
- `--mocked` for stable fixtures, repeatable screenshots, and Storybook runs.
|
||||||
|
`MockCuratedDataService` swaps in for `CuratedJsonDataService`, so no
|
||||||
|
fixture files need to be present on disk.
|
||||||
- `--model` when geographically grounded content matters for demos.
|
- `--model` when geographically grounded content matters for demos.
|
||||||
- Keep `locations.json` structured enough to support discovery and future
|
- Keep `locations.json` structured enough to support discovery and future
|
||||||
filtering.
|
filtering.
|
||||||
- Treat SQLite output as seed material for the app's brewery domain, not
|
- `personas.json`, `forenames-by-country.json`, and
|
||||||
production data.
|
`surnames-by-country.json` are curated/vendored fixture data, not
|
||||||
|
LLM-generated — see ETHICS-AND-KNOWN-ISSUES.md's Names-by-Country Dataset
|
||||||
|
section for provenance.
|
||||||
|
- Treat SQLite output as seed material for the app's brewery and user
|
||||||
|
domains, not production data.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -382,6 +425,9 @@ Silicon; CUDA or HIP/ROCm is detected on Linux when the toolkit is present.
|
|||||||
| `tooling/pipeline/includes/` | Public headers and shared models. |
|
| `tooling/pipeline/includes/` | Public headers and shared models. |
|
||||||
| `tooling/pipeline/src/` | Implementation files. |
|
| `tooling/pipeline/src/` | Implementation files. |
|
||||||
| `tooling/pipeline/locations.json` | Curated city input copied into the build tree. |
|
| `tooling/pipeline/locations.json` | Curated city input copied into the build tree. |
|
||||||
|
| `tooling/pipeline/personas.json` | Curated user persona archetypes copied into the build tree. |
|
||||||
|
| `tooling/pipeline/forenames-by-country.json` | Vendored (CC0) forename data by ISO 3166-1 country code. |
|
||||||
|
| `tooling/pipeline/surnames-by-country.json` | Vendored (CC0) surname data by ISO 3166-1 country code. |
|
||||||
| `tooling/pipeline/prompts/` | System prompts used by the model-backed path. |
|
| `tooling/pipeline/prompts/` | System prompts used by the model-backed path. |
|
||||||
| `tooling/pipeline/runpod/` | Dockerfile, launcher, and RunPod pod template. |
|
| `tooling/pipeline/runpod/` | Dockerfile, launcher, and RunPod pod template. |
|
||||||
| `docs/pipeline/diagrams/` | Architecture and pipeline diagrams. |
|
| `docs/pipeline/diagrams/` | Architecture and pipeline diagrams. |
|
||||||
@@ -396,6 +442,9 @@ Paths below are relative to `tooling/pipeline/`.
|
|||||||
- `src/main.cc` — argument parsing and DI composition root.
|
- `src/main.cc` — argument parsing and DI composition root.
|
||||||
- `src/biergarten_pipeline_orchestrator/` — orchestration, sampling, logging,
|
- `src/biergarten_pipeline_orchestrator/` — orchestration, sampling, logging,
|
||||||
and export.
|
and export.
|
||||||
|
- `src/services/curated_data/` — `CuratedJsonDataService`, the file-backed
|
||||||
|
`ICuratedDataService`, and `MockCuratedDataService`, the in-memory
|
||||||
|
`ICuratedDataService` used in `--mocked` runs.
|
||||||
- `src/services/enrichment/wikipedia/` — enrichment service and cache.
|
- `src/services/enrichment/wikipedia/` — enrichment service and cache.
|
||||||
- `src/services/sqlite/` — SQLite export implementation.
|
- `src/services/sqlite/` — SQLite export implementation.
|
||||||
- `src/data_generation/llama/` — local inference, prompt loading, output
|
- `src/data_generation/llama/` — local inference, prompt loading, output
|
||||||
@@ -407,11 +456,12 @@ Paths below are relative to `tooling/pipeline/`.
|
|||||||
|
|
||||||
## Next Steps
|
## Next Steps
|
||||||
|
|
||||||
The pipeline currently produces city-aware brewery records and dated SQLite
|
The pipeline currently produces city-aware brewery and user records and
|
||||||
exports. The next passes add additional fixture types so the app can exercise
|
dated SQLite exports. The next passes add additional fixture types so the
|
||||||
the full brewery domain without live data. For the detailed engineering
|
app can exercise the full brewery and social domains without live data. For
|
||||||
breakdown of what's needed to reach the architecture in
|
the detailed engineering breakdown of what's needed to reach the
|
||||||
[`diagrams/planned/`](./diagrams/planned/), see [ROADMAP.md](./ROADMAP.md).
|
architecture in [`diagrams/planned/`](./diagrams/planned/), see
|
||||||
|
[ROADMAP.md](./ROADMAP.md).
|
||||||
|
|
||||||
### Testing — Very High Priority
|
### Testing — Very High Priority
|
||||||
|
|
||||||
@@ -433,12 +483,6 @@ Generate catalog entries with style, ABV, IBU, color, aroma notes, and food
|
|||||||
pairing hints. Link beers back to breweries and cities. Keep style coverage wide
|
pairing hints. Link beers back to breweries and cities. Keep style coverage wide
|
||||||
enough to exercise search, sort, and category filters.
|
enough to exercise search, sort, and category filters.
|
||||||
|
|
||||||
### User Generation
|
|
||||||
|
|
||||||
Generate user profiles with stable names, bios, locale hints, and preference
|
|
||||||
signals. Include stable IDs for downstream fixture joins. Keep output
|
|
||||||
deterministic for screenshots while allowing larger randomized batches.
|
|
||||||
|
|
||||||
### Check-In System
|
### Check-In System
|
||||||
|
|
||||||
Produce timestamped check-in events between users and breweries. Use a J-curve
|
Produce timestamped check-in events between users and breweries. Use a J-curve
|
||||||
|
|||||||
@@ -39,47 +39,80 @@ architecture needs.
|
|||||||
not LLM-invented.
|
not LLM-invented.
|
||||||
- [x] Add `Name` (`first_name`, `last_name`, `gender`) — the sampled result
|
- [x] Add `Name` (`first_name`, `last_name`, `gender`) — the sampled result
|
||||||
handed to `DataGenerator::GenerateUser`. Add `ForenameEntry` (`name`,
|
handed to `DataGenerator::GenerateUser`. Add `ForenameEntry` (`name`,
|
||||||
`gender`) and a `NamesByCountry` class (not a bare typedef) that owns
|
`gender`). Landed as a flatter shape than originally planned here: no
|
||||||
two maps — `std::unordered_map<std::string, std::vector<ForenameEntry>>`
|
`NamesByCountry` wrapper class. `curated_data_service.h` instead
|
||||||
and `std::unordered_map<std::string, std::vector<std::string>>`, both
|
declares `ForenameList = std::vector<ForenameEntry>` and
|
||||||
keyed by ISO 3166-1 code — and exposes `SampleName(iso3166_1, rng)`.
|
`SurnameList = std::vector<std::string>`, and
|
||||||
|
`ICuratedDataService` exposes two maps keyed by ISO 3166-1 code —
|
||||||
|
`ForenamesByCountryMap = unordered_map<string, ForenameList>` and
|
||||||
|
`SurnamesByCountryMap = unordered_map<string, SurnameList>` —
|
||||||
|
directly (see §2). Sampling is
|
||||||
|
a free function, `SampleName(forenames_by_country,
|
||||||
|
surnames_by_country, iso3166_1, rng)`, in
|
||||||
|
`generate_users.cc`'s anonymous namespace, not a method on a class.
|
||||||
Pairing a forename with a surname happens at sample time so gender
|
Pairing a forename with a surname happens at sample time so gender
|
||||||
(present per-forename in the source data) is never discarded the way a
|
(present per-forename in the source data) is never discarded the way a
|
||||||
pre-flattened `{first_name, last_name}` list would lose it; see
|
pre-flattened `{first_name, last_name}` list would lose it; see §2.
|
||||||
`LoadNamesByCountry()` below.
|
|
||||||
- [ ] Extend `GeneratedBrewery` with `brewery_id`, `context_completeness`,
|
- [ ] Extend `GeneratedBrewery` with `brewery_id`, `context_completeness`,
|
||||||
`metadata` (currently just `{location, brewery}`).
|
`metadata` (currently just `{location, brewery}`).
|
||||||
- [ ] Add `GeneratedBeer`, `GeneratedCheckin`, `GeneratedRating`,
|
- [ ] Add `GeneratedBeer`, `GeneratedCheckin`, `GeneratedRating`,
|
||||||
`GeneratedFollow` aggregate structs.
|
`GeneratedFollow` aggregate structs.
|
||||||
- [x] Add `GeneratedUser` aggregate struct. Carries `email`, `date_of_birth`,
|
- [x] Add `UserRecord` (`location`, `user : UserResult`, `email`,
|
||||||
and `password` — programmatically generated by the orchestrator, never
|
`date_of_birth`) as the current stand-in for the planned
|
||||||
LLM-authored — so a downstream auth-account seeding consumer (outside
|
`GeneratedUser` — `email` and `date_of_birth` are programmatically
|
||||||
this repo tree's docs) can register real accounts from the pipeline's
|
generated by the orchestrator, never LLM-authored, so a downstream
|
||||||
SQLite export. Skips `user_id`/`metadata` for now, matching
|
auth-account seeding consumer can register real accounts from the
|
||||||
`GeneratedBrewery`'s current (pre-`brewery_id`/`metadata`) shape. Not
|
pipeline's SQLite export. No `password`, `user_id`, or `metadata`
|
||||||
yet wired into `IExportService`/`SqliteExportService` — `GenerateUsers`
|
field yet, matching `BreweryRecord`'s equally pre-`metadata` shape.
|
||||||
currently only logs and holds `generated_users_` in memory; no `users`
|
Already wired into `IExportService`/`SqliteExportService`: a `users`
|
||||||
table exists in the SQLite export yet (see §5).
|
table exists and `GenerateUsers()` exports each successful record via
|
||||||
|
`ProcessRecord(const UserRecord&)` (see §5) in addition to logging and
|
||||||
|
holding `generated_users_` in memory. Still missing vs. the planned
|
||||||
|
`GeneratedUser`: `user_id`, `password`, and `metadata`.
|
||||||
- [x] Add `UserPersona` (`name`, `description`, `style_affinities`).
|
- [x] Add `UserPersona` (`name`, `description`, `style_affinities`).
|
||||||
|
|
||||||
## 2. Data Preloading
|
## 2. Data Preloading
|
||||||
|
|
||||||
`tooling/pipeline/includes/json_handling/`, fixture files.
|
`tooling/pipeline/includes/services/curated_data/`, fixture files.
|
||||||
|
|
||||||
- [ ] Extract a `DataPreloader` interface; have `JsonLoader` implement it.
|
- [x] Extract an interface; have `CuratedJsonDataService` implement it.
|
||||||
`JsonLoader` now also exposes static `LoadPersonas()` and
|
Landed as `ICuratedDataService`
|
||||||
`LoadNamesByCountry()` (see below), but as additional static methods,
|
(`services/curated_data/curated_data_service.h`), not `DataPreloader`
|
||||||
not yet behind a formal interface.
|
— `LoadLocations()`, `LoadPersonas()`, `LoadForenamesByCountry()`, and
|
||||||
|
`LoadSurnamesByCountry()` are all virtual methods returning `const&`
|
||||||
|
and take no arguments. `CuratedJsonDataService`
|
||||||
|
(`services/curated_data/curated_json_data_service.h`, originally
|
||||||
|
landed as `JsonLoader` under `json_handling/` before being renamed and
|
||||||
|
moved) takes a `CuratedDataFilePaths` DTO (`locations_path`,
|
||||||
|
`personas_path`, `forenames_path`, `surnames_path`) in its
|
||||||
|
constructor rather than a path per `Load*()` call, and memoizes each
|
||||||
|
result in a private `cache` struct (`locations`, `personas`,
|
||||||
|
`forenames_by_country`, `surnames_by_country`), so a second call on
|
||||||
|
the same instance returns the cached result instead of re-parsing —
|
||||||
|
safe because `CuratedJsonDataService` outlives every call site (owned
|
||||||
|
by `BiergartenPipelineOrchestrator` via
|
||||||
|
`unique_ptr<ICuratedDataService>` for the whole run). `main.cc`'s DI
|
||||||
|
injector also gained a `MockCuratedDataService` (fixed in-memory
|
||||||
|
data: 4 locations across `US`/`DE`/`FR`/`BE`, 3 personas, and
|
||||||
|
matching forename/surname sets for those four countries), bound in
|
||||||
|
place of `CuratedJsonDataService` under `--mocked`, mirroring the
|
||||||
|
existing `MockEnrichmentService`/`MockGenerator` pattern.
|
||||||
- [ ] Add `LoadBeerStyles()`. `beer-styles.json` already exists in the repo
|
- [ ] Add `LoadBeerStyles()`. `beer-styles.json` already exists in the repo
|
||||||
and is already copied into the Docker image
|
and is already copied into the Docker image
|
||||||
(`runpod/Dockerfile`), but no loader reads it yet, and the native
|
(`runpod/Dockerfile`), but no loader reads it yet, and the native
|
||||||
CMake build doesn't copy it into `build/` at all — `CMakeLists.txt`'s
|
CMake build doesn't copy it into `build/` at all — `CMakeLists.txt`'s
|
||||||
"Runtime Assets" step only copies `locations.json` and `prompts/`.
|
"Runtime Assets" step only copies `locations.json` and `prompts/`.
|
||||||
- [x] Add `LoadPersonas()` and author `personas.json` (doesn't exist yet).
|
- [x] Add `LoadPersonas()` and author `personas.json` (doesn't exist yet).
|
||||||
- [x] Add `LoadNamesByCountry(forenames_filepath, surnames_filepath)`,
|
- [x] Add name-by-country loading, parsing
|
||||||
parsing `tooling/pipeline/forenames-by-country.json` and
|
`tooling/pipeline/forenames-by-country.json` and
|
||||||
`surnames-by-country.json` into a `NamesByCountry`. Both files are
|
`surnames-by-country.json`. Landed as two separate methods —
|
||||||
vendored verbatim (unmodified, full multinational coverage) from
|
`LoadForenamesByCountry()` and `LoadSurnamesByCountry()` — each
|
||||||
|
returning a flat `ForenamesByCountryMap` / `SurnamesByCountryMap`
|
||||||
|
(aliases for `unordered_map<string, ForenameList>` /
|
||||||
|
`unordered_map<string, SurnameList>`) keyed by ISO 3166-1 code, rather
|
||||||
|
than one combined `LoadNamesByCountry() : NamesByCountry` call. Both
|
||||||
|
files are vendored verbatim (unmodified,
|
||||||
|
full multinational coverage) from
|
||||||
`sigpwned/popular-names-by-country-dataset` (CC0) — see
|
`sigpwned/popular-names-by-country-dataset` (CC0) — see
|
||||||
ETHICS-AND-KNOWN-ISSUES.md's Names-by-Country Dataset section for
|
ETHICS-AND-KNOWN-ISSUES.md's Names-by-Country Dataset section for
|
||||||
provenance. Deliberately not pre-paired or filtered down to just the
|
provenance. Deliberately not pre-paired or filtered down to just the
|
||||||
@@ -136,12 +169,19 @@ Entirely new — no `includes/policy/` (or equivalent) directory exists today.
|
|||||||
|
|
||||||
`tooling/pipeline/includes/services/database/`, `src/services/sqlite/`.
|
`tooling/pipeline/includes/services/database/`, `src/services/sqlite/`.
|
||||||
|
|
||||||
- [ ] Extend `IExportService` with `ProcessBeer`, `ProcessUser`,
|
- [x] `IExportService::ProcessRecord(const UserRecord&)` and
|
||||||
`ProcessCheckin`, `ProcessRating`, `ProcessFollow` (today only
|
`SqliteExportService`'s `users` table (see
|
||||||
`ProcessRecord(const GeneratedBrewery&)` exists).
|
`kCreateUsersTableSql` / `kInsertUserSql` in
|
||||||
- [ ] Add `beers`, `users`, `checkins`, `ratings`, `follows` tables to
|
`includes/services/database/sqlite_statement_helpers.h`) are
|
||||||
`SqliteExportService::InitializeSchema()` — see
|
implemented — `GenerateUsers()` exports every successful user
|
||||||
`kCreateLocationsTableSql` / `kCreateBreweriesTableSql` in
|
alongside its resolved `location_id`.
|
||||||
|
- [ ] Extend `IExportService` with `ProcessBeer`, `ProcessCheckin`,
|
||||||
|
`ProcessRating`, `ProcessFollow` (today `ProcessRecord(const
|
||||||
|
BreweryRecord&)` and `ProcessRecord(const UserRecord&)` exist).
|
||||||
|
- [ ] Add `beers`, `checkins`, `ratings`, `follows` tables to
|
||||||
|
`SqliteExportService::InitializeSchema()` (`locations`, `breweries`,
|
||||||
|
and `users` already exist) — see `kCreateLocationsTableSql` /
|
||||||
|
`kCreateBreweriesTableSql` / `kCreateUsersTableSql` in
|
||||||
`includes/services/database/sqlite_statement_helpers.h` for the
|
`includes/services/database/sqlite_statement_helpers.h` for the
|
||||||
existing pattern to follow.
|
existing pattern to follow.
|
||||||
- [ ] Add a `brewery_cache_` alongside the existing `location_cache_`, and
|
- [ ] Add a `brewery_cache_` alongside the existing `location_cache_`, and
|
||||||
@@ -187,7 +227,8 @@ Entirely new — no `includes/policy/` (or equivalent) directory exists today.
|
|||||||
|
|
||||||
## 8. Fixtures / Build
|
## 8. Fixtures / Build
|
||||||
|
|
||||||
- [ ] Author `personas.json` and `names-by-country.json` (see §2).
|
- [x] Author `personas.json`, `forenames-by-country.json`, and
|
||||||
|
`surnames-by-country.json` (see §2).
|
||||||
- [ ] Fix the `beer-styles.json` build-tree gap: add it to the "Runtime
|
- [ ] Fix the `beer-styles.json` build-tree gap: add it to the "Runtime
|
||||||
Assets" `configure_file` step in `CMakeLists.txt` so native builds and
|
Assets" `configure_file` step in `CMakeLists.txt` so native builds and
|
||||||
the Docker image agree on what's available at runtime.
|
the Docker image agree on what's available at runtime.
|
||||||
|
|||||||
@@ -93,6 +93,77 @@ while (For each sampled Location?) is (Remaining cities)
|
|||||||
endif
|
endif
|
||||||
endwhile (Done)
|
endwhile (Done)
|
||||||
|
|
||||||
|
|#EAF0E8|BiergartenPipelineOrchestrator|
|
||||||
|
:GenerateUsers(enriched_cities);
|
||||||
|
|
||||||
|
|#E2EBDC|JsonLoader|
|
||||||
|
:LoadPersonas("personas.json");
|
||||||
|
:LoadForenamesByCountry("forenames-by-country.json");
|
||||||
|
:LoadSurnamesByCountry("surnames-by-country.json");
|
||||||
|
note right
|
||||||
|
Each call is cached after its first parse.
|
||||||
|
MockCuratedDataService (--mocked) returns a
|
||||||
|
fixed in-memory dataset instead and skips
|
||||||
|
these three JSON files entirely.
|
||||||
|
end note
|
||||||
|
|
||||||
|
|#EAF0E8|BiergartenPipelineOrchestrator|
|
||||||
|
while (For each EnrichedCity?) is (Remaining cities)
|
||||||
|
:SampleName(forenames_by_country,\n surnames_by_country, location.iso3166_1);
|
||||||
|
if (Names available for country?) then (no)
|
||||||
|
:Log warning, skip city;
|
||||||
|
else (yes)
|
||||||
|
:Sample UserPersona (uniform random);
|
||||||
|
|
||||||
|
|#E5EDE1|DataGenerator|
|
||||||
|
if (Generator Mode) then (MockGenerator)
|
||||||
|
:DeterministicHash & Format;
|
||||||
|
else (LlamaGenerator)
|
||||||
|
:prompt_directory_->Load("USER_GENERATION");
|
||||||
|
note right
|
||||||
|
Resolves to USER_GENERATION.md inside --prompt-dir.
|
||||||
|
end note
|
||||||
|
repeat
|
||||||
|
:Infer(system_prompt, user_prompt, max_tokens, kUserJsonGrammar);
|
||||||
|
:ValidateUserJson(raw, user);
|
||||||
|
if (Is JSON Valid?) then (yes)
|
||||||
|
break
|
||||||
|
else (no)
|
||||||
|
:Attempt++;
|
||||||
|
:Append validation error to retry prompt;
|
||||||
|
endif
|
||||||
|
repeat while (Attempt < 3?) is (yes)
|
||||||
|
endif
|
||||||
|
|
||||||
|
|#EAF0E8|BiergartenPipelineOrchestrator|
|
||||||
|
if (Generation successful?) then (yes)
|
||||||
|
:BuildEmail(name, used_email_local_parts);
|
||||||
|
:GenerateDateOfBirth(rng);
|
||||||
|
note right
|
||||||
|
email and date_of_birth are generated
|
||||||
|
programmatically, never LLM-authored.
|
||||||
|
end note
|
||||||
|
|
||||||
|
|#E0EAE0|SqliteExportService|
|
||||||
|
:ProcessRecord(UserRecord);
|
||||||
|
if (Location in cache?) then (yes)
|
||||||
|
:Reuse location_id;
|
||||||
|
else (no)
|
||||||
|
:Insert Location & Cache ID;
|
||||||
|
endif
|
||||||
|
:Insert User (FK: location_id);
|
||||||
|
|
||||||
|
if (Exception caught during insert?) then (yes)
|
||||||
|
|#EAF0E8|BiergartenPipelineOrchestrator|
|
||||||
|
:Log warning "SQLite export failed";
|
||||||
|
else (no)
|
||||||
|
endif
|
||||||
|
else (no)
|
||||||
|
:Log warning "Generation failed, skipping...";
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
endwhile (Done)
|
||||||
|
|
||||||
|#EAF0E8|BiergartenPipelineOrchestrator|
|
|#EAF0E8|BiergartenPipelineOrchestrator|
|
||||||
:GenerateBreweries(enriched_cities);
|
:GenerateBreweries(enriched_cities);
|
||||||
|
|
||||||
|
|||||||
@@ -30,11 +30,14 @@ class BiergartenPipelineOrchestrator {
|
|||||||
- context_service_ : std::unique_ptr<IEnrichmentService>
|
- context_service_ : std::unique_ptr<IEnrichmentService>
|
||||||
- generator_ : std::unique_ptr<DataGenerator>
|
- generator_ : std::unique_ptr<DataGenerator>
|
||||||
- exporter_ : std::unique_ptr<IExportService>
|
- exporter_ : std::unique_ptr<IExportService>
|
||||||
|
- curated_data_service_ : std::unique_ptr<ICuratedDataService>
|
||||||
- application_options_ : ApplicationOptions
|
- application_options_ : ApplicationOptions
|
||||||
- generated_breweries_ : std::vector<GeneratedBrewery>
|
- generated_breweries_ : std::vector<BreweryRecord>
|
||||||
|
- generated_users_ : std::vector<UserRecord>
|
||||||
+ Run() : bool
|
+ Run() : bool
|
||||||
- QueryCitiesWithCountries() : std::vector<Location>
|
- QueryCitiesWithCountries() : std::vector<Location>
|
||||||
- GenerateBreweries(cities : std::span<const EnrichedCity>) : void
|
- GenerateBreweries(cities : std::span<const EnrichedCity>) : void
|
||||||
|
- GenerateUsers(cities : std::span<const EnrichedCity>) : void
|
||||||
- LogResults() : void
|
- LogResults() : void
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -113,13 +116,14 @@ class HttpWebClient {
|
|||||||
|
|
||||||
interface DataGenerator <<interface>> {
|
interface DataGenerator <<interface>> {
|
||||||
+ GenerateBrewery(location : const Location&, region_context : const std::string&) : BreweryResult
|
+ GenerateBrewery(location : const Location&, region_context : const std::string&) : BreweryResult
|
||||||
+ GenerateUser(locale : const std::string&) : UserResult
|
+ GenerateUser(city : const EnrichedCity&, persona : const UserPersona&, name : const Name&) : UserResult
|
||||||
}
|
}
|
||||||
|
|
||||||
class MockGenerator {
|
class MockGenerator {
|
||||||
+ GenerateBrewery(...) : BreweryResult
|
+ GenerateBrewery(location : const Location&, region_context : const std::string&) : BreweryResult
|
||||||
+ GenerateUser(...) : UserResult
|
+ GenerateUser(city : const EnrichedCity&, persona : const UserPersona&, name : const Name&) : UserResult
|
||||||
- DeterministicHash(location : const Location&) : size_t
|
- DeterministicHash(location : const Location&) : size_t
|
||||||
|
- DeterministicHash(location : const Location&, persona : const UserPersona&, name : const Name&) : size_t
|
||||||
}
|
}
|
||||||
|
|
||||||
class LlamaGenerator {
|
class LlamaGenerator {
|
||||||
@@ -153,13 +157,49 @@ class PromptDirectory {
|
|||||||
+ Load(key : std::string_view) : std::string
|
+ Load(key : std::string_view) : std::string
|
||||||
}
|
}
|
||||||
|
|
||||||
class JsonLoader {
|
interface ICuratedDataService <<interface>> {
|
||||||
+ {static} LoadLocations(filepath : const std::filesystem::path&) : std::vector<Location>
|
+ LoadLocations(filepath : const std::filesystem::path&) : const std::vector<Location>&
|
||||||
|
+ LoadPersonas(filepath : const std::filesystem::path&) : const std::vector<UserPersona>&
|
||||||
|
+ LoadForenamesByCountry(filepath : const std::filesystem::path&) : const std::unordered_map<std::string, forename_list>&
|
||||||
|
+ LoadSurnamesByCountry(filepath : const std::filesystem::path&) : const std::unordered_map<std::string, surname_list>&
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class JsonLoader {
|
||||||
|
- cache_ : cache
|
||||||
|
+ LoadLocations(filepath : const std::filesystem::path&) : const std::vector<Location>&
|
||||||
|
+ LoadPersonas(filepath : const std::filesystem::path&) : const std::vector<UserPersona>&
|
||||||
|
+ LoadForenamesByCountry(filepath : const std::filesystem::path&) : const std::unordered_map<std::string, forename_list>&
|
||||||
|
+ LoadSurnamesByCountry(filepath : const std::filesystem::path&) : const std::unordered_map<std::string, surname_list>&
|
||||||
|
}
|
||||||
|
|
||||||
|
note right of JsonLoader
|
||||||
|
Each Load* method memoizes its result in
|
||||||
|
cache_ on first call; later calls on the
|
||||||
|
same instance return the cached value
|
||||||
|
without re-parsing.
|
||||||
|
end note
|
||||||
|
|
||||||
|
class MockCuratedDataService {
|
||||||
|
- locations_ : std::vector<Location>
|
||||||
|
- personas_ : std::vector<UserPersona>
|
||||||
|
- forenames_by_country_ : std::unordered_map<std::string, forename_list>
|
||||||
|
- surnames_by_country_ : std::unordered_map<std::string, surname_list>
|
||||||
|
+ LoadLocations(filepath : const std::filesystem::path&) : const std::vector<Location>&
|
||||||
|
+ LoadPersonas(filepath : const std::filesystem::path&) : const std::vector<UserPersona>&
|
||||||
|
+ LoadForenamesByCountry(filepath : const std::filesystem::path&) : const std::unordered_map<std::string, forename_list>&
|
||||||
|
+ LoadSurnamesByCountry(filepath : const std::filesystem::path&) : const std::unordered_map<std::string, surname_list>&
|
||||||
|
}
|
||||||
|
|
||||||
|
note right of MockCuratedDataService
|
||||||
|
Fixed 4-location / 3-persona dataset
|
||||||
|
(US, DE, FR, BE) used in --mocked runs;
|
||||||
|
filepath arguments are ignored.
|
||||||
|
end note
|
||||||
|
|
||||||
interface IExportService <<interface>> {
|
interface IExportService <<interface>> {
|
||||||
+ Initialize() : void
|
+ Initialize() : void
|
||||||
+ ProcessRecord(brewery : const GeneratedBrewery&) : void
|
+ ProcessRecord(brewery : const BreweryRecord&) : uint64_t
|
||||||
|
+ ProcessRecord(user : const UserRecord&) : uint64_t
|
||||||
+ Finalize() : void
|
+ Finalize() : void
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -167,15 +207,18 @@ class SqliteExportService {
|
|||||||
- date_time_provider_ : std::unique_ptr<IDateTimeProvider>
|
- date_time_provider_ : std::unique_ptr<IDateTimeProvider>
|
||||||
- run_timestamp_utc_ : std::string
|
- run_timestamp_utc_ : std::string
|
||||||
- database_path_ : std::filesystem::path
|
- database_path_ : std::filesystem::path
|
||||||
- db_handle_ : sqlite3*
|
- db_handle_ : SqliteDatabaseHandle
|
||||||
- insert_location_stmt_ : sqlite3_stmt*
|
- insert_location_stmt_ : SqliteStatementHandle
|
||||||
- insert_brewery_stmt_ : sqlite3_stmt*
|
- insert_brewery_stmt_ : SqliteStatementHandle
|
||||||
|
- insert_user_stmt_ : SqliteStatementHandle
|
||||||
- transaction_open_ : bool
|
- transaction_open_ : bool
|
||||||
- location_cache_ : std::unordered_map<std::string, sqlite3_int64>
|
- location_cache_ : std::unordered_map<std::string, sqlite3_int64>
|
||||||
+ Initialize() : void
|
+ Initialize() : void
|
||||||
+ ProcessRecord(brewery : const GeneratedBrewery&) : void
|
+ ProcessRecord(brewery : const BreweryRecord&) : uint64_t
|
||||||
|
+ ProcessRecord(user : const UserRecord&) : uint64_t
|
||||||
+ Finalize() : void
|
+ Finalize() : void
|
||||||
- InitializeSchema() : void
|
- InitializeSchema() : void
|
||||||
|
- ResolveLocationId(location : const Location&) : sqlite3_int64
|
||||||
}
|
}
|
||||||
|
|
||||||
interface IDateTimeProvider <<interface>> {
|
interface IDateTimeProvider <<interface>> {
|
||||||
@@ -191,6 +234,7 @@ BiergartenPipelineOrchestrator *-- ILogger : owns
|
|||||||
BiergartenPipelineOrchestrator *-- IEnrichmentService : owns
|
BiergartenPipelineOrchestrator *-- IEnrichmentService : owns
|
||||||
BiergartenPipelineOrchestrator *-- DataGenerator : owns
|
BiergartenPipelineOrchestrator *-- DataGenerator : owns
|
||||||
BiergartenPipelineOrchestrator *-- IExportService : owns
|
BiergartenPipelineOrchestrator *-- IExportService : owns
|
||||||
|
BiergartenPipelineOrchestrator *-- ICuratedDataService : owns
|
||||||
|
|
||||||
LogEntry *-- LogLevel
|
LogEntry *-- LogLevel
|
||||||
LogEntry *-- PipelinePhase
|
LogEntry *-- PipelinePhase
|
||||||
@@ -215,7 +259,8 @@ LlamaGenerator *-- IPromptDirectory : uses
|
|||||||
IPromptFormatter <|.. Gemma4JinjaPromptFormatter : implements
|
IPromptFormatter <|.. Gemma4JinjaPromptFormatter : implements
|
||||||
IPromptDirectory <|.. PromptDirectory : implements
|
IPromptDirectory <|.. PromptDirectory : implements
|
||||||
|
|
||||||
BiergartenPipelineOrchestrator ..> JsonLoader : uses
|
ICuratedDataService <|.. JsonLoader : implements
|
||||||
|
ICuratedDataService <|.. MockCuratedDataService : implements
|
||||||
|
|
||||||
IExportService <|.. SqliteExportService : implements
|
IExportService <|.. SqliteExportService : implements
|
||||||
SqliteExportService *-- IDateTimeProvider : owns
|
SqliteExportService *-- IDateTimeProvider : owns
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 86 KiB |
|
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 87 KiB |
@@ -43,10 +43,18 @@ fork again
|
|||||||
:EnrichmentService::PreWarmLocationCache(sampled_locations);
|
:EnrichmentService::PreWarmLocationCache(sampled_locations);
|
||||||
end fork
|
end fork
|
||||||
fork
|
fork
|
||||||
:JsonLoader::LoadNamesByCountry(\n "forenames-by-country.json",\n "surnames-by-country.json");
|
:JsonLoader::LoadForenamesByCountry(\n "forenames-by-country.json");
|
||||||
|
fork again
|
||||||
|
:JsonLoader::LoadSurnamesByCountry(\n "surnames-by-country.json");
|
||||||
fork again
|
fork again
|
||||||
:JsonLoader::LoadPersonas("personas.json");
|
:JsonLoader::LoadPersonas("personas.json");
|
||||||
end fork
|
end fork
|
||||||
|
note right
|
||||||
|
Each call is memoized after its first parse
|
||||||
|
(implemented today). MockCuratedDataService
|
||||||
|
returns a fixed in-memory dataset instead
|
||||||
|
under --mocked, skipping these JSON files.
|
||||||
|
end note
|
||||||
|
|
||||||
' ═══════════════════════════════════════════
|
' ═══════════════════════════════════════════
|
||||||
' PHASE 0 — USER GENERATION
|
' PHASE 0 — USER GENERATION
|
||||||
@@ -82,11 +90,15 @@ fork again
|
|||||||
ibu_preference, checkin_weight.
|
ibu_preference, checkin_weight.
|
||||||
end note
|
end note
|
||||||
|
|
||||||
:NamesByCountry::SampleName(\n location.iso3166_1);
|
:SampleName(forenames_by_country,\n surnames_by_country, location.iso3166_1, rng);
|
||||||
note right
|
note right
|
||||||
Deterministic lookup -- no LLM involved.
|
Deterministic lookup -- no LLM involved.
|
||||||
Name selected from pre-keyed table
|
Free function (implemented today in
|
||||||
|
generate_users.cc), not a class method.
|
||||||
|
Name selected from pre-keyed maps
|
||||||
and passed into the generation prompt.
|
and passed into the generation prompt.
|
||||||
|
Skips the city if either map has no
|
||||||
|
entry for iso3166_1.
|
||||||
end note
|
end note
|
||||||
|
|
||||||
:GenerateUser(enriched_city, persona, sampled_name)\nvia DataGenerator;
|
:GenerateUser(enriched_city, persona, sampled_name)\nvia DataGenerator;
|
||||||
|
|||||||
@@ -86,27 +86,30 @@ package "Domain: Models" {
|
|||||||
+ gender : std::string
|
+ gender : std::string
|
||||||
}
|
}
|
||||||
|
|
||||||
class NamesByCountry {
|
note right of ForenameEntry
|
||||||
- forenames_by_country_ : std::unordered_map<std::string, std::vector<ForenameEntry>>
|
forename_list = std::unordered_set<ForenameEntry>
|
||||||
- surnames_by_country_ : std::unordered_map<std::string, std::vector<std::string>>
|
surname_list = std::unordered_set<std::string>
|
||||||
+ SampleName(iso3166_1 : const std::string&,\n rng : std::mt19937&) : std::optional<Name>
|
(aliases declared in curated_data_service.h).
|
||||||
}
|
ICuratedDataService::LoadForenamesByCountry() /
|
||||||
|
LoadSurnamesByCountry() each return a flat
|
||||||
note right of NamesByCountry
|
std::unordered_map<std::string, forename_list>
|
||||||
Backed by two source-shaped maps,
|
or <std::string, surname_list> keyed by ISO
|
||||||
keyed by ISO 3166-1 country code,
|
3166-1 country code -- no NamesByCountry
|
||||||
sourced from popular-names-by-country-dataset
|
wrapper class. SampleName(forenames_by_country,
|
||||||
(CC0) -- see ETHICS-AND-KNOWN-ISSUES.md.
|
surnames_by_country, iso3166_1, rng) is a free
|
||||||
Gender is preserved per forename so it can
|
function, not a method, so it can be called by
|
||||||
be threaded through to persona/bio generation
|
any per-city worker without owning the maps.
|
||||||
later; surnames carry no gender in the source
|
Sourced from popular-names-by-country-dataset
|
||||||
data. Pairing happens at sample time, not at
|
(CC0) -- see ETHICS-AND-KNOWN-ISSUES.md. Gender
|
||||||
fixture-authoring time, so no information from
|
is preserved per forename so it can be threaded
|
||||||
the source dataset is discarded up front.
|
through to persona/bio generation later; surnames
|
||||||
|
carry no gender in the source data. Pairing
|
||||||
|
happens at sample time, not at fixture-authoring
|
||||||
|
time, so no information from the source dataset
|
||||||
|
is discarded up front.
|
||||||
end note
|
end note
|
||||||
|
|
||||||
NamesByCountry *-- "0..*" ForenameEntry
|
ForenameEntry ..> Name : SampleName() produces
|
||||||
NamesByCountry ..> Name : produces
|
|
||||||
|
|
||||||
class CheckinResult {
|
class CheckinResult {
|
||||||
+ checked_in_at : std::string
|
+ checked_in_at : std::string
|
||||||
@@ -365,20 +368,43 @@ package "Infrastructure: Pipeline Channel" {
|
|||||||
|
|
||||||
package "Infrastructure: Data Preloading" {
|
package "Infrastructure: Data Preloading" {
|
||||||
|
|
||||||
interface DataPreloader <<interface>> {
|
interface ICuratedDataService <<interface>> {
|
||||||
+ LoadLocations(filepath : const std::filesystem::path&) : std::vector<Location>
|
+ LoadLocations(filepath : const std::filesystem::path&) : const std::vector<Location>&
|
||||||
+ LoadBeerStyles(filepath : const std::filesystem::path&) : std::vector<BeerStyle>
|
+ LoadBeerStyles(filepath : const std::filesystem::path&) : const std::vector<BeerStyle>&
|
||||||
+ LoadPersonas(filepath : const std::filesystem::path&) : std::vector<UserPersona>
|
+ LoadPersonas(filepath : const std::filesystem::path&) : const std::vector<UserPersona>&
|
||||||
+ LoadNamesByCountry(forenames_filepath : const std::filesystem::path&,\n surnames_filepath : const std::filesystem::path&) : NamesByCountry
|
+ LoadForenamesByCountry(forenames_filepath : const std::filesystem::path&) : const std::unordered_map<std::string, forename_list>&
|
||||||
|
+ LoadSurnamesByCountry(surnames_filepath : const std::filesystem::path&) : const std::unordered_map<std::string, surname_list>&
|
||||||
}
|
}
|
||||||
|
|
||||||
class JsonLoader {
|
class JsonLoader {
|
||||||
+ LoadLocations(filepath : const std::filesystem::path&) : std::vector<Location>
|
+ LoadLocations(filepath : const std::filesystem::path&) : const std::vector<Location>&
|
||||||
+ LoadBeerStyles(filepath : const std::filesystem::path&) : std::vector<BeerStyle>
|
+ LoadBeerStyles(filepath : const std::filesystem::path&) : const std::vector<BeerStyle>&
|
||||||
+ LoadPersonas(filepath : const std::filesystem::path&) : std::vector<UserPersona>
|
+ LoadPersonas(filepath : const std::filesystem::path&) : const std::vector<UserPersona>&
|
||||||
+ LoadNamesByCountry(forenames_filepath : const std::filesystem::path&,\n surnames_filepath : const std::filesystem::path&) : NamesByCountry
|
+ LoadForenamesByCountry(forenames_filepath : const std::filesystem::path&) : const std::unordered_map<std::string, forename_list>&
|
||||||
|
+ LoadSurnamesByCountry(surnames_filepath : const std::filesystem::path&) : const std::unordered_map<std::string, surname_list>&
|
||||||
}
|
}
|
||||||
|
|
||||||
|
note right of JsonLoader
|
||||||
|
Each Load* call is memoized after its first
|
||||||
|
parse -- implemented today, ahead of the rest
|
||||||
|
of this package (LoadBeerStyles is still planned).
|
||||||
|
end note
|
||||||
|
|
||||||
|
class MockCuratedDataService {
|
||||||
|
+ LoadLocations(filepath : const std::filesystem::path&) : const std::vector<Location>&
|
||||||
|
+ LoadBeerStyles(filepath : const std::filesystem::path&) : const std::vector<BeerStyle>&
|
||||||
|
+ LoadPersonas(filepath : const std::filesystem::path&) : const std::vector<UserPersona>&
|
||||||
|
+ LoadForenamesByCountry(forenames_filepath : const std::filesystem::path&) : const std::unordered_map<std::string, forename_list>&
|
||||||
|
+ LoadSurnamesByCountry(surnames_filepath : const std::filesystem::path&) : const std::unordered_map<std::string, surname_list>&
|
||||||
|
}
|
||||||
|
|
||||||
|
note right of MockCuratedDataService
|
||||||
|
Fixed in-memory dataset used in --mocked mode,
|
||||||
|
implemented today for Locations/Personas/
|
||||||
|
Forenames/Surnames; would need a LoadBeerStyles
|
||||||
|
fixture too once that method is implemented.
|
||||||
|
end note
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
package "Infrastructure: Enrichment" {
|
package "Infrastructure: Enrichment" {
|
||||||
@@ -520,7 +546,7 @@ package "Infrastructure: Data Export" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class BiergartenPipelineOrchestrator {
|
class BiergartenPipelineOrchestrator {
|
||||||
- preloader_ : std::unique_ptr<DataPreloader>
|
- curated_data_service_ : std::unique_ptr<ICuratedDataService>
|
||||||
- enrichment_service_ : std::unique_ptr<EnrichmentService>
|
- enrichment_service_ : std::unique_ptr<EnrichmentService>
|
||||||
- generator_ : std::unique_ptr<DataGenerator>
|
- generator_ : std::unique_ptr<DataGenerator>
|
||||||
- logger_ : std::unique_ptr<Logger>
|
- logger_ : std::unique_ptr<Logger>
|
||||||
@@ -548,7 +574,7 @@ class BiergartenPipelineOrchestrator {
|
|||||||
}
|
}
|
||||||
|
|
||||||
' --- Orchestration Aggregations (Services & Strategies) ---
|
' --- Orchestration Aggregations (Services & Strategies) ---
|
||||||
BiergartenPipelineOrchestrator *-- DataPreloader
|
BiergartenPipelineOrchestrator *-- ICuratedDataService
|
||||||
BiergartenPipelineOrchestrator *-- EnrichmentService
|
BiergartenPipelineOrchestrator *-- EnrichmentService
|
||||||
BiergartenPipelineOrchestrator *-- DataGenerator
|
BiergartenPipelineOrchestrator *-- DataGenerator
|
||||||
BiergartenPipelineOrchestrator *-- ExportService
|
BiergartenPipelineOrchestrator *-- ExportService
|
||||||
@@ -567,7 +593,8 @@ BiergartenPipelineOrchestrator *-- "0..*" GeneratedCheckin : checkin_pool_
|
|||||||
BiergartenPipelineOrchestrator *-- "0..*" GeneratedFollow : follow_pool_
|
BiergartenPipelineOrchestrator *-- "0..*" GeneratedFollow : follow_pool_
|
||||||
|
|
||||||
' --- Interfaces & Implementations ---
|
' --- Interfaces & Implementations ---
|
||||||
DataPreloader <|.. JsonLoader
|
ICuratedDataService <|.. JsonLoader
|
||||||
|
ICuratedDataService <|.. MockCuratedDataService
|
||||||
Logger <|.. PipelineLogger
|
Logger <|.. PipelineLogger
|
||||||
ContextStrategy <|.. BreweryContextStrategy
|
ContextStrategy <|.. BreweryContextStrategy
|
||||||
ContextStrategy <|.. BeerContextStrategy
|
ContextStrategy <|.. BeerContextStrategy
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 139 KiB After Width: | Height: | Size: 142 KiB |
|
Before Width: | Height: | Size: 234 KiB After Width: | Height: | Size: 240 KiB |
@@ -11,7 +11,35 @@
|
|||||||
<div class="dialog-header">
|
<div class="dialog-header">
|
||||||
<p>Pipeline Results Viewer</p>
|
<p>Pipeline Results Viewer</p>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="tab-strip" role="tablist">
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class="tab is-active"
|
||||||
|
id="tab-tables"
|
||||||
|
role="tab"
|
||||||
|
aria-selected="true"
|
||||||
|
aria-controls="panel-tables"
|
||||||
|
>
|
||||||
|
Tables
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
class="tab"
|
||||||
|
id="tab-query"
|
||||||
|
role="tab"
|
||||||
|
aria-selected="false"
|
||||||
|
aria-controls="panel-query"
|
||||||
|
>
|
||||||
|
Query
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
<div class="dialog-body">
|
<div class="dialog-body">
|
||||||
|
<div
|
||||||
|
class="tab-panel"
|
||||||
|
id="panel-tables"
|
||||||
|
role="tabpanel"
|
||||||
|
aria-labelledby="tab-tables"
|
||||||
|
>
|
||||||
<div class="field-group">
|
<div class="field-group">
|
||||||
<label for="table-select">Table</label>
|
<label for="table-select">Table</label>
|
||||||
<select id="table-select"></select>
|
<select id="table-select"></select>
|
||||||
@@ -19,6 +47,27 @@
|
|||||||
<p id="status"></p>
|
<p id="status"></p>
|
||||||
<div id="table-container"></div>
|
<div id="table-container"></div>
|
||||||
</div>
|
</div>
|
||||||
|
<div
|
||||||
|
class="tab-panel"
|
||||||
|
id="panel-query"
|
||||||
|
role="tabpanel"
|
||||||
|
aria-labelledby="tab-query"
|
||||||
|
hidden
|
||||||
|
>
|
||||||
|
<div class="field-group field-group--stacked">
|
||||||
|
<label for="query-input">SQL Query</label>
|
||||||
|
<textarea
|
||||||
|
id="query-input"
|
||||||
|
rows="4"
|
||||||
|
spellcheck="false"
|
||||||
|
placeholder="SELECT * FROM ..."
|
||||||
|
></textarea>
|
||||||
|
</div>
|
||||||
|
<button type="button" id="query-run" class="btn">Run Query</button>
|
||||||
|
<p id="query-status"></p>
|
||||||
|
<div id="query-container"></div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script type="module" src="/src/main.ts"></script>
|
<script type="module" src="/src/main.ts"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
407
tooling/pipeline-results-viewer/package-lock.json
generated
@@ -8,11 +8,11 @@
|
|||||||
"name": "pipeline-results-viewer",
|
"name": "pipeline-results-viewer",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"95css": "^0.4.2",
|
|
||||||
"sql.js": "^1.14.1"
|
"sql.js": "^1.14.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/sql.js": "^1.4.11",
|
"@types/sql.js": "^1.4.11",
|
||||||
|
"sass": "^1.101.0",
|
||||||
"typescript": "^6.0.3",
|
"typescript": "^6.0.3",
|
||||||
"vite": "^8.0.12"
|
"vite": "^8.0.12"
|
||||||
}
|
}
|
||||||
@@ -80,6 +80,316 @@
|
|||||||
"url": "https://github.com/sponsors/Boshen"
|
"url": "https://github.com/sponsors/Boshen"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@parcel/watcher": {
|
||||||
|
"version": "2.5.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.6.tgz",
|
||||||
|
"integrity": "sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==",
|
||||||
|
"dev": true,
|
||||||
|
"hasInstallScript": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"dependencies": {
|
||||||
|
"detect-libc": "^2.0.3",
|
||||||
|
"is-glob": "^4.0.3",
|
||||||
|
"node-addon-api": "^7.0.0",
|
||||||
|
"picomatch": "^4.0.3"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 10.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/parcel"
|
||||||
|
},
|
||||||
|
"optionalDependencies": {
|
||||||
|
"@parcel/watcher-android-arm64": "2.5.6",
|
||||||
|
"@parcel/watcher-darwin-arm64": "2.5.6",
|
||||||
|
"@parcel/watcher-darwin-x64": "2.5.6",
|
||||||
|
"@parcel/watcher-freebsd-x64": "2.5.6",
|
||||||
|
"@parcel/watcher-linux-arm-glibc": "2.5.6",
|
||||||
|
"@parcel/watcher-linux-arm-musl": "2.5.6",
|
||||||
|
"@parcel/watcher-linux-arm64-glibc": "2.5.6",
|
||||||
|
"@parcel/watcher-linux-arm64-musl": "2.5.6",
|
||||||
|
"@parcel/watcher-linux-x64-glibc": "2.5.6",
|
||||||
|
"@parcel/watcher-linux-x64-musl": "2.5.6",
|
||||||
|
"@parcel/watcher-win32-arm64": "2.5.6",
|
||||||
|
"@parcel/watcher-win32-ia32": "2.5.6",
|
||||||
|
"@parcel/watcher-win32-x64": "2.5.6"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@parcel/watcher-android-arm64": {
|
||||||
|
"version": "2.5.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.6.tgz",
|
||||||
|
"integrity": "sha512-YQxSS34tPF/6ZG7r/Ih9xy+kP/WwediEUsqmtf0cuCV5TPPKw/PQHRhueUo6JdeFJaqV3pyjm0GdYjZotbRt/A==",
|
||||||
|
"cpu": [
|
||||||
|
"arm64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"android"
|
||||||
|
],
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 10.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/parcel"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@parcel/watcher-darwin-arm64": {
|
||||||
|
"version": "2.5.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.6.tgz",
|
||||||
|
"integrity": "sha512-Z2ZdrnwyXvvvdtRHLmM4knydIdU9adO3D4n/0cVipF3rRiwP+3/sfzpAwA/qKFL6i1ModaabkU7IbpeMBgiVEA==",
|
||||||
|
"cpu": [
|
||||||
|
"arm64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"darwin"
|
||||||
|
],
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 10.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/parcel"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@parcel/watcher-darwin-x64": {
|
||||||
|
"version": "2.5.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.6.tgz",
|
||||||
|
"integrity": "sha512-HgvOf3W9dhithcwOWX9uDZyn1lW9R+7tPZ4sug+NGrGIo4Rk1hAXLEbcH1TQSqxts0NYXXlOWqVpvS1SFS4fRg==",
|
||||||
|
"cpu": [
|
||||||
|
"x64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"darwin"
|
||||||
|
],
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 10.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/parcel"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@parcel/watcher-freebsd-x64": {
|
||||||
|
"version": "2.5.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.6.tgz",
|
||||||
|
"integrity": "sha512-vJVi8yd/qzJxEKHkeemh7w3YAn6RJCtYlE4HPMoVnCpIXEzSrxErBW5SJBgKLbXU3WdIpkjBTeUNtyBVn8TRng==",
|
||||||
|
"cpu": [
|
||||||
|
"x64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"freebsd"
|
||||||
|
],
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 10.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/parcel"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@parcel/watcher-linux-arm-glibc": {
|
||||||
|
"version": "2.5.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.6.tgz",
|
||||||
|
"integrity": "sha512-9JiYfB6h6BgV50CCfasfLf/uvOcJskMSwcdH1PHH9rvS1IrNy8zad6IUVPVUfmXr+u+Km9IxcfMLzgdOudz9EQ==",
|
||||||
|
"cpu": [
|
||||||
|
"arm"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"linux"
|
||||||
|
],
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 10.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/parcel"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@parcel/watcher-linux-arm-musl": {
|
||||||
|
"version": "2.5.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.6.tgz",
|
||||||
|
"integrity": "sha512-Ve3gUCG57nuUUSyjBq/MAM0CzArtuIOxsBdQ+ftz6ho8n7s1i9E1Nmk/xmP323r2YL0SONs1EuwqBp2u1k5fxg==",
|
||||||
|
"cpu": [
|
||||||
|
"arm"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"linux"
|
||||||
|
],
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 10.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/parcel"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@parcel/watcher-linux-arm64-glibc": {
|
||||||
|
"version": "2.5.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.6.tgz",
|
||||||
|
"integrity": "sha512-f2g/DT3NhGPdBmMWYoxixqYr3v/UXcmLOYy16Bx0TM20Tchduwr4EaCbmxh1321TABqPGDpS8D/ggOTaljijOA==",
|
||||||
|
"cpu": [
|
||||||
|
"arm64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"linux"
|
||||||
|
],
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 10.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/parcel"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@parcel/watcher-linux-arm64-musl": {
|
||||||
|
"version": "2.5.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.6.tgz",
|
||||||
|
"integrity": "sha512-qb6naMDGlbCwdhLj6hgoVKJl2odL34z2sqkC7Z6kzir8b5W65WYDpLB6R06KabvZdgoHI/zxke4b3zR0wAbDTA==",
|
||||||
|
"cpu": [
|
||||||
|
"arm64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"linux"
|
||||||
|
],
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 10.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/parcel"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@parcel/watcher-linux-x64-glibc": {
|
||||||
|
"version": "2.5.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.6.tgz",
|
||||||
|
"integrity": "sha512-kbT5wvNQlx7NaGjzPFu8nVIW1rWqV780O7ZtkjuWaPUgpv2NMFpjYERVi0UYj1msZNyCzGlaCWEtzc+exjMGbQ==",
|
||||||
|
"cpu": [
|
||||||
|
"x64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"linux"
|
||||||
|
],
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 10.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/parcel"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@parcel/watcher-linux-x64-musl": {
|
||||||
|
"version": "2.5.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.6.tgz",
|
||||||
|
"integrity": "sha512-1JRFeC+h7RdXwldHzTsmdtYR/Ku8SylLgTU/reMuqdVD7CtLwf0VR1FqeprZ0eHQkO0vqsbvFLXUmYm/uNKJBg==",
|
||||||
|
"cpu": [
|
||||||
|
"x64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"linux"
|
||||||
|
],
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 10.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/parcel"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@parcel/watcher-win32-arm64": {
|
||||||
|
"version": "2.5.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.6.tgz",
|
||||||
|
"integrity": "sha512-3ukyebjc6eGlw9yRt678DxVF7rjXatWiHvTXqphZLvo7aC5NdEgFufVwjFfY51ijYEWpXbqF5jtrK275z52D4Q==",
|
||||||
|
"cpu": [
|
||||||
|
"arm64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"win32"
|
||||||
|
],
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 10.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/parcel"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@parcel/watcher-win32-ia32": {
|
||||||
|
"version": "2.5.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.6.tgz",
|
||||||
|
"integrity": "sha512-k35yLp1ZMwwee3Ez/pxBi5cf4AoBKYXj00CZ80jUz5h8prpiaQsiRPKQMxoLstNuqe2vR4RNPEAEcjEFzhEz/g==",
|
||||||
|
"cpu": [
|
||||||
|
"ia32"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"win32"
|
||||||
|
],
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 10.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/parcel"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/@parcel/watcher-win32-x64": {
|
||||||
|
"version": "2.5.6",
|
||||||
|
"resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.6.tgz",
|
||||||
|
"integrity": "sha512-hbQlYcCq5dlAX9Qx+kFb0FHue6vbjlf0FrNzSKdYK2APUf7tGfGxQCk2ihEREmbR6ZMc0MVAD5RIX/41gpUzTw==",
|
||||||
|
"cpu": [
|
||||||
|
"x64"
|
||||||
|
],
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"win32"
|
||||||
|
],
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 10.0.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "opencollective",
|
||||||
|
"url": "https://opencollective.com/parcel"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/@rolldown/binding-android-arm64": {
|
"node_modules/@rolldown/binding-android-arm64": {
|
||||||
"version": "1.0.3",
|
"version": "1.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.3.tgz",
|
"resolved": "https://registry.npmjs.org/@rolldown/binding-android-arm64/-/binding-android-arm64-1.0.3.tgz",
|
||||||
@@ -383,11 +693,21 @@
|
|||||||
"@types/node": "*"
|
"@types/node": "*"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/95css": {
|
"node_modules/chokidar": {
|
||||||
"version": "0.4.2",
|
"version": "5.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/95css/-/95css-0.4.2.tgz",
|
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-5.0.0.tgz",
|
||||||
"integrity": "sha512-lzlM1rTgaGCxQL66qZTTzH7H+fHOMwwOZQsry3FcgoeUTrPp3mFReY4LUFPiTywC+Qeve0OH2VxrjDhHgRyu5A==",
|
"integrity": "sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==",
|
||||||
"license": "MIT"
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"readdirp": "^5.0.0"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 20.19.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://paulmillr.com/funding/"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"node_modules/detect-libc": {
|
"node_modules/detect-libc": {
|
||||||
"version": "2.1.2",
|
"version": "2.1.2",
|
||||||
@@ -432,6 +752,38 @@
|
|||||||
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/immutable": {
|
||||||
|
"version": "5.1.8",
|
||||||
|
"resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.8.tgz",
|
||||||
|
"integrity": "sha512-TM5YqrGeTsVIPPpILzeqZ8D2Zc2TvNgSDi88zPF2a4cyqQdWV/wVWBDRDbNzzrLeRWScrFcOX9lW2iX6GOtUDw==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
|
"node_modules/is-extglob": {
|
||||||
|
"version": "2.1.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
||||||
|
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"engines": {
|
||||||
|
"node": ">=0.10.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"node_modules/is-glob": {
|
||||||
|
"version": "4.0.3",
|
||||||
|
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
||||||
|
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true,
|
||||||
|
"dependencies": {
|
||||||
|
"is-extglob": "^2.1.1"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=0.10.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/lightningcss": {
|
"node_modules/lightningcss": {
|
||||||
"version": "1.32.0",
|
"version": "1.32.0",
|
||||||
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
|
"resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.32.0.tgz",
|
||||||
@@ -712,6 +1064,14 @@
|
|||||||
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/node-addon-api": {
|
||||||
|
"version": "7.1.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz",
|
||||||
|
"integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"optional": true
|
||||||
|
},
|
||||||
"node_modules/picocolors": {
|
"node_modules/picocolors": {
|
||||||
"version": "1.1.1",
|
"version": "1.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
||||||
@@ -761,6 +1121,20 @@
|
|||||||
"node": "^10 || ^12 || >=14"
|
"node": "^10 || ^12 || >=14"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/readdirp": {
|
||||||
|
"version": "5.0.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-5.0.0.tgz",
|
||||||
|
"integrity": "sha512-9u/XQ1pvrQtYyMpZe7DXKv2p5CNvyVwzUB6uhLAnQwHMSgKMBR62lc7AHljaeteeHXn11XTAaLLUVZYVZyuRBQ==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 20.19.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"type": "individual",
|
||||||
|
"url": "https://paulmillr.com/funding/"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/rolldown": {
|
"node_modules/rolldown": {
|
||||||
"version": "1.0.3",
|
"version": "1.0.3",
|
||||||
"resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.3.tgz",
|
"resolved": "https://registry.npmjs.org/rolldown/-/rolldown-1.0.3.tgz",
|
||||||
@@ -795,6 +1169,27 @@
|
|||||||
"@rolldown/binding-win32-x64-msvc": "1.0.3"
|
"@rolldown/binding-win32-x64-msvc": "1.0.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/sass": {
|
||||||
|
"version": "1.101.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/sass/-/sass-1.101.0.tgz",
|
||||||
|
"integrity": "sha512-OL3GoQyoUdDt843DpVmDO6y2k1sc5IhUDSpu8XucEI+35neq5QivZ1iuegnpraEVTJXlQGK1gl27zKcTLEPbQw==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"chokidar": "^5.0.0",
|
||||||
|
"immutable": "^5.1.5",
|
||||||
|
"source-map-js": ">=0.6.2 <2.0.0"
|
||||||
|
},
|
||||||
|
"bin": {
|
||||||
|
"sass": "sass.js"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=20.19.0"
|
||||||
|
},
|
||||||
|
"optionalDependencies": {
|
||||||
|
"@parcel/watcher": "^2.4.1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/source-map-js": {
|
"node_modules/source-map-js": {
|
||||||
"version": "1.2.1",
|
"version": "1.2.1",
|
||||||
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
||||||
|
|||||||
@@ -10,11 +10,11 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/sql.js": "^1.4.11",
|
"@types/sql.js": "^1.4.11",
|
||||||
|
"sass": "^1.101.0",
|
||||||
"typescript": "^6.0.3",
|
"typescript": "^6.0.3",
|
||||||
"vite": "^8.0.12"
|
"vite": "^8.0.12"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"95css": "^0.4.2",
|
|
||||||
"sql.js": "^1.14.1"
|
"sql.js": "^1.14.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,41 +1,102 @@
|
|||||||
import "95css/css/95css.css";
|
import initSqlJs, { type Database, type SqlValue } from "sql.js";
|
||||||
import "./style.css";
|
|
||||||
import initSqlJs, { type Database } from "sql.js";
|
|
||||||
import sqlWasmUrl from "sql.js/dist/sql-wasm.wasm?url";
|
import sqlWasmUrl from "sql.js/dist/sql-wasm.wasm?url";
|
||||||
|
import "./style.scss";
|
||||||
|
|
||||||
const DB_URL = "/biergarten.sqlite";
|
const DB_URL = "/biergarten.sqlite";
|
||||||
|
|
||||||
|
const tabs = document.querySelectorAll<HTMLButtonElement>("[role='tab']");
|
||||||
|
const panels = document.querySelectorAll<HTMLDivElement>("[role='tabpanel']");
|
||||||
|
|
||||||
const tableSelect = document.querySelector<HTMLSelectElement>("#table-select")!;
|
const tableSelect = document.querySelector<HTMLSelectElement>("#table-select")!;
|
||||||
const tableContainer = document.querySelector<HTMLDivElement>("#table-container")!;
|
const tableContainer =
|
||||||
|
document.querySelector<HTMLDivElement>("#table-container")!;
|
||||||
const status = document.querySelector<HTMLParagraphElement>("#status")!;
|
const status = document.querySelector<HTMLParagraphElement>("#status")!;
|
||||||
|
|
||||||
function renderTable(db: Database, name: string): void {
|
const queryInput = document.querySelector<HTMLTextAreaElement>("#query-input")!;
|
||||||
const result = db.exec(`SELECT * FROM "${name}"`);
|
const queryRun = document.querySelector<HTMLButtonElement>("#query-run")!;
|
||||||
tableContainer.replaceChildren();
|
const queryStatus = document.querySelector<HTMLParagraphElement>("#query-status")!;
|
||||||
|
const queryContainer =
|
||||||
|
document.querySelector<HTMLDivElement>("#query-container")!;
|
||||||
|
|
||||||
if (result.length === 0) {
|
for (const tab of tabs) {
|
||||||
tableContainer.append(Object.assign(document.createElement("p"), { textContent: "No rows." }));
|
tab.addEventListener("click", () => {
|
||||||
return;
|
for (const otherTab of tabs) {
|
||||||
|
const isActive = otherTab === tab;
|
||||||
|
otherTab.classList.toggle("is-active", isActive);
|
||||||
|
otherTab.setAttribute("aria-selected", String(isActive));
|
||||||
}
|
}
|
||||||
|
for (const panel of panels) {
|
||||||
|
panel.hidden = panel.id !== tab.getAttribute("aria-controls");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
const { columns, values } = result[0];
|
const renderResultTable = (
|
||||||
|
container: HTMLDivElement,
|
||||||
|
columns: string[],
|
||||||
|
values: SqlValue[][],
|
||||||
|
) => {
|
||||||
const table = document.createElement("table");
|
const table = document.createElement("table");
|
||||||
|
|
||||||
const head = table.createTHead().insertRow();
|
const head = table.createTHead().insertRow();
|
||||||
for (const column of columns) {
|
for (const column of columns) {
|
||||||
head.append(Object.assign(document.createElement("th"), { textContent: column }));
|
const th = document.createElement("th");
|
||||||
|
th.textContent = column;
|
||||||
|
head.append(th);
|
||||||
}
|
}
|
||||||
|
|
||||||
const body = table.createTBody();
|
const body = table.createTBody();
|
||||||
for (const row of values) {
|
for (const row of values) {
|
||||||
const tr = body.insertRow();
|
const tr = body.insertRow();
|
||||||
for (const cell of row) {
|
for (const cell of row) {
|
||||||
tr.append(Object.assign(document.createElement("td"), { textContent: String(cell ?? "") }));
|
const td = document.createElement("td");
|
||||||
|
td.textContent = String(cell ?? "");
|
||||||
|
tr.append(td);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tableContainer.append(table);
|
container.append(table);
|
||||||
}
|
};
|
||||||
|
|
||||||
|
const renderTable = (db: Database, name: string) => {
|
||||||
|
const result = db.exec(`SELECT * FROM "${name}"`);
|
||||||
|
tableContainer.replaceChildren();
|
||||||
|
|
||||||
|
if (result.length === 0) {
|
||||||
|
tableContainer.append(
|
||||||
|
Object.assign(document.createElement("p"), { textContent: "No rows." }),
|
||||||
|
);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { columns, values } = result[0];
|
||||||
|
renderResultTable(tableContainer, columns, values);
|
||||||
|
};
|
||||||
|
|
||||||
|
const runQuery = (db: Database) => {
|
||||||
|
const sql = queryInput.value.trim();
|
||||||
|
queryContainer.replaceChildren();
|
||||||
|
|
||||||
|
if (!sql) {
|
||||||
|
queryStatus.textContent = "Enter a query to run.";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
const results = db.exec(sql);
|
||||||
|
|
||||||
|
if (results.length === 0) {
|
||||||
|
queryStatus.textContent = "Query executed. No rows returned.";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const { columns, values } = results[results.length - 1];
|
||||||
|
renderResultTable(queryContainer, columns, values);
|
||||||
|
queryStatus.textContent = `${values.length} row${values.length === 1 ? "" : "s"} returned.`;
|
||||||
|
} catch (error) {
|
||||||
|
queryStatus.textContent = `Error: ${error instanceof Error ? error.message : String(error)}`;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
async function main(): Promise<void> {
|
async function main(): Promise<void> {
|
||||||
status.textContent = "Loading database...";
|
status.textContent = "Loading database...";
|
||||||
@@ -47,20 +108,38 @@ async function main(): Promise<void> {
|
|||||||
|
|
||||||
const tables =
|
const tables =
|
||||||
db
|
db
|
||||||
.exec("SELECT name FROM sqlite_master WHERE type = 'table' AND name NOT LIKE 'sqlite_%' ORDER BY name")[0]
|
.exec(
|
||||||
|
`SELECT name
|
||||||
|
FROM sqlite_master
|
||||||
|
WHERE
|
||||||
|
type = 'table'
|
||||||
|
AND
|
||||||
|
name NOT LIKE 'sqlite_%'
|
||||||
|
ORDER BY name`,
|
||||||
|
)[0]
|
||||||
?.values.map((row) => String(row[0])) ?? [];
|
?.values.map((row) => String(row[0])) ?? [];
|
||||||
|
|
||||||
for (const name of tables) {
|
for (const name of tables) {
|
||||||
tableSelect.append(new Option(name, name));
|
tableSelect.append(new Option(name, name));
|
||||||
}
|
}
|
||||||
|
|
||||||
tableSelect.addEventListener("change", () => renderTable(db, tableSelect.value));
|
tableSelect.addEventListener("change", () =>
|
||||||
|
renderTable(db, tableSelect.value),
|
||||||
|
);
|
||||||
|
|
||||||
if (tables.length > 0) {
|
if (tables.length > 0) {
|
||||||
renderTable(db, tables[0]);
|
renderTable(db, tables[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
status.textContent = "";
|
status.textContent = "";
|
||||||
|
|
||||||
|
queryRun.addEventListener("click", () => runQuery(db));
|
||||||
|
queryInput.addEventListener("keydown", (event) => {
|
||||||
|
if ((event.metaKey || event.ctrlKey) && event.key === "Enter") {
|
||||||
|
event.preventDefault();
|
||||||
|
runQuery(db);
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
main().catch((error: unknown) => {
|
main().catch((error: unknown) => {
|
||||||
|
|||||||
@@ -1,28 +0,0 @@
|
|||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
padding: 24px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#window {
|
|
||||||
width: 100%;
|
|
||||||
max-width: 1600px;
|
|
||||||
margin: 0 auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
#table-container {
|
|
||||||
overflow-x: auto;
|
|
||||||
margin-top: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
table {
|
|
||||||
border-collapse: collapse;
|
|
||||||
}
|
|
||||||
|
|
||||||
th,
|
|
||||||
td {
|
|
||||||
border: 1px solid #808080;
|
|
||||||
padding: 4px 8px;
|
|
||||||
text-align: left;
|
|
||||||
font-size: 14px;
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
267
tooling/pipeline-results-viewer/src/style.scss
Normal file
@@ -0,0 +1,267 @@
|
|||||||
|
$gray-100: #dedede;
|
||||||
|
$gray-300: #c3c3c3;
|
||||||
|
$gray-500: #808080;
|
||||||
|
$white: #ffffff;
|
||||||
|
$black: #000000;
|
||||||
|
$navy: #000080;
|
||||||
|
$blue: #1084d0;
|
||||||
|
$teal: #008080;
|
||||||
|
|
||||||
|
$color-surface: $gray-300;
|
||||||
|
$color-surface-alt: $gray-100;
|
||||||
|
$color-surface-sunken: $white;
|
||||||
|
$color-border-highlight: $gray-100;
|
||||||
|
$color-border-lowlight: $gray-500;
|
||||||
|
$color-border-light: $white;
|
||||||
|
$color-border-dark: $black;
|
||||||
|
$color-text: $black;
|
||||||
|
$color-text-on-accent: $white;
|
||||||
|
$color-text-status: $navy;
|
||||||
|
$color-accent-start: $navy;
|
||||||
|
$color-accent-end: $blue;
|
||||||
|
$color-desktop-bg: $teal;
|
||||||
|
$color-row-stripe: $gray-100;
|
||||||
|
$color-shadow: rgba($black, 0.4);
|
||||||
|
$color-focus-ring: $black;
|
||||||
|
|
||||||
|
$bevel-size: 2px;
|
||||||
|
$font-stack: Tahoma, "MS Sans Serif", Verdana, sans-serif;
|
||||||
|
|
||||||
|
@mixin bevel-raised($size: $bevel-size) {
|
||||||
|
border-style: solid;
|
||||||
|
border-width: $size;
|
||||||
|
border-top-color: $color-border-highlight;
|
||||||
|
border-left-color: $color-border-highlight;
|
||||||
|
border-right-color: $color-border-dark;
|
||||||
|
border-bottom-color: $color-border-dark;
|
||||||
|
box-shadow:
|
||||||
|
inset $size $size 0 0 $color-border-light,
|
||||||
|
inset (-$size) (-$size) 0 0 $color-border-lowlight;
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin bevel-sunken($size: $bevel-size) {
|
||||||
|
border-style: solid;
|
||||||
|
border-width: $size;
|
||||||
|
border-top-color: $color-border-lowlight;
|
||||||
|
border-left-color: $color-border-lowlight;
|
||||||
|
border-right-color: $color-border-light;
|
||||||
|
border-bottom-color: $color-border-light;
|
||||||
|
box-shadow:
|
||||||
|
inset $size $size 0 0 $color-border-dark,
|
||||||
|
inset (-$size) (-$size) 0 0 $color-surface-alt;
|
||||||
|
}
|
||||||
|
|
||||||
|
* {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 24px;
|
||||||
|
background: $color-desktop-bg;
|
||||||
|
font-family: $font-stack;
|
||||||
|
color: $color-text;
|
||||||
|
min-height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
#window {
|
||||||
|
width: 100%;
|
||||||
|
max-width: 1600px;
|
||||||
|
margin: 0 auto;
|
||||||
|
background: $color-surface;
|
||||||
|
padding: 6px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 6px;
|
||||||
|
@include bevel-raised(3px);
|
||||||
|
box-shadow: 8px 8px 0 0 $color-shadow;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dialog-header {
|
||||||
|
background: linear-gradient(90deg, $color-accent-start, $color-accent-end);
|
||||||
|
color: $color-text-on-accent;
|
||||||
|
padding: 6px 8px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
|
||||||
|
p {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: bold;
|
||||||
|
letter-spacing: 0.5px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-strip {
|
||||||
|
display: flex;
|
||||||
|
gap: 4px;
|
||||||
|
padding: 8px 8px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab {
|
||||||
|
position: relative;
|
||||||
|
top: 3px;
|
||||||
|
margin-bottom: -2px;
|
||||||
|
font-family: $font-stack;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: bold;
|
||||||
|
text-transform: uppercase;
|
||||||
|
padding: 6px 14px;
|
||||||
|
background: $color-surface;
|
||||||
|
color: $color-text;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 2px;
|
||||||
|
border-top-color: $color-border-light;
|
||||||
|
border-left-color: $color-border-light;
|
||||||
|
border-right-color: $color-border-dark;
|
||||||
|
border-bottom-color: $color-border-dark;
|
||||||
|
border-radius: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
&.is-active {
|
||||||
|
top: 0;
|
||||||
|
z-index: 1;
|
||||||
|
border-bottom-color: $color-surface;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
outline: 1px dotted $color-focus-ring;
|
||||||
|
outline-offset: -4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.dialog-body {
|
||||||
|
border-top: 2px solid $color-border-dark;
|
||||||
|
padding: 12px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tab-panel {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 12px;
|
||||||
|
|
||||||
|
&[hidden] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.field-group {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8px;
|
||||||
|
|
||||||
|
label {
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: bold;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.field-group--stacked {
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: stretch;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
select#table-select {
|
||||||
|
font-family: $font-stack;
|
||||||
|
font-size: 13px;
|
||||||
|
padding: 3px 6px;
|
||||||
|
background: $color-surface-sunken;
|
||||||
|
color: $color-text;
|
||||||
|
border-radius: 0;
|
||||||
|
@include bevel-sunken();
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
outline: 1px dotted $color-focus-ring;
|
||||||
|
outline-offset: 2px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea#query-input {
|
||||||
|
font-family: $font-stack;
|
||||||
|
font-size: 13px;
|
||||||
|
padding: 6px;
|
||||||
|
background: $color-surface-sunken;
|
||||||
|
color: $color-text;
|
||||||
|
border-radius: 0;
|
||||||
|
resize: vertical;
|
||||||
|
@include bevel-sunken();
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
outline: 1px dotted $color-focus-ring;
|
||||||
|
outline-offset: 2px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
align-self: flex-start;
|
||||||
|
font-family: $font-stack;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: bold;
|
||||||
|
text-transform: uppercase;
|
||||||
|
padding: 6px 16px;
|
||||||
|
background: $color-surface;
|
||||||
|
color: $color-text;
|
||||||
|
cursor: pointer;
|
||||||
|
@include bevel-raised();
|
||||||
|
|
||||||
|
&:active {
|
||||||
|
@include bevel-sunken();
|
||||||
|
}
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
outline: 1px dotted $color-focus-ring;
|
||||||
|
outline-offset: -4px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#status,
|
||||||
|
#query-status {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 12px;
|
||||||
|
font-style: italic;
|
||||||
|
color: $color-text-status;
|
||||||
|
}
|
||||||
|
|
||||||
|
#table-container,
|
||||||
|
#query-container {
|
||||||
|
background: $color-surface-sunken;
|
||||||
|
padding: 4px;
|
||||||
|
overflow-x: auto;
|
||||||
|
@include bevel-sunken();
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
margin: 0 auto;
|
||||||
|
font-family: $font-stack;
|
||||||
|
}
|
||||||
|
|
||||||
|
th,
|
||||||
|
td {
|
||||||
|
border: 1px solid $color-border-lowlight;
|
||||||
|
padding: 4px 8px;
|
||||||
|
text-align: left;
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
th {
|
||||||
|
background: $color-surface;
|
||||||
|
white-space: nowrap;
|
||||||
|
font-weight: bold;
|
||||||
|
text-transform: uppercase;
|
||||||
|
@include bevel-raised(1px);
|
||||||
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
min-width: 120px;
|
||||||
|
max-width: 800px;
|
||||||
|
white-space: normal;
|
||||||
|
word-break: break-word;
|
||||||
|
background: $color-surface-sunken;
|
||||||
|
}
|
||||||
|
|
||||||
|
tbody tr:nth-child(even) td {
|
||||||
|
background: $color-row-stripe;
|
||||||
|
}
|
||||||
@@ -139,6 +139,7 @@ FetchContent_MakeAvailable(cpp-httplib)
|
|||||||
# 5. Executable & Sources
|
# 5. Executable & Sources
|
||||||
add_executable(${PROJECT_NAME}
|
add_executable(${PROJECT_NAME}
|
||||||
includes/services/enrichment/mock_enrichment.h
|
includes/services/enrichment/mock_enrichment.h
|
||||||
|
includes/services/curated_data/mock_curated_data_service.h
|
||||||
includes/json_handling/pretty_print.h)
|
includes/json_handling/pretty_print.h)
|
||||||
|
|
||||||
# --- Entry point ---
|
# --- Entry point ---
|
||||||
@@ -148,12 +149,12 @@ target_sources(${PROJECT_NAME} PRIVATE
|
|||||||
|
|
||||||
# --- json_handling ---
|
# --- json_handling ---
|
||||||
target_sources(${PROJECT_NAME} PRIVATE
|
target_sources(${PROJECT_NAME} PRIVATE
|
||||||
src/json_handling/json_loader.cc
|
src/services/curated_data/curated_json_data_service.cc
|
||||||
)
|
)
|
||||||
|
|
||||||
# --- data_model ---
|
# --- services: curated_data ---
|
||||||
target_sources(${PROJECT_NAME} PRIVATE
|
target_sources(${PROJECT_NAME} PRIVATE
|
||||||
src/data_model/names_by_country.cc
|
src/services/curated_data/mock_curated_data_service.cc
|
||||||
)
|
)
|
||||||
|
|
||||||
# --- application_options ---
|
# --- application_options ---
|
||||||
|
|||||||
74
tooling/pipeline/includes/biergarten_pipeline.h
Normal file
@@ -0,0 +1,74 @@
|
|||||||
|
#ifndef BIERGARTEN_PIPELINE_INCLUDES_BIERGARTEN_PIPELINE_H_
|
||||||
|
#define BIERGARTEN_PIPELINE_INCLUDES_BIERGARTEN_PIPELINE_H_
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file biergarten_pipeline.h
|
||||||
|
* @brief Master umbrella header — includes every public header in the
|
||||||
|
* Biergarten pipeline.
|
||||||
|
*/
|
||||||
|
|
||||||
|
// --- orchestrator ---
|
||||||
|
#include "biergarten_pipeline_orchestrator.h"
|
||||||
|
|
||||||
|
// --- concurrency ---
|
||||||
|
#include "concurrency/bounded_channel.h"
|
||||||
|
|
||||||
|
// --- data_generation ---
|
||||||
|
#include "data_generation/data_generator.h"
|
||||||
|
#include "data_generation/json_grammars.h"
|
||||||
|
#ifndef BIERGARTEN_MOCK_ONLY
|
||||||
|
#include "data_generation/llama_generator.h"
|
||||||
|
#include "data_generation/llama_generator_helpers.h"
|
||||||
|
#endif
|
||||||
|
#include "data_generation/mock_generator.h"
|
||||||
|
#include "data_generation/prompt_formatting/gemma4_jinja_prompt_formatter.h"
|
||||||
|
#include "data_generation/prompt_formatting/prompt_formatter.h"
|
||||||
|
|
||||||
|
// --- data_model ---
|
||||||
|
#include "data_model/generated_models.h"
|
||||||
|
#include "data_model/models.h"
|
||||||
|
|
||||||
|
// --- json_handling ---
|
||||||
|
#include "json_handling/pretty_print.h"
|
||||||
|
#include "services/curated_data/curated_json_data_service.h"
|
||||||
|
|
||||||
|
// --- llama backend ---
|
||||||
|
#ifndef BIERGARTEN_MOCK_ONLY
|
||||||
|
#include "llama_backend_state.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// --- services: curated_data ---
|
||||||
|
#include "services/curated_data/curated_data_service.h"
|
||||||
|
#include "services/curated_data/mock_curated_data_service.h"
|
||||||
|
|
||||||
|
// --- services: database ---
|
||||||
|
#include "services/database/export_service.h"
|
||||||
|
#include "services/database/sqlite_connection_helpers.h"
|
||||||
|
#include "services/database/sqlite_export_service.h"
|
||||||
|
#include "services/database/sqlite_export_service_helpers.h"
|
||||||
|
#include "services/database/sqlite_handle_types.h"
|
||||||
|
#include "services/database/sqlite_statement_helpers.h"
|
||||||
|
|
||||||
|
// --- services: datetime ---
|
||||||
|
#include "services/datetime/date_time_provider.h"
|
||||||
|
#include "services/datetime/timer.h"
|
||||||
|
|
||||||
|
// --- services: enrichment ---
|
||||||
|
#include "services/enrichment/enrichment_service.h"
|
||||||
|
#include "services/enrichment/mock_enrichment.h"
|
||||||
|
#include "services/enrichment/wikipedia_service.h"
|
||||||
|
|
||||||
|
// --- services: logging ---
|
||||||
|
#include "services/logging/log_dispatcher.h"
|
||||||
|
#include "services/logging/log_entry.h"
|
||||||
|
#include "services/logging/log_producer.h"
|
||||||
|
#include "services/logging/logger.h"
|
||||||
|
|
||||||
|
// --- services: prompting ---
|
||||||
|
#include "services/prompting/prompt_directory.h"
|
||||||
|
|
||||||
|
// --- web_client ---
|
||||||
|
#include "web_client/http_web_client.h"
|
||||||
|
#include "web_client/web_client.h"
|
||||||
|
|
||||||
|
#endif // BIERGARTEN_PIPELINE_INCLUDES_BIERGARTEN_PIPELINE_H_
|
||||||
@@ -1,12 +1,9 @@
|
|||||||
#ifndef BIERGARTEN_PIPELINE_INCLUDES_BIERGARTEN_DATA_GENERATOR_H_
|
#ifndef BIERGARTEN_PIPELINE_INCLUDES_BIERGARTEN_PIPELINE_ORCHESTRATOR_H_
|
||||||
#define BIERGARTEN_PIPELINE_INCLUDES_BIERGARTEN_DATA_GENERATOR_H_
|
#define BIERGARTEN_PIPELINE_INCLUDES_BIERGARTEN_PIPELINE_ORCHESTRATOR_H_
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file biergarten_pipeline_orchestrator.h
|
* @file biergarten_pipeline_orchestrator.h
|
||||||
* @brief Orchestration for end-to-end brewery and user data generation.
|
* @brief Orchestration for end-to-end brewery and user data generation.
|
||||||
*
|
|
||||||
* Coordinates location loading, enrichment, and generation phases to produce
|
|
||||||
* a complete dataset, wiring dependencies selected at the composition root.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
@@ -15,6 +12,7 @@
|
|||||||
|
|
||||||
#include "data_generation/data_generator.h"
|
#include "data_generation/data_generator.h"
|
||||||
#include "data_model/generated_models.h"
|
#include "data_model/generated_models.h"
|
||||||
|
#include "services/curated_data/curated_data_service.h"
|
||||||
#include "services/database/export_service.h"
|
#include "services/database/export_service.h"
|
||||||
#include "services/enrichment/enrichment_service.h"
|
#include "services/enrichment/enrichment_service.h"
|
||||||
#include "services/logging/logger.h"
|
#include "services/logging/logger.h"
|
||||||
@@ -34,6 +32,8 @@ class BiergartenPipelineOrchestrator {
|
|||||||
* @param generator Implementation (Llama or Mock) for brewery/user
|
* @param generator Implementation (Llama or Mock) for brewery/user
|
||||||
* generation.
|
* generation.
|
||||||
* @param exporter Database backend for persisting generated records.
|
* @param exporter Database backend for persisting generated records.
|
||||||
|
* @param curated_data_service Loads curated location, persona, and name
|
||||||
|
* data used to seed generation.
|
||||||
* @param application_options CLI configuration and paths.
|
* @param application_options CLI configuration and paths.
|
||||||
*/
|
*/
|
||||||
BiergartenPipelineOrchestrator(
|
BiergartenPipelineOrchestrator(
|
||||||
@@ -41,6 +41,7 @@ class BiergartenPipelineOrchestrator {
|
|||||||
std::unique_ptr<IEnrichmentService> context_service,
|
std::unique_ptr<IEnrichmentService> context_service,
|
||||||
std::unique_ptr<DataGenerator> generator,
|
std::unique_ptr<DataGenerator> generator,
|
||||||
std::unique_ptr<IExportService> exporter,
|
std::unique_ptr<IExportService> exporter,
|
||||||
|
std::unique_ptr<ICuratedDataService> curated_data_service,
|
||||||
const ApplicationOptions& application_options);
|
const ApplicationOptions& application_options);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -76,6 +77,7 @@ class BiergartenPipelineOrchestrator {
|
|||||||
* @brief Storage backend for generated brewery and user records.
|
* @brief Storage backend for generated brewery and user records.
|
||||||
*/
|
*/
|
||||||
std::unique_ptr<IExportService> exporter_;
|
std::unique_ptr<IExportService> exporter_;
|
||||||
|
std::unique_ptr<ICuratedDataService> curated_data_service_;
|
||||||
|
|
||||||
ApplicationOptions application_options_;
|
ApplicationOptions application_options_;
|
||||||
|
|
||||||
@@ -98,10 +100,6 @@ class BiergartenPipelineOrchestrator {
|
|||||||
* @brief Generate users grounded in sampled names and personas for
|
* @brief Generate users grounded in sampled names and personas for
|
||||||
* enriched cities.
|
* enriched cities.
|
||||||
*
|
*
|
||||||
* Loads personas.json / forenames-by-country.json /
|
|
||||||
* surnames-by-country.json itself, mirroring how QueryCitiesWithCountries()
|
|
||||||
* owns its own locations.json load.
|
|
||||||
*
|
|
||||||
* @param cities Span of enriched city data.
|
* @param cities Span of enriched city data.
|
||||||
*/
|
*/
|
||||||
void GenerateUsers(std::span<const EnrichedCity> cities);
|
void GenerateUsers(std::span<const EnrichedCity> cities);
|
||||||
@@ -114,4 +112,5 @@ class BiergartenPipelineOrchestrator {
|
|||||||
std::vector<BreweryRecord> generated_breweries_;
|
std::vector<BreweryRecord> generated_breweries_;
|
||||||
std::vector<UserRecord> generated_users_;
|
std::vector<UserRecord> generated_users_;
|
||||||
};
|
};
|
||||||
#endif // BIERGARTEN_PIPELINE_INCLUDES_BIERGARTEN_DATA_GENERATOR_H_
|
|
||||||
|
#endif // BIERGARTEN_PIPELINE_INCLUDES_BIERGARTEN_PIPELINE_ORCHESTRATOR_H_
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#include "bounded_channel.h"
|
#include "concurrency/bounded_channel.h"
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
void BoundedChannel<T>::Send(T item) {
|
void BoundedChannel<T>::Send(T item) {
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ class DataGenerator {
|
|||||||
*
|
*
|
||||||
* @param city Enriched city the user is associated with.
|
* @param city Enriched city the user is associated with.
|
||||||
* @param persona Persona archetype grounding the generated bio.
|
* @param persona Persona archetype grounding the generated bio.
|
||||||
* @param name Sampled first/last name (and gender) -- not LLM-invented.
|
* @param name Sampled first/last name (and gender)
|
||||||
* @return User generation result.
|
* @return User generation result.
|
||||||
*/
|
*/
|
||||||
virtual UserResult GenerateUser(const EnrichedCity& city,
|
virtual UserResult GenerateUser(const EnrichedCity& city,
|
||||||
|
|||||||
@@ -1,24 +1,23 @@
|
|||||||
#ifndef BIERGARTEN_PIPELINE_INCLUDES_DATA_GENERATION_LLAMA_GENERATOR_H_
|
#ifndef BIERGARTEN_PIPELINE_INCLUDES_DATA_GENERATION_LLAMA_GENERATOR_H_
|
||||||
#define BIERGARTEN_PIPELINE_INCLUDES_DATA_GENERATION_LLAMA_GENERATOR_H_
|
#define BIERGARTEN_PIPELINE_INCLUDES_DATA_GENERATION_LLAMA_GENERATOR_H_
|
||||||
|
|
||||||
#include <filesystem>
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file data_generation/llama_generator.h
|
* @file data_generation/llama_generator.h
|
||||||
* @brief llama.cpp-backed implementation of DataGenerator.
|
* @brief llama.cpp-backed implementation of DataGenerator.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
#include <filesystem>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <random>
|
#include <random>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <string_view>
|
#include <string_view>
|
||||||
|
|
||||||
#include "../services/prompting/prompt_directory.h"
|
|
||||||
#include "data_generation/data_generator.h"
|
#include "data_generation/data_generator.h"
|
||||||
#include "data_generation/prompt_formatting/prompt_formatter.h"
|
#include "data_generation/prompt_formatting/prompt_formatter.h"
|
||||||
#include "data_model/models.h"
|
#include "data_model/models.h"
|
||||||
#include "services/logging/logger.h"
|
#include "services/logging/logger.h"
|
||||||
|
#include "services/prompting/prompt_directory.h"
|
||||||
|
|
||||||
struct llama_model;
|
struct llama_model;
|
||||||
struct llama_context;
|
struct llama_context;
|
||||||
|
|||||||
@@ -10,6 +10,7 @@
|
|||||||
#include <boost/program_options.hpp>
|
#include <boost/program_options.hpp>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <filesystem>
|
#include <filesystem>
|
||||||
|
#include <functional>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <optional>
|
#include <optional>
|
||||||
#include <string>
|
#include <string>
|
||||||
@@ -66,7 +67,7 @@ struct Location {
|
|||||||
/**
|
/**
|
||||||
* @brief A sampled first/last name pair, with the source forename's gender.
|
* @brief A sampled first/last name pair, with the source forename's gender.
|
||||||
*
|
*
|
||||||
* Produced by NamesByCountry::SampleName();
|
* Produced by the SampleName() helper in generate_users.cc.
|
||||||
*/
|
*/
|
||||||
struct Name {
|
struct Name {
|
||||||
std::string first_name{};
|
std::string first_name{};
|
||||||
@@ -93,8 +94,23 @@ struct ForenameEntry {
|
|||||||
* dataset (e.g. "M", "F").
|
* dataset (e.g. "M", "F").
|
||||||
*/
|
*/
|
||||||
std::string gender{};
|
std::string gender{};
|
||||||
|
|
||||||
|
bool operator==(const ForenameEntry& other) const {
|
||||||
|
return name == other.name && gender == other.gender;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
namespace std {
|
||||||
|
template <>
|
||||||
|
struct hash<ForenameEntry> {
|
||||||
|
size_t operator()(const ForenameEntry& entry) const noexcept {
|
||||||
|
const size_t name_hash = std::hash<std::string>{}(entry.name);
|
||||||
|
const size_t gender_hash = std::hash<std::string>{}(entry.gender);
|
||||||
|
return name_hash ^ (gender_hash << 1);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
} // namespace std
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief A persona archetype used to ground LLM-generated user bios.
|
* @brief A persona archetype used to ground LLM-generated user bios.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -1,51 +0,0 @@
|
|||||||
#ifndef BIERGARTEN_PIPELINE_INCLUDES_DATA_MODEL_NAMES_BY_COUNTRY_H_
|
|
||||||
#define BIERGARTEN_PIPELINE_INCLUDES_DATA_MODEL_NAMES_BY_COUNTRY_H_
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @file data_model/names_by_country.h
|
|
||||||
* @brief Sampling over the names-by-country fixture data.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <optional>
|
|
||||||
#include <random>
|
|
||||||
#include <string>
|
|
||||||
#include <unordered_map>
|
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
#include "data_model/models.h"
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Samples locale-appropriate names from curated forename/surname
|
|
||||||
* fixture data, keyed by ISO 3166-1 country code.
|
|
||||||
*
|
|
||||||
* Forenames and surnames are kept in separate maps (mirroring the source
|
|
||||||
* dataset's own shape) so per-forename gender is preserved; pairing happens
|
|
||||||
* at sample time rather than being precomputed, so no information from the
|
|
||||||
* source dataset is discarded up front.
|
|
||||||
*/
|
|
||||||
class NamesByCountry {
|
|
||||||
public:
|
|
||||||
NamesByCountry(std::unordered_map<std::string, std::vector<ForenameEntry>>
|
|
||||||
forenames_by_country,
|
|
||||||
std::unordered_map<std::string, std::vector<std::string>>
|
|
||||||
surnames_by_country);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Samples a first/last name pair for the given country.
|
|
||||||
*
|
|
||||||
* @param iso3166_1 ISO 3166-1 country code to sample for.
|
|
||||||
* @param rng Random source used for sampling.
|
|
||||||
* @return A sampled Name, or std::nullopt if the country has no forename
|
|
||||||
* or no surname entries.
|
|
||||||
*/
|
|
||||||
[[nodiscard]] std::optional<Name> SampleName(const std::string& iso3166_1,
|
|
||||||
std::mt19937& rng) const;
|
|
||||||
|
|
||||||
private:
|
|
||||||
std::unordered_map<std::string, std::vector<ForenameEntry>>
|
|
||||||
forenames_by_country_;
|
|
||||||
std::unordered_map<std::string, std::vector<std::string>>
|
|
||||||
surnames_by_country_;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // BIERGARTEN_PIPELINE_INCLUDES_DATA_MODEL_NAMES_BY_COUNTRY_H_
|
|
||||||
@@ -1,46 +0,0 @@
|
|||||||
#ifndef BIERGARTEN_PIPELINE_INCLUDES_JSON_HANDLING_JSON_LOADER_H_
|
|
||||||
#define BIERGARTEN_PIPELINE_INCLUDES_JSON_HANDLING_JSON_LOADER_H_
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @file json_handling/json_loader.h
|
|
||||||
* @brief Loader API for curated location data.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <filesystem>
|
|
||||||
#include <memory>
|
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
#include "data_model/models.h"
|
|
||||||
#include "data_model/names_by_country.h"
|
|
||||||
#include "services/logging/logger.h"
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Loads curated world locations from a JSON file into memory.
|
|
||||||
*/
|
|
||||||
class JsonLoader {
|
|
||||||
public:
|
|
||||||
/**
|
|
||||||
* @brief Parses a JSON array file and returns all location records.
|
|
||||||
*/
|
|
||||||
static std::vector<Location> LoadLocations(
|
|
||||||
const std::filesystem::path& filepath);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Parses a JSON array file and returns all persona records.
|
|
||||||
*/
|
|
||||||
static std::vector<UserPersona> LoadPersonas(
|
|
||||||
const std::filesystem::path& filepath);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Parses the names-by-country fixture pair into a sampling-capable
|
|
||||||
* NamesByCountry.
|
|
||||||
*
|
|
||||||
* @param forenames_filepath Path to forenames-by-country.json.
|
|
||||||
* @param surnames_filepath Path to surnames-by-country.json.
|
|
||||||
*/
|
|
||||||
static NamesByCountry LoadNamesByCountry(
|
|
||||||
const std::filesystem::path& forenames_filepath,
|
|
||||||
const std::filesystem::path& surnames_filepath);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // BIERGARTEN_PIPELINE_INCLUDES_JSON_HANDLING_JSON_LOADER_H_
|
|
||||||
@@ -106,4 +106,4 @@ inline void PrettyPrint(std::ostream& outstream,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif // BIERGARTEN_PIPELINE_INCLUDES_JSON_HANDLING_PRETTY_PRINT_H_
|
||||||
|
|||||||
@@ -0,0 +1,50 @@
|
|||||||
|
#ifndef BIERGARTEN_PIPELINE_INCLUDES_SERVICES_CURATED_DATA_CURATED_DATA_SERVICE_H_
|
||||||
|
#define BIERGARTEN_PIPELINE_INCLUDES_SERVICES_CURATED_DATA_CURATED_DATA_SERVICE_H_
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file services/curated_data/curated_data_service.h
|
||||||
|
* @brief Abstraction for loading curated location, persona, and name data.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <filesystem>
|
||||||
|
#include <unordered_map>
|
||||||
|
#include <unordered_set>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
#include "data_model/models.h"
|
||||||
|
|
||||||
|
using ForenameList = std::vector<ForenameEntry>;
|
||||||
|
using SurnameList = std::vector<std::string>;
|
||||||
|
using LocationsList = std::vector<Location>;
|
||||||
|
using PersonasList = std::vector<UserPersona>;
|
||||||
|
using ForenamesByCountryMap = std::unordered_map<std::string, ForenameList>;
|
||||||
|
using SurnamesByCountryMap = std::unordered_map<std::string, SurnameList>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Interface for services that load curated data used to seed
|
||||||
|
* brewery/user generation.
|
||||||
|
*/
|
||||||
|
class ICuratedDataService {
|
||||||
|
public:
|
||||||
|
ICuratedDataService() = default;
|
||||||
|
virtual ~ICuratedDataService() = default;
|
||||||
|
|
||||||
|
ICuratedDataService(const ICuratedDataService&) = delete;
|
||||||
|
ICuratedDataService& operator=(const ICuratedDataService&) = delete;
|
||||||
|
ICuratedDataService(ICuratedDataService&&) = delete;
|
||||||
|
ICuratedDataService& operator=(ICuratedDataService&&) = delete;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Loads all curated location records.
|
||||||
|
*/
|
||||||
|
virtual const LocationsList& LoadLocations() = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Loads all curated persona records.
|
||||||
|
*/
|
||||||
|
virtual const PersonasList& LoadPersonas() = 0;
|
||||||
|
virtual const ForenamesByCountryMap& LoadForenamesByCountry() = 0;
|
||||||
|
virtual const SurnamesByCountryMap& LoadSurnamesByCountry() = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // BIERGARTEN_PIPELINE_INCLUDES_SERVICES_CURATED_DATA_CURATED_DATA_SERVICE_H_
|
||||||
@@ -0,0 +1,63 @@
|
|||||||
|
#ifndef BIERGARTEN_PIPELINE_INCLUDES_JSON_HANDLING_JSON_LOADER_H_
|
||||||
|
#define BIERGARTEN_PIPELINE_INCLUDES_JSON_HANDLING_JSON_LOADER_H_
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file json_handling/json_loader.h
|
||||||
|
* @brief JSON-backed implementation of ICuratedDataService.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <filesystem>
|
||||||
|
|
||||||
|
#include "data_model/models.h"
|
||||||
|
#include "services/curated_data/curated_data_service.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief File locations for the curated JSON fixtures consumed by
|
||||||
|
* CuratedJsonDataService.
|
||||||
|
*/
|
||||||
|
struct CuratedDataFilePaths {
|
||||||
|
std::filesystem::path locations_path;
|
||||||
|
std::filesystem::path personas_path;
|
||||||
|
std::filesystem::path forenames_path;
|
||||||
|
std::filesystem::path surnames_path;
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Loads curated location, persona, and name data from JSON files.
|
||||||
|
*/
|
||||||
|
class CuratedJsonDataService final : public ICuratedDataService {
|
||||||
|
struct cache {
|
||||||
|
LocationsList locations;
|
||||||
|
PersonasList personas;
|
||||||
|
ForenamesByCountryMap forenames_by_country;
|
||||||
|
SurnamesByCountryMap surnames_by_country;
|
||||||
|
|
||||||
|
cache() = default;
|
||||||
|
~cache() = default;
|
||||||
|
};
|
||||||
|
|
||||||
|
CuratedDataFilePaths filepaths_;
|
||||||
|
cache cache_;
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit CuratedJsonDataService(CuratedDataFilePaths filepaths);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Parses a JSON array file and returns all location records.
|
||||||
|
*/
|
||||||
|
const LocationsList& LoadLocations() override;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Parses a JSON array file and returns all persona records.
|
||||||
|
*/
|
||||||
|
const PersonasList& LoadPersonas() override;
|
||||||
|
|
||||||
|
const ForenamesByCountryMap& LoadForenamesByCountry() override;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Parses a JSON file and returns all the forenames per country.
|
||||||
|
*/
|
||||||
|
const SurnamesByCountryMap& LoadSurnamesByCountry() override;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // BIERGARTEN_PIPELINE_INCLUDES_JSON_HANDLING_JSON_LOADER_H_
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
#ifndef BIERGARTEN_PIPELINE_INCLUDES_SERVICES_CURATED_DATA_MOCK_CURATED_DATA_SERVICE_H_
|
||||||
|
#define BIERGARTEN_PIPELINE_INCLUDES_SERVICES_CURATED_DATA_MOCK_CURATED_DATA_SERVICE_H_
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file services/curated_data/mock_curated_data_service.h
|
||||||
|
* @brief In-memory ICuratedDataService backed by a small fixed dataset, used
|
||||||
|
* when file-backed curated data is disabled (mock mode).
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <filesystem>
|
||||||
|
|
||||||
|
#include "data_model/models.h"
|
||||||
|
#include "services/curated_data/curated_data_service.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Curated data service returning a small fixed in-memory dataset in
|
||||||
|
* place of the JSON fixture files used by JsonLoader.
|
||||||
|
*/
|
||||||
|
class MockCuratedDataService final : public ICuratedDataService {
|
||||||
|
public:
|
||||||
|
MockCuratedDataService();
|
||||||
|
|
||||||
|
const LocationsList& LoadLocations() override;
|
||||||
|
|
||||||
|
const PersonasList& LoadPersonas() override;
|
||||||
|
|
||||||
|
const ForenamesByCountryMap& LoadForenamesByCountry() override;
|
||||||
|
|
||||||
|
const SurnamesByCountryMap& LoadSurnamesByCountry() override;
|
||||||
|
|
||||||
|
private:
|
||||||
|
LocationsList locations_;
|
||||||
|
PersonasList personas_;
|
||||||
|
ForenamesByCountryMap forenames_by_country_;
|
||||||
|
SurnamesByCountryMap surnames_by_country_;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // BIERGARTEN_PIPELINE_INCLUDES_SERVICES_CURATED_DATA_MOCK_CURATED_DATA_SERVICE_H_
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <string_view>
|
#include <string_view>
|
||||||
|
|
||||||
#include "sqlite_handle_types.h"
|
#include "services/database/sqlite_handle_types.h"
|
||||||
|
|
||||||
namespace sqlite_export_service_internal {
|
namespace sqlite_export_service_internal {
|
||||||
|
|
||||||
|
|||||||
@@ -11,10 +11,10 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
|
||||||
#include "../datetime/date_time_provider.h"
|
|
||||||
#include "data_model/models.h"
|
#include "data_model/models.h"
|
||||||
#include "export_service.h"
|
#include "services/database/export_service.h"
|
||||||
#include "sqlite_export_service_helpers.h"
|
#include "services/database/sqlite_export_service_helpers.h"
|
||||||
|
#include "services/datetime/date_time_provider.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Persists generated brewery records into a fresh SQLite database.
|
* @brief Persists generated brewery records into a fresh SQLite database.
|
||||||
|
|||||||
@@ -3,8 +3,8 @@
|
|||||||
|
|
||||||
/* Umbrella header for backward compatibility. */
|
/* Umbrella header for backward compatibility. */
|
||||||
|
|
||||||
#include "sqlite_connection_helpers.h"
|
#include "services/database/sqlite_connection_helpers.h"
|
||||||
#include "sqlite_handle_types.h"
|
#include "services/database/sqlite_handle_types.h"
|
||||||
#include "sqlite_statement_helpers.h"
|
#include "services/database/sqlite_statement_helpers.h"
|
||||||
|
|
||||||
#endif // BIERGARTEN_PIPELINE_INCLUDES_SERVICES_DATABASE_SQLITE_EXPORT_SERVICE_HELPERS_H_
|
#endif // BIERGARTEN_PIPELINE_INCLUDES_SERVICES_DATABASE_SQLITE_EXPORT_SERVICE_HELPERS_H_
|
||||||
|
|||||||
@@ -24,8 +24,10 @@ using SqliteDatabaseHandle = std::unique_ptr<sqlite3, SqliteDatabaseDeleter>;
|
|||||||
using SqliteStatementHandle =
|
using SqliteStatementHandle =
|
||||||
std::unique_ptr<sqlite3_stmt, SqliteStatementDeleter>;
|
std::unique_ptr<sqlite3_stmt, SqliteStatementDeleter>;
|
||||||
|
|
||||||
|
// Represents a parameter that is bound to a prepared SQLite statement.
|
||||||
|
// N.B. indices are 1 based.
|
||||||
template <typename T>
|
template <typename T>
|
||||||
struct BindParam {
|
struct BoundParam {
|
||||||
int index;
|
int index;
|
||||||
T value;
|
T value;
|
||||||
std::string_view action;
|
std::string_view action;
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
#include <string_view>
|
#include <string_view>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "sqlite_handle_types.h"
|
#include "services/database/sqlite_handle_types.h"
|
||||||
|
|
||||||
namespace sqlite_export_service_internal {
|
namespace sqlite_export_service_internal {
|
||||||
|
|
||||||
@@ -109,30 +109,36 @@ INSERT INTO users (
|
|||||||
|
|
||||||
// sqlite3_bind_*() parameter indices are 1-based, matching the "?"
|
// sqlite3_bind_*() parameter indices are 1-based, matching the "?"
|
||||||
// placeholder order in the SQL above.
|
// placeholder order in the SQL above.
|
||||||
inline constexpr int kLocationCityBindIndex = 1;
|
enum LocationBindIndex {
|
||||||
inline constexpr int kLocationStateProvinceBindIndex = 2;
|
kLocationCityBindIndex = 1,
|
||||||
inline constexpr int kLocationIso31662BindIndex = 3;
|
kLocationStateProvinceBindIndex,
|
||||||
inline constexpr int kLocationCountryBindIndex = 4;
|
kLocationIso31662BindIndex,
|
||||||
inline constexpr int kLocationIso31661BindIndex = 5;
|
kLocationCountryBindIndex,
|
||||||
inline constexpr int kLocationLanguagesBindIndex = 6;
|
kLocationIso31661BindIndex,
|
||||||
inline constexpr int kLocationLatitudeBindIndex = 7;
|
kLocationLanguagesBindIndex,
|
||||||
inline constexpr int kLocationLongitudeBindIndex = 8;
|
kLocationLatitudeBindIndex,
|
||||||
|
kLocationLongitudeBindIndex,
|
||||||
|
};
|
||||||
|
|
||||||
inline constexpr int kBreweryLocationIdBindIndex = 1;
|
enum BreweryBindIndex {
|
||||||
inline constexpr int kBreweryEnglishNameBindIndex = 2;
|
kBreweryLocationIdBindIndex = 1,
|
||||||
inline constexpr int kBreweryEnglishDescriptionBindIndex = 3;
|
kBreweryEnglishNameBindIndex,
|
||||||
inline constexpr int kBreweryLocalNameBindIndex = 4;
|
kBreweryEnglishDescriptionBindIndex,
|
||||||
inline constexpr int kBreweryLocalDescriptionBindIndex = 5;
|
kBreweryLocalNameBindIndex,
|
||||||
|
kBreweryLocalDescriptionBindIndex,
|
||||||
|
};
|
||||||
|
|
||||||
inline constexpr int kUserLocationIdBindIndex = 1;
|
enum UserBindIndex {
|
||||||
inline constexpr int kUserFirstNameBindIndex = 2;
|
kUserLocationIdBindIndex = 1,
|
||||||
inline constexpr int kUserLastNameBindIndex = 3;
|
kUserFirstNameBindIndex,
|
||||||
inline constexpr int kUserGenderBindIndex = 4;
|
kUserLastNameBindIndex,
|
||||||
inline constexpr int kUserUsernameBindIndex = 5;
|
kUserGenderBindIndex,
|
||||||
inline constexpr int kUserBioBindIndex = 6;
|
kUserUsernameBindIndex,
|
||||||
inline constexpr int kUserActivityWeightBindIndex = 7;
|
kUserBioBindIndex,
|
||||||
inline constexpr int kUserEmailBindIndex = 8;
|
kUserActivityWeightBindIndex,
|
||||||
inline constexpr int kUserDateOfBirthBindIndex = 9;
|
kUserEmailBindIndex,
|
||||||
|
kUserDateOfBirthBindIndex,
|
||||||
|
};
|
||||||
|
|
||||||
SqliteStatementHandle PrepareStatement(const SqliteDatabaseHandle& db_handle,
|
SqliteStatementHandle PrepareStatement(const SqliteDatabaseHandle& db_handle,
|
||||||
std::string_view sql,
|
std::string_view sql,
|
||||||
@@ -141,13 +147,13 @@ SqliteStatementHandle PrepareStatement(const SqliteDatabaseHandle& db_handle,
|
|||||||
void ResetStatement(SqliteStatementHandle& statement);
|
void ResetStatement(SqliteStatementHandle& statement);
|
||||||
|
|
||||||
void Bind(const SqliteStatementHandle& statement,
|
void Bind(const SqliteStatementHandle& statement,
|
||||||
const BindParam<std::string_view>& param);
|
const BoundParam<std::string_view>& param);
|
||||||
|
|
||||||
void Bind(const SqliteStatementHandle& statement,
|
void Bind(const SqliteStatementHandle& statement,
|
||||||
const BindParam<double>& param);
|
const BoundParam<double>& param);
|
||||||
|
|
||||||
void Bind(const SqliteStatementHandle& statement,
|
void Bind(const SqliteStatementHandle& statement,
|
||||||
const BindParam<sqlite3_int64>& param);
|
const BoundParam<sqlite3_int64>& param);
|
||||||
|
|
||||||
void StepStatement(const SqliteDatabaseHandle& db_handle,
|
void StepStatement(const SqliteDatabaseHandle& db_handle,
|
||||||
const SqliteStatementHandle& statement,
|
const SqliteStatementHandle& statement,
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
#include "enrichment_service.h"
|
#include "services/enrichment/enrichment_service.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Enrichment service that returns no context for any location.
|
* @brief Enrichment service that returns no context for any location.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
#include <string_view>
|
#include <string_view>
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
|
||||||
#include "enrichment_service.h"
|
#include "services/enrichment/enrichment_service.h"
|
||||||
#include "services/logging/logger.h"
|
#include "services/logging/logger.h"
|
||||||
#include "web_client/web_client.h"
|
#include "web_client/web_client.h"
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@
|
|||||||
* a bounded channel for later processing by the dispatcher.
|
* a bounded channel for later processing by the dispatcher.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef BIERGARTEN_PIPELINE_INCLUDES_SERVICES_LOGGING_CHANNEL_LOGGER_H_
|
#ifndef BIERGARTEN_PIPELINE_INCLUDES_SERVICES_LOGGING_LOG_PRODUCER_H_
|
||||||
#define BIERGARTEN_PIPELINE_INCLUDES_SERVICES_LOGGING_CHANNEL_LOGGER_H_
|
#define BIERGARTEN_PIPELINE_INCLUDES_SERVICES_LOGGING_LOG_PRODUCER_H_
|
||||||
|
|
||||||
#include <string_view>
|
#include <string_view>
|
||||||
|
|
||||||
@@ -50,4 +50,4 @@ class LogProducer final : public ILogger {
|
|||||||
BoundedChannel<LogEntry>& channel_;
|
BoundedChannel<LogEntry>& channel_;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // BIERGARTEN_PIPELINE_INCLUDES_SERVICES_LOGGING_CHANNEL_LOGGER_H_
|
#endif // BIERGARTEN_PIPELINE_INCLUDES_SERVICES_LOGGING_LOG_PRODUCER_H_
|
||||||
|
|||||||
@@ -52,4 +52,4 @@ class HttpWebClient final : public WebClient {
|
|||||||
std::shared_ptr<ILogger> logger_;
|
std::shared_ptr<ILogger> logger_;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif // BIERGARTEN_PIPELINE_INCLUDES_WEB_CLIENT_HTTP_WEB_CLIENT_H_
|
||||||
|
|||||||
8
tooling/pipeline/run.sh
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
./biergarten-pipeline \
|
||||||
|
--model ../models/google_gemma-4-E4B-it-Q6_K.gguf \
|
||||||
|
--temperature 1.0 \
|
||||||
|
--top-p 0.95 \
|
||||||
|
--top-k 64 \
|
||||||
|
--n-ctx 8192 \
|
||||||
|
--location-count 15 \
|
||||||
|
--prompt-dir ../prompts
|
||||||
@@ -12,9 +12,11 @@ BiergartenPipelineOrchestrator::BiergartenPipelineOrchestrator(
|
|||||||
std::unique_ptr<IEnrichmentService> context_service,
|
std::unique_ptr<IEnrichmentService> context_service,
|
||||||
std::unique_ptr<DataGenerator> generator,
|
std::unique_ptr<DataGenerator> generator,
|
||||||
std::unique_ptr<IExportService> exporter,
|
std::unique_ptr<IExportService> exporter,
|
||||||
const ApplicationOptions& app_options)
|
std::unique_ptr<ICuratedDataService> curated_data_service,
|
||||||
|
const ApplicationOptions& application_options)
|
||||||
: logger_(std::move(logger)),
|
: logger_(std::move(logger)),
|
||||||
context_service_(std::move(context_service)),
|
context_service_(std::move(context_service)),
|
||||||
generator_(std::move(generator)),
|
generator_(std::move(generator)),
|
||||||
exporter_(std::move(exporter)),
|
exporter_(std::move(exporter)),
|
||||||
application_options_(app_options) {}
|
curated_data_service_(std::move(curated_data_service)),
|
||||||
|
application_options_(application_options) {}
|
||||||
@@ -6,6 +6,7 @@
|
|||||||
#include <cctype>
|
#include <cctype>
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
#include <format>
|
#include <format>
|
||||||
|
#include <iterator>
|
||||||
#include <optional>
|
#include <optional>
|
||||||
#include <random>
|
#include <random>
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
@@ -14,11 +15,10 @@
|
|||||||
#include <unordered_set>
|
#include <unordered_set>
|
||||||
|
|
||||||
#include "biergarten_pipeline_orchestrator.h"
|
#include "biergarten_pipeline_orchestrator.h"
|
||||||
#include "json_handling/json_loader.h"
|
#include "services/curated_data/curated_json_data_service.h"
|
||||||
#include "services/logging/logger.h"
|
#include "services/logging/logger.h"
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
std::string Sanitize(std::string_view value) {
|
std::string Sanitize(std::string_view value) {
|
||||||
std::string out;
|
std::string out;
|
||||||
out.reserve(value.size());
|
out.reserve(value.size());
|
||||||
@@ -71,6 +71,35 @@ std::string GenerateDateOfBirth(std::mt19937& rng) {
|
|||||||
static_cast<unsigned>(birth_ymd.day()));
|
static_cast<unsigned>(birth_ymd.day()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::optional<Name> SampleName(
|
||||||
|
const ForenamesByCountryMap& forenames_by_country,
|
||||||
|
const SurnamesByCountryMap& surnames_by_country,
|
||||||
|
const std::string& iso3166_1, std::mt19937& rng) {
|
||||||
|
const auto forenames_it = forenames_by_country.find(iso3166_1);
|
||||||
|
const auto surnames_it = surnames_by_country.find(iso3166_1);
|
||||||
|
|
||||||
|
if (forenames_it == forenames_by_country.end() ||
|
||||||
|
surnames_it == surnames_by_country.end() ||
|
||||||
|
forenames_it->second.empty() || surnames_it->second.empty()) {
|
||||||
|
return std::nullopt;
|
||||||
|
}
|
||||||
|
|
||||||
|
const ForenameList& forenames = forenames_it->second;
|
||||||
|
const SurnameList& surnames = surnames_it->second;
|
||||||
|
|
||||||
|
std::uniform_int_distribution<size_t> forename_dist(0, forenames.size() - 1);
|
||||||
|
std::uniform_int_distribution<size_t> surname_dist(0, surnames.size() - 1);
|
||||||
|
|
||||||
|
auto forename_it = forenames.begin();
|
||||||
|
std::advance(forename_it, forename_dist(rng));
|
||||||
|
|
||||||
|
auto surname_it = surnames.begin();
|
||||||
|
std::advance(surname_it, surname_dist(rng));
|
||||||
|
|
||||||
|
return Name{.first_name = forename_it->name,
|
||||||
|
.last_name = *surname_it,
|
||||||
|
.gender = forename_it->gender};
|
||||||
|
}
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
void BiergartenPipelineOrchestrator::GenerateUsers(
|
void BiergartenPipelineOrchestrator::GenerateUsers(
|
||||||
@@ -79,16 +108,17 @@ void BiergartenPipelineOrchestrator::GenerateUsers(
|
|||||||
.phase = PipelinePhase::UserGeneration,
|
.phase = PipelinePhase::UserGeneration,
|
||||||
.message = "=== SAMPLE USER GENERATION ==="});
|
.message = "=== SAMPLE USER GENERATION ==="});
|
||||||
|
|
||||||
const std::vector<UserPersona> personas =
|
const PersonasList& personas = curated_data_service_->LoadPersonas();
|
||||||
JsonLoader::LoadPersonas("personas.json");
|
|
||||||
|
|
||||||
if (personas.empty()) {
|
if (personas.empty()) {
|
||||||
throw std::runtime_error(
|
throw std::runtime_error(
|
||||||
"No personas available in personas.json for user generation");
|
"No personas available in personas.json for user generation");
|
||||||
}
|
}
|
||||||
|
|
||||||
const NamesByCountry names_by_country = JsonLoader::LoadNamesByCountry(
|
const ForenamesByCountryMap& forenames_by_country =
|
||||||
"forenames-by-country.json", "surnames-by-country.json");
|
curated_data_service_->LoadForenamesByCountry();
|
||||||
|
const SurnamesByCountryMap& surnames_by_country =
|
||||||
|
curated_data_service_->LoadSurnamesByCountry();
|
||||||
|
|
||||||
std::mt19937 rng(std::random_device{}());
|
std::mt19937 rng(std::random_device{}());
|
||||||
std::uniform_int_distribution<size_t> persona_dist(0, personas.size() - 1);
|
std::uniform_int_distribution<size_t> persona_dist(0, personas.size() - 1);
|
||||||
@@ -96,14 +126,13 @@ void BiergartenPipelineOrchestrator::GenerateUsers(
|
|||||||
generated_users_.clear();
|
generated_users_.clear();
|
||||||
size_t skipped_count = 0;
|
size_t skipped_count = 0;
|
||||||
size_t export_failed_count = 0;
|
size_t export_failed_count = 0;
|
||||||
|
std::unordered_set<std::string> used_email_local_parts;
|
||||||
|
|
||||||
const auto generate_record =
|
const auto generate_record =
|
||||||
[this, &rng, &skipped_count](
|
[this, &rng, &skipped_count, &used_email_local_parts](
|
||||||
const EnrichedCity& city, const UserPersona& persona,
|
const EnrichedCity& city, const UserPersona& persona,
|
||||||
const Name& sampled_name) -> std::optional<UserRecord> {
|
const Name& sampled_name) -> std::optional<UserRecord> {
|
||||||
try {
|
try {
|
||||||
std::unordered_set<std::string> used_email_local_parts;
|
|
||||||
|
|
||||||
const UserResult user =
|
const UserResult user =
|
||||||
generator_->GenerateUser(city, persona, sampled_name);
|
generator_->GenerateUser(city, persona, sampled_name);
|
||||||
|
|
||||||
@@ -144,7 +173,8 @@ void BiergartenPipelineOrchestrator::GenerateUsers(
|
|||||||
|
|
||||||
for (const auto& city : cities) {
|
for (const auto& city : cities) {
|
||||||
const std::optional<Name> sampled_name =
|
const std::optional<Name> sampled_name =
|
||||||
names_by_country.SampleName(city.location.iso3166_1, rng);
|
SampleName(forenames_by_country, surnames_by_country,
|
||||||
|
city.location.iso3166_1, rng);
|
||||||
|
|
||||||
if (!sampled_name.has_value()) {
|
if (!sampled_name.has_value()) {
|
||||||
++skipped_count;
|
++skipped_count;
|
||||||
|
|||||||
@@ -7,8 +7,8 @@
|
|||||||
#include <chrono>
|
#include <chrono>
|
||||||
#include <format>
|
#include <format>
|
||||||
|
|
||||||
#include "../../includes/json_handling/pretty_print.h"
|
|
||||||
#include "biergarten_pipeline_orchestrator.h"
|
#include "biergarten_pipeline_orchestrator.h"
|
||||||
|
#include "json_handling/pretty_print.h"
|
||||||
#include "services/logging/logger.h"
|
#include "services/logging/logger.h"
|
||||||
|
|
||||||
void BiergartenPipelineOrchestrator::LogResults() const {
|
void BiergartenPipelineOrchestrator::LogResults() const {
|
||||||
|
|||||||
@@ -6,13 +6,12 @@
|
|||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
#include <filesystem>
|
|
||||||
#include <format>
|
#include <format>
|
||||||
#include <iterator>
|
#include <iterator>
|
||||||
#include <random>
|
#include <random>
|
||||||
|
|
||||||
#include "biergarten_pipeline_orchestrator.h"
|
#include "biergarten_pipeline_orchestrator.h"
|
||||||
#include "json_handling/json_loader.h"
|
#include "services/curated_data/curated_json_data_service.h"
|
||||||
#include "services/logging/logger.h"
|
#include "services/logging/logger.h"
|
||||||
|
|
||||||
std::vector<Location>
|
std::vector<Location>
|
||||||
@@ -21,9 +20,8 @@ BiergartenPipelineOrchestrator::QueryCitiesWithCountries() {
|
|||||||
.phase = PipelinePhase::Startup,
|
.phase = PipelinePhase::Startup,
|
||||||
.message = "=== GEOGRAPHIC DATA OVERVIEW ==="});
|
.message = "=== GEOGRAPHIC DATA OVERVIEW ==="});
|
||||||
|
|
||||||
const std::filesystem::path locations_path = "locations.json";
|
const std::vector<Location>& all_locations =
|
||||||
|
curated_data_service_->LoadLocations();
|
||||||
auto all_locations = JsonLoader::LoadLocations(locations_path);
|
|
||||||
|
|
||||||
const size_t sample_count = std::min(
|
const size_t sample_count = std::min(
|
||||||
static_cast<size_t>(application_options_.pipeline.location_count),
|
static_cast<size_t>(application_options_.pipeline.location_count),
|
||||||
|
|||||||
@@ -30,10 +30,13 @@ UserResult LlamaGenerator::GenerateUser(const EnrichedCity& city,
|
|||||||
const std::string system_prompt = prompt_directory_->Load("USER_GENERATION");
|
const std::string system_prompt = prompt_directory_->Load("USER_GENERATION");
|
||||||
|
|
||||||
std::string user_prompt = std::format(
|
std::string user_prompt = std::format(
|
||||||
"## NAME:\n{} {}\n\n## GENDER:\n{}\n\n## CITY:\n{}\n\n## "
|
"## NAME:\n\n{} {}\n\n"
|
||||||
"COUNTRY:\n{}\n\n"
|
"## GENDER:\n\n{}\n\n"
|
||||||
"## PERSONA:\n{}\n\n## PERSONA DESCRIPTION:\n{}\n\n## STYLE "
|
"## CITY:\n\n{}\n\n"
|
||||||
"AFFINITIES:\n{}",
|
"## COUNTRY:\n\n{}\n\n"
|
||||||
|
"## PERSONA:\n\n{}\n\n"
|
||||||
|
"## PERSONA DESCRIPTION:\n\n{}\n\n"
|
||||||
|
"## STYLE AFFINITIES:\n\n{}",
|
||||||
name.first_name, name.last_name, name.gender, city.location.city,
|
name.first_name, name.last_name, name.gender, city.location.city,
|
||||||
city.location.country, persona.name, persona.description,
|
city.location.country, persona.name, persona.description,
|
||||||
style_affinities);
|
style_affinities);
|
||||||
|
|||||||
@@ -15,8 +15,10 @@
|
|||||||
#include <string_view>
|
#include <string_view>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
#include <llama.h>
|
||||||
|
|
||||||
#include "data_generation/llama_generator_helpers.h"
|
#include "data_generation/llama_generator_helpers.h"
|
||||||
#include "llama.h"
|
|
||||||
namespace {
|
namespace {
|
||||||
/**
|
/**
|
||||||
* String trimming: removes leading and trailing whitespace
|
* String trimming: removes leading and trailing whitespace
|
||||||
|
|||||||
@@ -14,9 +14,10 @@
|
|||||||
#include <string_view>
|
#include <string_view>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
#include <llama.h>
|
||||||
|
|
||||||
#include "data_generation/llama_generator.h"
|
#include "data_generation/llama_generator.h"
|
||||||
#include "data_generation/llama_generator_helpers.h"
|
#include "data_generation/llama_generator_helpers.h"
|
||||||
#include "llama.h"
|
|
||||||
|
|
||||||
static constexpr size_t kPromptTokenSlack = 8;
|
static constexpr size_t kPromptTokenSlack = 8;
|
||||||
// Minimum tokens to keep when using top-p sampling. Ensures at least one
|
// Minimum tokens to keep when using top-p sampling. Ensures at least one
|
||||||
|
|||||||
@@ -11,8 +11,9 @@
|
|||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
|
#include <llama.h>
|
||||||
|
|
||||||
#include "data_model/models.h"
|
#include "data_model/models.h"
|
||||||
#include "llama.h"
|
|
||||||
|
|
||||||
static constexpr uint32_t kMaxContextSize = 32768U;
|
static constexpr uint32_t kMaxContextSize = 32768U;
|
||||||
|
|
||||||
|
|||||||
@@ -10,9 +10,10 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
|
||||||
|
#include <ggml-backend.h>
|
||||||
|
#include <llama.h>
|
||||||
|
|
||||||
#include "data_generation/llama_generator.h"
|
#include "data_generation/llama_generator.h"
|
||||||
#include "ggml-backend.h"
|
|
||||||
#include "llama.h"
|
|
||||||
|
|
||||||
// Maximum batch size for decode operations. Capping the batch prevents
|
// Maximum batch size for decode operations. Capping the batch prevents
|
||||||
// excessive memory allocation while maintaining inference performance.
|
// excessive memory allocation while maintaining inference performance.
|
||||||
|
|||||||
@@ -1,40 +0,0 @@
|
|||||||
/**
|
|
||||||
* @file data_model/names_by_country.cc
|
|
||||||
* @brief NamesByCountry::SampleName() implementation.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "data_model/names_by_country.h"
|
|
||||||
|
|
||||||
#include <utility>
|
|
||||||
|
|
||||||
NamesByCountry::NamesByCountry(
|
|
||||||
std::unordered_map<std::string, std::vector<ForenameEntry>>
|
|
||||||
forenames_by_country,
|
|
||||||
std::unordered_map<std::string, std::vector<std::string>>
|
|
||||||
surnames_by_country)
|
|
||||||
: forenames_by_country_(std::move(forenames_by_country)),
|
|
||||||
surnames_by_country_(std::move(surnames_by_country)) {}
|
|
||||||
|
|
||||||
std::optional<Name> NamesByCountry::SampleName(const std::string& iso3166_1,
|
|
||||||
std::mt19937& rng) const {
|
|
||||||
const auto forenames_it = forenames_by_country_.find(iso3166_1);
|
|
||||||
const auto surnames_it = surnames_by_country_.find(iso3166_1);
|
|
||||||
|
|
||||||
if (forenames_it == forenames_by_country_.end() ||
|
|
||||||
surnames_it == surnames_by_country_.end() ||
|
|
||||||
forenames_it->second.empty() || surnames_it->second.empty()) {
|
|
||||||
return std::nullopt;
|
|
||||||
}
|
|
||||||
|
|
||||||
const std::vector<ForenameEntry>& forenames = forenames_it->second;
|
|
||||||
const std::vector<std::string>& surnames = surnames_it->second;
|
|
||||||
|
|
||||||
std::uniform_int_distribution<size_t> forename_dist(0, forenames.size() - 1);
|
|
||||||
std::uniform_int_distribution<size_t> surname_dist(0, surnames.size() - 1);
|
|
||||||
|
|
||||||
const ForenameEntry& forename = forenames[forename_dist(rng)];
|
|
||||||
|
|
||||||
return Name{.first_name = forename.name,
|
|
||||||
.last_name = surnames[surname_dist(rng)],
|
|
||||||
.gender = forename.gender};
|
|
||||||
}
|
|
||||||
@@ -18,25 +18,7 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
|
||||||
#include "biergarten_pipeline_orchestrator.h"
|
#include "biergarten_pipeline.h"
|
||||||
#include "concurrency/bounded_channel.h"
|
|
||||||
#include "data_generation/llama_generator.h"
|
|
||||||
#include "data_generation/mock_generator.h"
|
|
||||||
#include "data_generation/prompt_formatting/gemma4_jinja_prompt_formatter.h"
|
|
||||||
#include "data_model/models.h"
|
|
||||||
#include "llama_backend_state.h"
|
|
||||||
#include "services/database/export_service.h"
|
|
||||||
#include "services/database/sqlite_export_service.h"
|
|
||||||
#include "services/datetime/timer.h"
|
|
||||||
#include "services/enrichment/enrichment_service.h"
|
|
||||||
#include "services/enrichment/mock_enrichment.h"
|
|
||||||
#include "services/enrichment/wikipedia_service.h"
|
|
||||||
#include "services/logging/log_dispatcher.h"
|
|
||||||
#include "services/logging/log_entry.h"
|
|
||||||
#include "services/logging/log_producer.h"
|
|
||||||
#include "services/logging/logger.h"
|
|
||||||
#include "services/prompting/prompt_directory.h"
|
|
||||||
#include "web_client/http_web_client.h"
|
|
||||||
|
|
||||||
namespace di = boost::di;
|
namespace di = boost::di;
|
||||||
|
|
||||||
@@ -104,6 +86,28 @@ int main(const int argc, char** argv) {
|
|||||||
di::bind<ApplicationOptions>().to(options),
|
di::bind<ApplicationOptions>().to(options),
|
||||||
di::bind<std::string>().to(model_path),
|
di::bind<std::string>().to(model_path),
|
||||||
di::bind<IExportService>().to<SqliteExportService>(),
|
di::bind<IExportService>().to<SqliteExportService>(),
|
||||||
|
di::bind<ICuratedDataService>().to(
|
||||||
|
[options, &log_producer]() -> std::unique_ptr<ICuratedDataService> {
|
||||||
|
if (options.generator.use_mocked) {
|
||||||
|
log_producer->Log({.level = LogLevel::Info,
|
||||||
|
.phase = PipelinePhase::Startup,
|
||||||
|
.message = "Curated data: mock"});
|
||||||
|
|
||||||
|
return std::make_unique<MockCuratedDataService>();
|
||||||
|
}
|
||||||
|
|
||||||
|
log_producer->Log({.level = LogLevel::Info,
|
||||||
|
.phase = PipelinePhase::Startup,
|
||||||
|
.message = "Curated data: JsonLoader"});
|
||||||
|
|
||||||
|
return std::make_unique<CuratedJsonDataService>(
|
||||||
|
CuratedDataFilePaths{
|
||||||
|
.locations_path = "locations.json",
|
||||||
|
.personas_path = "personas.json",
|
||||||
|
.forenames_path = "forenames-by-country.json",
|
||||||
|
.surnames_path = "surnames-by-country.json",
|
||||||
|
});
|
||||||
|
}),
|
||||||
di::bind<IPromptFormatter>().to([options, log_producer] {
|
di::bind<IPromptFormatter>().to([options, log_producer] {
|
||||||
if (options.generator.use_mocked) {
|
if (options.generator.use_mocked) {
|
||||||
{
|
{
|
||||||
@@ -132,11 +136,11 @@ int main(const int argc, char** argv) {
|
|||||||
}
|
}
|
||||||
return std::unique_ptr<WebClient>(nullptr);
|
return std::unique_ptr<WebClient>(nullptr);
|
||||||
}
|
}
|
||||||
{
|
|
||||||
log_producer->Log({.level = LogLevel::Info,
|
log_producer->Log({.level = LogLevel::Info,
|
||||||
.phase = PipelinePhase::Startup,
|
.phase = PipelinePhase::Startup,
|
||||||
.message = "Web client: HttpWebClient"});
|
.message = "Web client: HttpWebClient"});
|
||||||
}
|
|
||||||
return std::unique_ptr<WebClient>(
|
return std::unique_ptr<WebClient>(
|
||||||
std::make_unique<HttpWebClient>(log_producer));
|
std::make_unique<HttpWebClient>(log_producer));
|
||||||
}),
|
}),
|
||||||
@@ -144,18 +148,17 @@ int main(const int argc, char** argv) {
|
|||||||
[options, &log_producer](
|
[options, &log_producer](
|
||||||
const auto& inj) -> std::unique_ptr<IEnrichmentService> {
|
const auto& inj) -> std::unique_ptr<IEnrichmentService> {
|
||||||
if (options.generator.use_mocked) {
|
if (options.generator.use_mocked) {
|
||||||
{
|
|
||||||
log_producer->Log({.level = LogLevel::Info,
|
log_producer->Log({.level = LogLevel::Info,
|
||||||
.phase = PipelinePhase::Startup,
|
.phase = PipelinePhase::Startup,
|
||||||
.message = "Enrichment: mock"});
|
.message = "Enrichment: mock"});
|
||||||
}
|
|
||||||
return std::make_unique<MockEnrichmentService>();
|
return std::make_unique<MockEnrichmentService>();
|
||||||
}
|
}
|
||||||
{
|
|
||||||
log_producer->Log({.level = LogLevel::Info,
|
log_producer->Log({.level = LogLevel::Info,
|
||||||
.phase = PipelinePhase::Startup,
|
.phase = PipelinePhase::Startup,
|
||||||
.message = "Enrichment: Wikipedia"});
|
.message = "Enrichment: Wikipedia"});
|
||||||
}
|
|
||||||
return std::make_unique<WikipediaEnrichmentService>(
|
return std::make_unique<WikipediaEnrichmentService>(
|
||||||
inj.template create<std::unique_ptr<WebClient>>(),
|
inj.template create<std::unique_ptr<WebClient>>(),
|
||||||
log_producer);
|
log_producer);
|
||||||
@@ -164,28 +167,35 @@ int main(const int argc, char** argv) {
|
|||||||
[&options, &model_path, &sampling, &prompt_directory,
|
[&options, &model_path, &sampling, &prompt_directory,
|
||||||
&log_producer](const auto& inj) -> std::unique_ptr<DataGenerator> {
|
&log_producer](const auto& inj) -> std::unique_ptr<DataGenerator> {
|
||||||
if (options.generator.use_mocked) {
|
if (options.generator.use_mocked) {
|
||||||
{
|
|
||||||
log_producer->Log({.level = LogLevel::Info,
|
log_producer->Log({.level = LogLevel::Info,
|
||||||
.phase = PipelinePhase::Startup,
|
.phase = PipelinePhase::Startup,
|
||||||
.message = "Generator: mock"});
|
.message = "Generator: mock"});
|
||||||
}
|
|
||||||
return std::make_unique<MockGenerator>();
|
return std::make_unique<MockGenerator>();
|
||||||
}
|
}
|
||||||
{
|
|
||||||
|
#ifdef BIERGARTEN_MOCK_ONLY
|
||||||
|
// Unreachable: ParseArguments requires --mocked when
|
||||||
|
// BIERGARTEN_MOCK_ONLY is compiled in, so LlamaGenerator is
|
||||||
|
// never constructed and is not linked into this binary.
|
||||||
|
throw std::runtime_error(
|
||||||
|
"LlamaGenerator is unavailable in a BIERGARTEN_MOCK_ONLY "
|
||||||
|
"build");
|
||||||
|
#else
|
||||||
log_producer->Log(
|
log_producer->Log(
|
||||||
{.level = LogLevel::Info,
|
{.level = LogLevel::Info,
|
||||||
.phase = PipelinePhase::Startup,
|
.phase = PipelinePhase::Startup,
|
||||||
.message = std::format(
|
.message = std::format(
|
||||||
"Generator: LlamaGenerator | model={} | "
|
"Generator: LlamaGenerator | model={} | "
|
||||||
"temp={:.2f} "
|
"temp={:.2f} top_p={:.2f} top_k={} n_ctx={} seed={}",
|
||||||
"top_p={:.2f} top_k={} n_ctx={} seed={}",
|
|
||||||
model_path, sampling.temperature, sampling.top_p,
|
model_path, sampling.temperature, sampling.top_p,
|
||||||
sampling.top_k, sampling.n_ctx, sampling.seed)});
|
sampling.top_k, sampling.n_ctx, sampling.seed)});
|
||||||
}
|
|
||||||
return std::make_unique<LlamaGenerator>(
|
return std::make_unique<LlamaGenerator>(
|
||||||
options, model_path, log_producer,
|
options, model_path, log_producer,
|
||||||
inj.template create<std::unique_ptr<IPromptFormatter>>(),
|
inj.template create<std::unique_ptr<IPromptFormatter>>(),
|
||||||
std::move(prompt_directory));
|
std::move(prompt_directory));
|
||||||
|
#endif
|
||||||
}));
|
}));
|
||||||
|
|
||||||
const auto orchestrator =
|
const auto orchestrator =
|
||||||
@@ -204,7 +214,6 @@ int main(const int argc, char** argv) {
|
|||||||
timer.Elapsed())});
|
timer.Elapsed())});
|
||||||
|
|
||||||
return shutdown(EXIT_SUCCESS);
|
return shutdown(EXIT_SUCCESS);
|
||||||
|
|
||||||
} catch (const std::exception& exception) {
|
} catch (const std::exception& exception) {
|
||||||
const LogDTO log_entry{.level = LogLevel::Error,
|
const LogDTO log_entry{.level = LogLevel::Error,
|
||||||
.phase = PipelinePhase::Teardown,
|
.phase = PipelinePhase::Teardown,
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
* records with strict field validation and descriptive error reporting.
|
* records with strict field validation and descriptive error reporting.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "json_handling/json_loader.h"
|
#include "services/curated_data/curated_json_data_service.h"
|
||||||
|
|
||||||
#include <boost/json.hpp>
|
#include <boost/json.hpp>
|
||||||
#include <format>
|
#include <format>
|
||||||
@@ -14,8 +14,8 @@
|
|||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <string_view>
|
#include <string_view>
|
||||||
#include <unordered_map>
|
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include "services/logging/logger.h"
|
#include "services/logging/logger.h"
|
||||||
|
|
||||||
@@ -106,16 +106,23 @@ std::string ReadFirstOfStringArray(const boost::json::object& object,
|
|||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
std::vector<Location> JsonLoader::LoadLocations(
|
CuratedJsonDataService::CuratedJsonDataService(CuratedDataFilePaths filepaths)
|
||||||
const std::filesystem::path& filepath) {
|
: filepaths_(std::move(filepaths)) {}
|
||||||
const boost::json::value root = ParseJsonFile(filepath, "locations");
|
|
||||||
|
const LocationsList& CuratedJsonDataService::LoadLocations() {
|
||||||
|
if (!cache_.locations.empty()) {
|
||||||
|
return cache_.locations;
|
||||||
|
}
|
||||||
|
|
||||||
|
const boost::json::value root =
|
||||||
|
ParseJsonFile(filepaths_.locations_path, "locations");
|
||||||
|
|
||||||
if (!root.is_array()) {
|
if (!root.is_array()) {
|
||||||
throw std::runtime_error(
|
throw std::runtime_error(
|
||||||
"Invalid locations JSON: root element must be an array");
|
"Invalid locations JSON: root element must be an array");
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<Location> locations;
|
LocationsList locations;
|
||||||
const auto& items = root.as_array();
|
const auto& items = root.as_array();
|
||||||
locations.reserve(items.size());
|
locations.reserve(items.size());
|
||||||
|
|
||||||
@@ -137,20 +144,24 @@ std::vector<Location> JsonLoader::LoadLocations(
|
|||||||
.longitude = ReadRequiredNumber(object, "longitude"),
|
.longitude = ReadRequiredNumber(object, "longitude"),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
cache_.locations = std::move(locations);
|
||||||
return locations;
|
return cache_.locations;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<UserPersona> JsonLoader::LoadPersonas(
|
const PersonasList& CuratedJsonDataService::LoadPersonas() {
|
||||||
const std::filesystem::path& filepath) {
|
if (!cache_.personas.empty()) {
|
||||||
const boost::json::value root = ParseJsonFile(filepath, "personas");
|
return cache_.personas;
|
||||||
|
}
|
||||||
|
|
||||||
|
const boost::json::value root =
|
||||||
|
ParseJsonFile(filepaths_.personas_path, "personas");
|
||||||
|
|
||||||
if (!root.is_array()) {
|
if (!root.is_array()) {
|
||||||
throw std::runtime_error(
|
throw std::runtime_error(
|
||||||
"Invalid personas JSON: root element must be an array");
|
"Invalid personas JSON: root element must be an array");
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<UserPersona> personas;
|
PersonasList personas;
|
||||||
const auto& items = root.as_array();
|
const auto& items = root.as_array();
|
||||||
personas.reserve(items.size());
|
personas.reserve(items.size());
|
||||||
|
|
||||||
@@ -168,30 +179,30 @@ std::vector<UserPersona> JsonLoader::LoadPersonas(
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return personas;
|
cache_.personas = std::move(personas);
|
||||||
|
return cache_.personas;
|
||||||
}
|
}
|
||||||
|
|
||||||
NamesByCountry JsonLoader::LoadNamesByCountry(
|
const ForenamesByCountryMap& CuratedJsonDataService::LoadForenamesByCountry() {
|
||||||
const std::filesystem::path& forenames_filepath,
|
if (!cache_.forenames_by_country.empty()) {
|
||||||
const std::filesystem::path& surnames_filepath) {
|
return cache_.forenames_by_country;
|
||||||
const boost::json::value forenames_root =
|
}
|
||||||
ParseJsonFile(forenames_filepath, "forenames-by-country");
|
|
||||||
const boost::json::value surnames_root =
|
|
||||||
ParseJsonFile(surnames_filepath, "surnames-by-country");
|
|
||||||
|
|
||||||
if (!forenames_root.is_object() || !surnames_root.is_object()) {
|
const boost::json::value root =
|
||||||
|
ParseJsonFile(filepaths_.forenames_path, "forenames-by-country");
|
||||||
|
|
||||||
|
if (!root.is_object()) {
|
||||||
throw std::runtime_error(
|
throw std::runtime_error(
|
||||||
"Invalid names-by-country JSON: root element must be an object "
|
"Invalid forenames-by-country JSON: root element must be an object "
|
||||||
"keyed by ISO 3166-1 country code");
|
"keyed by ISO 3166-1 country code");
|
||||||
}
|
}
|
||||||
|
|
||||||
std::unordered_map<std::string, std::vector<ForenameEntry>>
|
ForenamesByCountryMap forenames_by_country;
|
||||||
forenames_by_country;
|
for (const auto& [country_code, regions] : root.as_object()) {
|
||||||
for (const auto& [country_code, regions] : forenames_root.as_object()) {
|
|
||||||
if (!regions.is_array()) {
|
if (!regions.is_array()) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
std::vector<ForenameEntry> entries;
|
ForenameList entries;
|
||||||
for (const auto& region : regions.as_array()) {
|
for (const auto& region : regions.as_array()) {
|
||||||
if (!region.is_object()) {
|
if (!region.is_object()) {
|
||||||
continue;
|
continue;
|
||||||
@@ -205,7 +216,7 @@ NamesByCountry JsonLoader::LoadNamesByCountry(
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
const auto& name_object = name_value.as_object();
|
const auto& name_object = name_value.as_object();
|
||||||
entries.push_back(ForenameEntry{
|
entries.emplace_back(ForenameEntry{
|
||||||
.name =
|
.name =
|
||||||
ReadFirstOfStringArray(name_object, "romanized", "localized"),
|
ReadFirstOfStringArray(name_object, "romanized", "localized"),
|
||||||
.gender = ReadRequiredString(name_object, "gender"),
|
.gender = ReadRequiredString(name_object, "gender"),
|
||||||
@@ -215,22 +226,39 @@ NamesByCountry JsonLoader::LoadNamesByCountry(
|
|||||||
forenames_by_country.emplace(country_code, std::move(entries));
|
forenames_by_country.emplace(country_code, std::move(entries));
|
||||||
}
|
}
|
||||||
|
|
||||||
std::unordered_map<std::string, std::vector<std::string>> surnames_by_country;
|
cache_.forenames_by_country = std::move(forenames_by_country);
|
||||||
for (const auto& [country_code, name_entries] : surnames_root.as_object()) {
|
return cache_.forenames_by_country;
|
||||||
if (!name_entries.is_array()) {
|
}
|
||||||
continue;
|
|
||||||
|
const SurnamesByCountryMap& CuratedJsonDataService::LoadSurnamesByCountry() {
|
||||||
|
if (!cache_.surnames_by_country.empty()) {
|
||||||
|
return cache_.surnames_by_country;
|
||||||
}
|
}
|
||||||
std::vector<std::string> surnames;
|
|
||||||
|
const boost::json::value root =
|
||||||
|
ParseJsonFile(filepaths_.surnames_path, "surnames-by-country");
|
||||||
|
|
||||||
|
if (!root.is_object()) {
|
||||||
|
throw std::runtime_error(
|
||||||
|
"Invalid surnames-by-country JSON: root element must be an object "
|
||||||
|
"keyed by ISO 3166-1 country code");
|
||||||
|
}
|
||||||
|
|
||||||
|
SurnamesByCountryMap surnames_by_country;
|
||||||
|
for (const auto& [country_code, name_entries] : root.as_object()) {
|
||||||
|
if (!name_entries.is_array()) continue;
|
||||||
|
|
||||||
|
SurnameList surnames;
|
||||||
for (const auto& name_value : name_entries.as_array()) {
|
for (const auto& name_value : name_entries.as_array()) {
|
||||||
if (!name_value.is_object()) {
|
if (!name_value.is_object()) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
surnames.push_back(ReadFirstOfStringArray(name_value.as_object(),
|
surnames.emplace_back(ReadFirstOfStringArray(name_value.as_object(),
|
||||||
"romanized", "localized"));
|
"romanized", "localized"));
|
||||||
}
|
}
|
||||||
surnames_by_country.emplace(country_code, std::move(surnames));
|
surnames_by_country.emplace(country_code, std::move(surnames));
|
||||||
}
|
}
|
||||||
|
|
||||||
return NamesByCountry(std::move(forenames_by_country),
|
cache_.surnames_by_country = std::move(surnames_by_country);
|
||||||
std::move(surnames_by_country));
|
return cache_.surnames_by_country;
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,98 @@
|
|||||||
|
/**
|
||||||
|
* @file services/curated_data/mock_curated_data_service.cc
|
||||||
|
* @brief Fixed in-memory location, persona, and name dataset for mock mode.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "services/curated_data/mock_curated_data_service.h"
|
||||||
|
|
||||||
|
MockCuratedDataService::MockCuratedDataService()
|
||||||
|
: locations_{
|
||||||
|
Location{.city = "Portland",
|
||||||
|
.state_province = "Oregon",
|
||||||
|
.iso3166_2 = "US-OR",
|
||||||
|
.country = "United States",
|
||||||
|
.iso3166_1 = "US",
|
||||||
|
.local_languages = {"en"},
|
||||||
|
.latitude = 45.5152,
|
||||||
|
.longitude = -122.6784},
|
||||||
|
Location{.city = "Munich",
|
||||||
|
.state_province = "Bavaria",
|
||||||
|
.iso3166_2 = "DE-BY",
|
||||||
|
.country = "Germany",
|
||||||
|
.iso3166_1 = "DE",
|
||||||
|
.local_languages = {"de"},
|
||||||
|
.latitude = 48.1351,
|
||||||
|
.longitude = 11.5820},
|
||||||
|
Location{.city = "Lyon",
|
||||||
|
.state_province = "Auvergne-Rhone-Alpes",
|
||||||
|
.iso3166_2 = "FR-ARA",
|
||||||
|
.country = "France",
|
||||||
|
.iso3166_1 = "FR",
|
||||||
|
.local_languages = {"fr"},
|
||||||
|
.latitude = 45.7640,
|
||||||
|
.longitude = 4.8357},
|
||||||
|
Location{.city = "Brussels",
|
||||||
|
.state_province = "Brussels-Capital",
|
||||||
|
.iso3166_2 = "BE-BRU",
|
||||||
|
.country = "Belgium",
|
||||||
|
.iso3166_1 = "BE",
|
||||||
|
.local_languages = {"nl", "fr"},
|
||||||
|
.latitude = 50.8503,
|
||||||
|
.longitude = 4.3517},
|
||||||
|
},
|
||||||
|
personas_{
|
||||||
|
UserPersona{.name = "Hophead Explorer",
|
||||||
|
.description = "Chases hop-forward IPAs and seeks out "
|
||||||
|
"taprooms with rotating drafts.",
|
||||||
|
.style_affinities = {"IPA", "Pale Ale"}},
|
||||||
|
UserPersona{.name = "Lager Traditionalist",
|
||||||
|
.description = "Prefers clean, balanced lagers and "
|
||||||
|
"classic pub styles.",
|
||||||
|
.style_affinities = {"Lager", "Pilsner"}},
|
||||||
|
UserPersona{.name = "Sour Curious",
|
||||||
|
.description = "Seeks out wild ales, sours, and "
|
||||||
|
"barrel-aged experiments.",
|
||||||
|
.style_affinities = {"Sour", "Wild Ale"}},
|
||||||
|
},
|
||||||
|
forenames_by_country_{
|
||||||
|
{"US",
|
||||||
|
ForenameList{
|
||||||
|
ForenameEntry{.name = "James", .gender = "M"},
|
||||||
|
ForenameEntry{.name = "Mary", .gender = "F"},
|
||||||
|
}},
|
||||||
|
{"DE",
|
||||||
|
ForenameList{
|
||||||
|
ForenameEntry{.name = "Lukas", .gender = "M"},
|
||||||
|
ForenameEntry{.name = "Anna", .gender = "F"},
|
||||||
|
}},
|
||||||
|
{"FR",
|
||||||
|
ForenameList{
|
||||||
|
ForenameEntry{.name = "Lucas", .gender = "M"},
|
||||||
|
ForenameEntry{.name = "Camille", .gender = "F"},
|
||||||
|
}},
|
||||||
|
{"BE",
|
||||||
|
ForenameList{
|
||||||
|
ForenameEntry{.name = "Noah", .gender = "M"},
|
||||||
|
ForenameEntry{.name = "Emma", .gender = "F"},
|
||||||
|
}},
|
||||||
|
},
|
||||||
|
surnames_by_country_{
|
||||||
|
{"US", SurnameList{"Smith", "Johnson"}},
|
||||||
|
{"DE", SurnameList{"Muller", "Schmidt"}},
|
||||||
|
{"FR", SurnameList{"Martin", "Bernard"}},
|
||||||
|
{"BE", SurnameList{"Peeters", "Janssens"}},
|
||||||
|
} {}
|
||||||
|
|
||||||
|
const LocationsList& MockCuratedDataService::LoadLocations() {
|
||||||
|
return locations_;
|
||||||
|
}
|
||||||
|
|
||||||
|
const PersonasList& MockCuratedDataService::LoadPersonas() { return personas_; }
|
||||||
|
|
||||||
|
const ForenamesByCountryMap& MockCuratedDataService::LoadForenamesByCountry() {
|
||||||
|
return forenames_by_country_;
|
||||||
|
}
|
||||||
|
|
||||||
|
const SurnamesByCountryMap& MockCuratedDataService::LoadSurnamesByCountry() {
|
||||||
|
return surnames_by_country_;
|
||||||
|
}
|
||||||
@@ -33,7 +33,7 @@ void ResetStatement(SqliteStatementHandle& statement) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Bind(const SqliteStatementHandle& statement,
|
void Bind(const SqliteStatementHandle& statement,
|
||||||
const BindParam<std::string_view>& param) {
|
const BoundParam<std::string_view>& param) {
|
||||||
const auto byte_count = param.value.size();
|
const auto byte_count = param.value.size();
|
||||||
if (byte_count > static_cast<std::size_t>(std::numeric_limits<int>::max())) {
|
if (byte_count > static_cast<std::size_t>(std::numeric_limits<int>::max())) {
|
||||||
ThrowSqliteError(sqlite3_db_handle(statement.get()), param.action);
|
ThrowSqliteError(sqlite3_db_handle(statement.get()), param.action);
|
||||||
@@ -60,7 +60,7 @@ void Bind(const SqliteStatementHandle& statement,
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Bind(const SqliteStatementHandle& statement,
|
void Bind(const SqliteStatementHandle& statement,
|
||||||
const BindParam<double>& param) {
|
const BoundParam<double>& param) {
|
||||||
if (sqlite3_bind_double(statement.get(), param.index, param.value) !=
|
if (sqlite3_bind_double(statement.get(), param.index, param.value) !=
|
||||||
SQLITE_OK) {
|
SQLITE_OK) {
|
||||||
ThrowSqliteError(sqlite3_db_handle(statement.get()), param.action);
|
ThrowSqliteError(sqlite3_db_handle(statement.get()), param.action);
|
||||||
@@ -68,7 +68,7 @@ void Bind(const SqliteStatementHandle& statement,
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Bind(const SqliteStatementHandle& statement,
|
void Bind(const SqliteStatementHandle& statement,
|
||||||
const BindParam<sqlite3_int64>& param) {
|
const BoundParam<sqlite3_int64>& param) {
|
||||||
if (sqlite3_bind_int64(statement.get(), param.index, param.value) !=
|
if (sqlite3_bind_int64(statement.get(), param.index, param.value) !=
|
||||||
SQLITE_OK) {
|
SQLITE_OK) {
|
||||||
ThrowSqliteError(sqlite3_db_handle(statement.get()), param.action);
|
ThrowSqliteError(sqlite3_db_handle(statement.get()), param.action);
|
||||||
|
|||||||
@@ -42,50 +42,50 @@ sqlite3_int64 SqliteExportService::ResolveLocationId(const Location& location) {
|
|||||||
|
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_location_stmt_,
|
insert_location_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<std::string_view>{
|
sqlite_export_service_internal::BoundParam<std::string_view>{
|
||||||
.index = sqlite_export_service_internal::kLocationCityBindIndex,
|
.index = sqlite_export_service_internal::kLocationCityBindIndex,
|
||||||
.value = location.city,
|
.value = location.city,
|
||||||
.action = "Failed to bind SQLite location city"});
|
.action = "Failed to bind SQLite location city"});
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_location_stmt_,
|
insert_location_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<std::string_view>{
|
sqlite_export_service_internal::BoundParam<std::string_view>{
|
||||||
.index =
|
.index =
|
||||||
sqlite_export_service_internal::kLocationStateProvinceBindIndex,
|
sqlite_export_service_internal::kLocationStateProvinceBindIndex,
|
||||||
.value = location.state_province,
|
.value = location.state_province,
|
||||||
.action = "Failed to bind SQLite location state/province"});
|
.action = "Failed to bind SQLite location state/province"});
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_location_stmt_,
|
insert_location_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<std::string_view>{
|
sqlite_export_service_internal::BoundParam<std::string_view>{
|
||||||
.index = sqlite_export_service_internal::kLocationIso31662BindIndex,
|
.index = sqlite_export_service_internal::kLocationIso31662BindIndex,
|
||||||
.value = location.iso3166_2,
|
.value = location.iso3166_2,
|
||||||
.action = "Failed to bind SQLite location ISO 3166-2 code"});
|
.action = "Failed to bind SQLite location ISO 3166-2 code"});
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_location_stmt_,
|
insert_location_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<std::string_view>{
|
sqlite_export_service_internal::BoundParam<std::string_view>{
|
||||||
.index = sqlite_export_service_internal::kLocationCountryBindIndex,
|
.index = sqlite_export_service_internal::kLocationCountryBindIndex,
|
||||||
.value = location.country,
|
.value = location.country,
|
||||||
.action = "Failed to bind SQLite location country"});
|
.action = "Failed to bind SQLite location country"});
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_location_stmt_,
|
insert_location_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<std::string_view>{
|
sqlite_export_service_internal::BoundParam<std::string_view>{
|
||||||
.index = sqlite_export_service_internal::kLocationIso31661BindIndex,
|
.index = sqlite_export_service_internal::kLocationIso31661BindIndex,
|
||||||
.value = location.iso3166_1,
|
.value = location.iso3166_1,
|
||||||
.action = "Failed to bind SQLite location ISO 3166-1 code"});
|
.action = "Failed to bind SQLite location ISO 3166-1 code"});
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_location_stmt_,
|
insert_location_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<std::string_view>{
|
sqlite_export_service_internal::BoundParam<std::string_view>{
|
||||||
.index = sqlite_export_service_internal::kLocationLanguagesBindIndex,
|
.index = sqlite_export_service_internal::kLocationLanguagesBindIndex,
|
||||||
.value = local_languages_json,
|
.value = local_languages_json,
|
||||||
.action = "Failed to bind SQLite location languages"});
|
.action = "Failed to bind SQLite location languages"});
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_location_stmt_,
|
insert_location_stmt_,
|
||||||
sqlite_export_service_internal::BindParam{
|
sqlite_export_service_internal::BoundParam{
|
||||||
.index = sqlite_export_service_internal::kLocationLatitudeBindIndex,
|
.index = sqlite_export_service_internal::kLocationLatitudeBindIndex,
|
||||||
.value = location.latitude,
|
.value = location.latitude,
|
||||||
.action = "Failed to bind SQLite location latitude"});
|
.action = "Failed to bind SQLite location latitude"});
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_location_stmt_,
|
insert_location_stmt_,
|
||||||
sqlite_export_service_internal::BindParam{
|
sqlite_export_service_internal::BoundParam{
|
||||||
.index = sqlite_export_service_internal::kLocationLongitudeBindIndex,
|
.index = sqlite_export_service_internal::kLocationLongitudeBindIndex,
|
||||||
.value = location.longitude,
|
.value = location.longitude,
|
||||||
.action = "Failed to bind SQLite location longitude"});
|
.action = "Failed to bind SQLite location longitude"});
|
||||||
@@ -111,21 +111,21 @@ uint64_t SqliteExportService::ProcessRecord(const BreweryRecord& brewery) {
|
|||||||
|
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_brewery_stmt_,
|
insert_brewery_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<sqlite3_int64>{
|
sqlite_export_service_internal::BoundParam<sqlite3_int64>{
|
||||||
.index = sqlite_export_service_internal::kBreweryLocationIdBindIndex,
|
.index = sqlite_export_service_internal::kBreweryLocationIdBindIndex,
|
||||||
.value = location_id,
|
.value = location_id,
|
||||||
.action = "Failed to bind SQLite brewery location id"});
|
.action = "Failed to bind SQLite brewery location id"});
|
||||||
|
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_brewery_stmt_,
|
insert_brewery_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<std::string_view>{
|
sqlite_export_service_internal::BoundParam<std::string_view>{
|
||||||
.index = sqlite_export_service_internal::kBreweryEnglishNameBindIndex,
|
.index = sqlite_export_service_internal::kBreweryEnglishNameBindIndex,
|
||||||
.value = brewery.brewery.name_en,
|
.value = brewery.brewery.name_en,
|
||||||
.action = "Failed to bind SQLite brewery English name"});
|
.action = "Failed to bind SQLite brewery English name"});
|
||||||
|
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_brewery_stmt_,
|
insert_brewery_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<std::string_view>{
|
sqlite_export_service_internal::BoundParam<std::string_view>{
|
||||||
.index = sqlite_export_service_internal::
|
.index = sqlite_export_service_internal::
|
||||||
kBreweryEnglishDescriptionBindIndex,
|
kBreweryEnglishDescriptionBindIndex,
|
||||||
.value = brewery.brewery.description_en,
|
.value = brewery.brewery.description_en,
|
||||||
@@ -133,14 +133,14 @@ uint64_t SqliteExportService::ProcessRecord(const BreweryRecord& brewery) {
|
|||||||
|
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_brewery_stmt_,
|
insert_brewery_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<std::string_view>{
|
sqlite_export_service_internal::BoundParam<std::string_view>{
|
||||||
.index = sqlite_export_service_internal::kBreweryLocalNameBindIndex,
|
.index = sqlite_export_service_internal::kBreweryLocalNameBindIndex,
|
||||||
.value = brewery.brewery.name_local,
|
.value = brewery.brewery.name_local,
|
||||||
.action = "Failed to bind SQLite brewery local name"});
|
.action = "Failed to bind SQLite brewery local name"});
|
||||||
|
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_brewery_stmt_,
|
insert_brewery_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<std::string_view>{
|
sqlite_export_service_internal::BoundParam<std::string_view>{
|
||||||
.index =
|
.index =
|
||||||
sqlite_export_service_internal::kBreweryLocalDescriptionBindIndex,
|
sqlite_export_service_internal::kBreweryLocalDescriptionBindIndex,
|
||||||
.value = brewery.brewery.description_local,
|
.value = brewery.brewery.description_local,
|
||||||
|
|||||||
@@ -17,55 +17,55 @@ uint64_t SqliteExportService::ProcessRecord(const UserRecord& user) {
|
|||||||
|
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_user_stmt_,
|
insert_user_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<sqlite3_int64>{
|
sqlite_export_service_internal::BoundParam<sqlite3_int64>{
|
||||||
.index = sqlite_export_service_internal::kUserLocationIdBindIndex,
|
.index = sqlite_export_service_internal::kUserLocationIdBindIndex,
|
||||||
.value = location_id,
|
.value = location_id,
|
||||||
.action = "Failed to bind SQLite user location id"});
|
.action = "Failed to bind SQLite user location id"});
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_user_stmt_,
|
insert_user_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<std::string_view>{
|
sqlite_export_service_internal::BoundParam<std::string_view>{
|
||||||
.index = sqlite_export_service_internal::kUserFirstNameBindIndex,
|
.index = sqlite_export_service_internal::kUserFirstNameBindIndex,
|
||||||
.value = user.user.first_name,
|
.value = user.user.first_name,
|
||||||
.action = "Failed to bind SQLite user first name"});
|
.action = "Failed to bind SQLite user first name"});
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_user_stmt_,
|
insert_user_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<std::string_view>{
|
sqlite_export_service_internal::BoundParam<std::string_view>{
|
||||||
.index = sqlite_export_service_internal::kUserLastNameBindIndex,
|
.index = sqlite_export_service_internal::kUserLastNameBindIndex,
|
||||||
.value = user.user.last_name,
|
.value = user.user.last_name,
|
||||||
.action = "Failed to bind SQLite user last name"});
|
.action = "Failed to bind SQLite user last name"});
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_user_stmt_,
|
insert_user_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<std::string_view>{
|
sqlite_export_service_internal::BoundParam<std::string_view>{
|
||||||
.index = sqlite_export_service_internal::kUserGenderBindIndex,
|
.index = sqlite_export_service_internal::kUserGenderBindIndex,
|
||||||
.value = user.user.gender,
|
.value = user.user.gender,
|
||||||
.action = "Failed to bind SQLite user gender"});
|
.action = "Failed to bind SQLite user gender"});
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_user_stmt_,
|
insert_user_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<std::string_view>{
|
sqlite_export_service_internal::BoundParam<std::string_view>{
|
||||||
.index = sqlite_export_service_internal::kUserUsernameBindIndex,
|
.index = sqlite_export_service_internal::kUserUsernameBindIndex,
|
||||||
.value = user.user.username,
|
.value = user.user.username,
|
||||||
.action = "Failed to bind SQLite user username"});
|
.action = "Failed to bind SQLite user username"});
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_user_stmt_,
|
insert_user_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<std::string_view>{
|
sqlite_export_service_internal::BoundParam<std::string_view>{
|
||||||
.index = sqlite_export_service_internal::kUserBioBindIndex,
|
.index = sqlite_export_service_internal::kUserBioBindIndex,
|
||||||
.value = user.user.bio,
|
.value = user.user.bio,
|
||||||
.action = "Failed to bind SQLite user bio"});
|
.action = "Failed to bind SQLite user bio"});
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_user_stmt_,
|
insert_user_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<double>{
|
sqlite_export_service_internal::BoundParam<double>{
|
||||||
.index = sqlite_export_service_internal::kUserActivityWeightBindIndex,
|
.index = sqlite_export_service_internal::kUserActivityWeightBindIndex,
|
||||||
.value = static_cast<double>(user.user.activity_weight),
|
.value = static_cast<double>(user.user.activity_weight),
|
||||||
.action = "Failed to bind SQLite user activity weight"});
|
.action = "Failed to bind SQLite user activity weight"});
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_user_stmt_,
|
insert_user_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<std::string_view>{
|
sqlite_export_service_internal::BoundParam<std::string_view>{
|
||||||
.index = sqlite_export_service_internal::kUserEmailBindIndex,
|
.index = sqlite_export_service_internal::kUserEmailBindIndex,
|
||||||
.value = user.email,
|
.value = user.email,
|
||||||
.action = "Failed to bind SQLite user email"});
|
.action = "Failed to bind SQLite user email"});
|
||||||
sqlite_export_service_internal::Bind(
|
sqlite_export_service_internal::Bind(
|
||||||
insert_user_stmt_,
|
insert_user_stmt_,
|
||||||
sqlite_export_service_internal::BindParam<std::string_view>{
|
sqlite_export_service_internal::BoundParam<std::string_view>{
|
||||||
.index = sqlite_export_service_internal::kUserDateOfBirthBindIndex,
|
.index = sqlite_export_service_internal::kUserDateOfBirthBindIndex,
|
||||||
.value = user.date_of_birth,
|
.value = user.date_of_birth,
|
||||||
.action = "Failed to bind SQLite user date of birth"});
|
.action = "Failed to bind SQLite user date of birth"});
|
||||||
|
|||||||