retold-remote 0.0.23 → 0.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/retold-remote.css +343 -20
- package/docs/.nojekyll +0 -0
- package/docs/README.md +64 -12
- package/docs/_cover.md +6 -6
- package/docs/_sidebar.md +2 -0
- package/docs/_topbar.md +1 -1
- package/docs/_version.json +7 -0
- package/docs/collections.md +30 -0
- package/docs/css/docuserve.css +327 -0
- package/docs/ebook-reader.md +75 -1
- package/docs/image-explorer.md +62 -2
- package/docs/index.html +39 -0
- package/docs/retold-catalog.json +254 -0
- package/docs/retold-keyword-index.json +31216 -0
- package/docs/server-setup.md +122 -91
- package/docs/stack-launcher.md +218 -0
- package/docs/synology.md +585 -0
- package/docs/ultravisor-configuration.md +5 -5
- package/docs/ultravisor-integration.md +4 -2
- package/package.json +20 -14
- package/source/Pict-Application-RetoldRemote.js +22 -0
- package/source/RetoldRemote-ExtensionMaps.js +1 -1
- package/source/cli/RetoldRemote-Server-Setup.js +460 -7
- package/source/cli/RetoldRemote-Stack-Launcher.js +563 -0
- package/source/cli/RetoldRemote-Stack-Run.js +41 -0
- package/source/cli/commands/RetoldRemote-Command-Serve.js +129 -54
- package/source/providers/CollectionManager-AddItems.js +166 -0
- package/source/providers/Pict-Provider-GalleryNavigation.js +55 -0
- package/source/providers/Pict-Provider-OperationStatus.js +597 -0
- package/source/providers/keyboard-handlers/KeyHandler-ImageExplorer.js +20 -1
- package/source/providers/keyboard-handlers/KeyHandler-Viewer.js +23 -0
- package/source/server/RetoldRemote-AudioWaveformService.js +49 -3
- package/source/server/RetoldRemote-CollectionExportService.js +763 -0
- package/source/server/RetoldRemote-CollectionService.js +5 -0
- package/source/server/RetoldRemote-EbookService.js +218 -3
- package/source/server/RetoldRemote-ImageService.js +221 -46
- package/source/server/RetoldRemote-MediaService.js +63 -4
- package/source/server/RetoldRemote-MetadataCache.js +25 -5
- package/source/server/RetoldRemote-OperationBroadcaster.js +363 -0
- package/source/server/RetoldRemote-SubimageService.js +680 -0
- package/source/server/RetoldRemote-ToolDetector.js +50 -0
- package/source/server/RetoldRemote-UltravisorBeacon.js +18 -3
- package/source/server/RetoldRemote-UltravisorDispatcher.js +65 -491
- package/source/server/RetoldRemote-UltravisorOperations.js +133 -20
- package/source/server/RetoldRemote-VideoFrameService.js +302 -9
- package/source/views/MediaViewer-EbookViewer.js +419 -1
- package/source/views/MediaViewer-PdfViewer.js +1050 -0
- package/source/views/PictView-Remote-AudioExplorer.js +77 -1
- package/source/views/PictView-Remote-CollectionsPanel.js +213 -0
- package/source/views/PictView-Remote-Gallery.js +365 -64
- package/source/views/PictView-Remote-ImageExplorer.js +1529 -44
- package/source/views/PictView-Remote-ImageViewer.js +2 -2
- package/source/views/PictView-Remote-Layout.js +58 -0
- package/source/views/PictView-Remote-MediaViewer.js +100 -25
- package/source/views/PictView-Remote-RegionsBrowser.js +554 -0
- package/source/views/PictView-Remote-SubimagesPanel.js +353 -0
- package/source/views/PictView-Remote-TopBar.js +1 -0
- package/source/views/PictView-Remote-VideoExplorer.js +77 -1
- package/web-application/css/docuserve.css +277 -23
- package/web-application/css/retold-remote.css +343 -20
- package/web-application/docs/README.md +64 -12
- package/web-application/docs/_cover.md +6 -6
- package/web-application/docs/_sidebar.md +2 -0
- package/web-application/docs/_topbar.md +1 -1
- package/web-application/docs/collections.md +30 -0
- package/web-application/docs/ebook-reader.md +75 -1
- package/web-application/docs/image-explorer.md +62 -2
- package/web-application/docs/server-setup.md +122 -91
- package/web-application/docs/stack-launcher.md +218 -0
- package/web-application/docs/synology.md +585 -0
- package/web-application/docs/ultravisor-configuration.md +5 -5
- package/web-application/docs/ultravisor-integration.md +4 -2
- package/web-application/js/pict-docuserve.min.js +12 -12
- package/web-application/js/pict.min.js +2 -2
- package/web-application/js/pict.min.js.map +1 -1
- package/web-application/retold-remote.js +6596 -1784
- package/web-application/retold-remote.js.map +1 -1
- package/web-application/retold-remote.min.js +75 -23
- package/web-application/retold-remote.min.js.map +1 -1
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
# Stack Launcher
|
|
2
|
+
|
|
3
|
+
The `--stack` flag (and the `retold-stack` shortcut) brings up the full Retold stack as a single command: an embedded Ultravisor coordinator, the Retold Remote media browser, and Orator-Conversion (embedded inside Retold Remote). Point it at any directory and it just works -- sane XDG-style data paths, automatic readiness polling, and graceful shutdown of all child processes.
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Run the full stack against the current directory
|
|
9
|
+
retold-stack
|
|
10
|
+
|
|
11
|
+
# Or against any directory
|
|
12
|
+
retold-stack /mnt/nas/media
|
|
13
|
+
|
|
14
|
+
# Or via the explicit flag
|
|
15
|
+
retold-remote serve --stack /mnt/nas/media
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
That's it. No config files, no separate terminals, no manual port wiring.
|
|
19
|
+
|
|
20
|
+
## What Gets Launched
|
|
21
|
+
|
|
22
|
+
| Component | Where it runs | Port |
|
|
23
|
+
|-----------|---------------|------|
|
|
24
|
+
| **Ultravisor** | Spawned as a child process | 54321 |
|
|
25
|
+
| **Retold Remote** | Main process (the one you started) | Random 7000-7999 (override with `-p`) |
|
|
26
|
+
| **Orator-Conversion** | Embedded inside Retold Remote (no separate process) | Same as Retold Remote |
|
|
27
|
+
|
|
28
|
+
The stack launcher:
|
|
29
|
+
1. Resolves XDG-style data paths
|
|
30
|
+
2. Detects whether Ultravisor is already running on port 54321 (and reuses it if so)
|
|
31
|
+
3. Spawns Ultravisor as a child process with a generated config file
|
|
32
|
+
4. Polls until Ultravisor is accepting connections (up to 30 seconds)
|
|
33
|
+
5. Sets the `UltravisorURL` automatically so Retold Remote registers as a beacon
|
|
34
|
+
6. Starts the Retold Remote server with Orator-Conversion embedded
|
|
35
|
+
7. Streams the Ultravisor child's stdout/stderr through the main logger with an `[ultravisor]` prefix
|
|
36
|
+
8. On `SIGINT`/`SIGTERM`, disconnects the beacon, kills the Ultravisor child gracefully, and exits
|
|
37
|
+
|
|
38
|
+
## Default Data Paths
|
|
39
|
+
|
|
40
|
+
The stack launcher uses [XDG Base Directory Specification](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html) defaults so data lives in predictable, user-scoped locations regardless of what directory you launched from.
|
|
41
|
+
|
|
42
|
+
| Purpose | Default Path | Override |
|
|
43
|
+
|---------|-------------|----------|
|
|
44
|
+
| Ultravisor datastore | `~/.local/share/ultravisor/datastore/` | `$XDG_DATA_HOME/ultravisor/datastore/` |
|
|
45
|
+
| Ultravisor staging | `~/.local/share/ultravisor/staging/` | `$XDG_DATA_HOME/ultravisor/staging/` |
|
|
46
|
+
| Retold Remote cache | `~/.cache/retold-remote/` | `$XDG_CACHE_HOME/retold-remote/`, or `-c` flag |
|
|
47
|
+
| Stack config files | `~/.config/retold-stack/` | `$XDG_CONFIG_HOME/retold-stack/` |
|
|
48
|
+
|
|
49
|
+
The cache directory holds thumbnails, video frames, audio waveforms, archive extractions, and converted ebooks/PDFs.
|
|
50
|
+
|
|
51
|
+
The Ultravisor datastore holds the work-queue journal and beacon registry.
|
|
52
|
+
|
|
53
|
+
These paths are created on first launch if they do not already exist.
|
|
54
|
+
|
|
55
|
+
## CLI Reference
|
|
56
|
+
|
|
57
|
+
### `retold-stack`
|
|
58
|
+
|
|
59
|
+
Convenience entry point that auto-injects `serve --stack`.
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
retold-stack [content-path] [options]
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
All options accepted by `retold-remote serve` are forwarded.
|
|
66
|
+
|
|
67
|
+
### `retold-remote serve --stack`
|
|
68
|
+
|
|
69
|
+
The full form. Useful when you want to combine `--stack` with other flags.
|
|
70
|
+
|
|
71
|
+
```bash
|
|
72
|
+
retold-remote serve --stack [content-path] [options]
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
| Flag | Description |
|
|
76
|
+
|------|-------------|
|
|
77
|
+
| `--stack` | Spawn Ultravisor as a child process and connect to it. Sets cache root to `~/.cache/retold-remote/` if `-c` is not passed. Auto-sets the Ultravisor URL to `http://localhost:54321`. |
|
|
78
|
+
|
|
79
|
+
All other `serve` options still apply (`-p`, `--no-hash`, `-c`, `-l`, etc.).
|
|
80
|
+
|
|
81
|
+
## Examples
|
|
82
|
+
|
|
83
|
+
### Browse the current directory with the full stack
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
cd ~/Pictures
|
|
87
|
+
retold-stack
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
### Browse a specific NAS share
|
|
91
|
+
|
|
92
|
+
```bash
|
|
93
|
+
retold-stack /mnt/nas/media
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
### Pin the port and stash logs to a file
|
|
97
|
+
|
|
98
|
+
```bash
|
|
99
|
+
retold-stack /mnt/nas/media -p 8086 -l ~/retold.log
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
### Override just the Retold cache location
|
|
103
|
+
|
|
104
|
+
```bash
|
|
105
|
+
retold-remote serve --stack /mnt/nas/media -c /var/cache/retold
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
### Reuse an already-running Ultravisor
|
|
109
|
+
|
|
110
|
+
If port 54321 is already accepting connections, the stack launcher detects this and connects to the existing instance instead of spawning a new one. The log line will read:
|
|
111
|
+
|
|
112
|
+
```
|
|
113
|
+
[stack] ultravisor already running on port 54321, reusing
|
|
114
|
+
```
|
|
115
|
+
|
|
116
|
+
This means you can leave Ultravisor running across multiple Retold Remote launches without conflict.
|
|
117
|
+
|
|
118
|
+
## Logging
|
|
119
|
+
|
|
120
|
+
The stack launcher streams the Ultravisor child process's output through Retold Remote's logger so you have a single log stream for both processes. Lines from the Ultravisor child are prefixed `[ultravisor]`, and stack-launcher events are prefixed `[stack]`:
|
|
121
|
+
|
|
122
|
+
```
|
|
123
|
+
[stack] launching ultravisor (port 54321)
|
|
124
|
+
[stack] data: /Users/steven/.local/share/ultravisor/datastore
|
|
125
|
+
[stack] staging: /Users/steven/.local/share/ultravisor/staging
|
|
126
|
+
[ultravisor] UltravisorTaskTypeRegistry: 53 built-in task types registered.
|
|
127
|
+
[stack] ultravisor ready (after 1 attempts)
|
|
128
|
+
==========================================================
|
|
129
|
+
Retold Remote running on http://localhost:7842
|
|
130
|
+
==========================================================
|
|
131
|
+
Content: /mnt/nas/media
|
|
132
|
+
Cache: /Users/steven/.cache/retold-remote
|
|
133
|
+
Browse: http://localhost:7842/
|
|
134
|
+
Beacon: registered with Ultravisor at http://localhost:54321
|
|
135
|
+
Stack: ultravisor + retold-remote (orator-conversion embedded)
|
|
136
|
+
==========================================================
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
If you also pass `-l <path>`, both streams are written to the file as well.
|
|
140
|
+
|
|
141
|
+
## Shutdown
|
|
142
|
+
|
|
143
|
+
Press `Ctrl+C` once. The launcher will:
|
|
144
|
+
|
|
145
|
+
1. Log `Shutting down...`
|
|
146
|
+
2. Disconnect the Ultravisor beacon (so Ultravisor knows the worker is leaving cleanly)
|
|
147
|
+
3. Send `SIGTERM` to the Ultravisor child process
|
|
148
|
+
4. Wait up to 1 second for graceful exit
|
|
149
|
+
5. Send `SIGKILL` if it has not exited
|
|
150
|
+
6. Exit the main process
|
|
151
|
+
|
|
152
|
+
If the launcher reused an already-running Ultravisor (rather than spawning one), it will not kill that Ultravisor -- it only manages processes it started itself.
|
|
153
|
+
|
|
154
|
+
## Architecture
|
|
155
|
+
|
|
156
|
+
```
|
|
157
|
+
┌────────────────────────────────────────────────────────────┐
|
|
158
|
+
│ retold-stack /mnt/media │
|
|
159
|
+
│ │
|
|
160
|
+
│ ┌─────────────────────────────────────────────────────┐ │
|
|
161
|
+
│ │ Main process (retold-remote) │ │
|
|
162
|
+
│ │ ┌───────────────────────────────────────────────┐ │ │
|
|
163
|
+
│ │ │ Orator HTTP server (port 7000-7999) │ │ │
|
|
164
|
+
│ │ │ ├─ Retold Remote routes (/api/media/...) │ │ │
|
|
165
|
+
│ │ │ ├─ Orator-Conversion (/api/conversion/1.0/) │ │ │
|
|
166
|
+
│ │ │ └─ Static web app (/) │ │ │
|
|
167
|
+
│ │ └───────────────────────────────────────────────┘ │ │
|
|
168
|
+
│ │ ┌───────────────────────────────────────────────┐ │ │
|
|
169
|
+
│ │ │ Ultravisor Beacon client │ │ │
|
|
170
|
+
│ │ │ └─ Connects to localhost:54321 │ │ │
|
|
171
|
+
│ │ └───────────────────────────────────────────────┘ │ │
|
|
172
|
+
│ └─────────────────────────────────────────────────────┘ │
|
|
173
|
+
│ ▲ │
|
|
174
|
+
│ │ HTTP │
|
|
175
|
+
│ ▼ │
|
|
176
|
+
│ ┌─────────────────────────────────────────────────────┐ │
|
|
177
|
+
│ │ Child process (ultravisor) │ │
|
|
178
|
+
│ │ ├─ Coordinator API (port 54321) │ │
|
|
179
|
+
│ │ ├─ Beacon registry │ │
|
|
180
|
+
│ │ ├─ Work queue journal │ │
|
|
181
|
+
│ │ └─ Web interface │ │
|
|
182
|
+
│ │ Datastore: ~/.local/share/ultravisor/datastore/ │ │
|
|
183
|
+
│ └─────────────────────────────────────────────────────┘ │
|
|
184
|
+
└────────────────────────────────────────────────────────────┘
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
## Why Stack Mode?
|
|
188
|
+
|
|
189
|
+
Use `--stack` when you want a single command that brings up the full Retold experience:
|
|
190
|
+
|
|
191
|
+
- **Heavy media processing offloaded** through the Ultravisor beacon (video frame extraction, audio waveforms, ebook conversion, PDF page rendering)
|
|
192
|
+
- **Document conversion** via the embedded Orator-Conversion service (with the `doc-to-pdf` converter for Word, RTF, ODT, WordPerfect, etc.)
|
|
193
|
+
- **Persistent state** across launches (the Ultravisor datastore lives at a stable XDG location)
|
|
194
|
+
- **No port juggling** -- Ultravisor on its standard port 54321, Retold Remote on a random high port
|
|
195
|
+
|
|
196
|
+
Use the bare `retold-remote serve` command (without `--stack`) when you just want a quick gallery browser without the coordinator infrastructure.
|
|
197
|
+
|
|
198
|
+
## Comparison
|
|
199
|
+
|
|
200
|
+
| Feature | `retold-remote serve` | `retold-stack` |
|
|
201
|
+
|---------|----------------------|----------------|
|
|
202
|
+
| Gallery browser | [x] | [x] |
|
|
203
|
+
| Image/video/audio viewers | [x] | [x] |
|
|
204
|
+
| Document conversion (doc, rtf, etc.) | Embedded only | Embedded + dispatched |
|
|
205
|
+
| Heavy work offloading | No | Yes (via Ultravisor) |
|
|
206
|
+
| Spawns child processes | No | Yes (Ultravisor) |
|
|
207
|
+
| Default cache location | `./dist/retold-cache/` | `~/.cache/retold-remote/` |
|
|
208
|
+
| Survives `cd` | Yes | Yes (XDG paths are absolute) |
|
|
209
|
+
|
|
210
|
+
## Troubleshooting
|
|
211
|
+
|
|
212
|
+
| Symptom | Fix |
|
|
213
|
+
|---------|-----|
|
|
214
|
+
| `Could not locate the ultravisor package` | Run `npm install ultravisor` (or `npm install -g retold-remote` to get the bundled version) |
|
|
215
|
+
| `Ultravisor did not become ready within 30000ms` | Check the `[ultravisor]` log lines for an error. Common causes: port 54321 already bound by another process, missing dependencies, or invalid datastore path permissions |
|
|
216
|
+
| Stack mode hangs at `launching ultravisor` | Ultravisor's child process may be waiting on stdin or hitting an interactive prompt. Run with `-l <path>` to capture full logs |
|
|
217
|
+
| Beacon shows "not connected" | Ultravisor came up but the beacon registration failed. Check the Ultravisor child logs for errors and verify nothing is firewalling localhost:54321 |
|
|
218
|
+
| Want to override XDG paths | Set `XDG_DATA_HOME`, `XDG_CACHE_HOME`, or `XDG_CONFIG_HOME` in your environment before launching, or use the `-c` flag for the Retold Remote cache |
|