Compare commits
27 Commits
Author | SHA1 | Date | |
---|---|---|---|
252776e0a7 | |||
2ce726d16c | |||
96b4cecaec | |||
94bd14db52 | |||
fb0c60a71e | |||
3d76a5ece5 | |||
094f8a0925 | |||
496c00e7e3 | |||
95fa5b4ac7 | |||
ee5dff0d6f | |||
6f4a1c61df | |||
a0a90f2428 | |||
38185cc969 | |||
004e1a7eef | |||
497c73725c | |||
408778b8b9 | |||
d4f14b97b0 | |||
f778c4f44b | |||
a43a563609 | |||
97dce81297 | |||
71d00103dd | |||
d2899d4b50 | |||
bc0483cdc8 | |||
bf7be530a1 | |||
f53616f345 | |||
fb70acab00 | |||
8cf17838f4 |
45
README.md
45
README.md
@ -2,37 +2,38 @@
|
|||||||
|
|
||||||
OpenRewind is an open-source alternative to [rewind.ai](https://rewind.ai), forked from [OpenRecall](https://github.com/openrecall/openrecall).
|
OpenRewind is an open-source alternative to [rewind.ai](https://rewind.ai), forked from [OpenRecall](https://github.com/openrecall/openrecall).
|
||||||
|
|
||||||
We wanted to create an open source app that provides similar core functionality
|
We want to create an open source app that provides similar core functionality
|
||||||
to rewind.ai, and that app is **OpenRewind**.
|
to rewind.ai, and that app is **OpenRewind**.
|
||||||
|
|
||||||
|
## Alpha Release: 0.8.0
|
||||||
|
|
||||||
|
Latest works: There is an Alpha version available! We currently only support Apple Silicon Macs.
|
||||||
|
(Of course, thanks to building on Electron, there will definitely be support for multiple platforms in the beta/stable release)
|
||||||
|
|
||||||
|
### ✨ Features
|
||||||
|
|
||||||
|
- GUI app. No terminal windows, no need to install any dependencies
|
||||||
|
- Take a screenshot of your screen every 2 seconds
|
||||||
|
- Encode screenshots to video at regular intervals
|
||||||
|
- A full screen "rewind" page similar to Rewind, with scrolling to view captured screenshots
|
||||||
|
- Screenshots can be taken excluding the "rewind" window
|
||||||
|
|
||||||
## To-dos
|
## To-dos
|
||||||
|
|
||||||
### Update the OCR Engine
|
### OCR optimized for the specific platform
|
||||||
|
|
||||||
OpenRecall currently uses docTR as its OCR engine, but it performs inadequately.
|
We will use the OCR API provided by the OS for macOS and Windows.
|
||||||
On my MacBook Air M2 (2022), processing a screenshot takes around 20 seconds, with CPU usage peaking at over 400%.
|
|
||||||
During this time, screenshots cannot be captured, and the engine appears to recognize only Latin characters.
|
|
||||||
|
|
||||||
To address this, we plan to replace the OCR with a more efficient alternative that supports multiple writing systems.
|
Reference projects:
|
||||||
We are working on [RapidOCR ONNX](https://github.com/alikia2x/RapidOCR-ONNX), a fork of a project which has same name,
|
- [ocrit](https://github.com/insidegui/ocrit/)
|
||||||
developed by RapidAI.
|
> We [forked](https://github.com/alikia2x/ocrit) this project to suit our needs
|
||||||
RapidOCR ONNX uses [PaddleOCR](https://github.com/PaddlePaddle/PaddleOCR) as its model architecture, and
|
- [Windows.Media.Ocr.Cli](https://github.com/zh-h/Windows.Media.Ocr.Cli)
|
||||||
runs on the [ONNX Runtime](https://github.com/microsoft/onnxruntime/).
|
|
||||||
|
|
||||||
### Implement a Task Queue/Scheduler
|
### Big-little architecture optimizations for Apple Silicon
|
||||||
|
|
||||||
Currently, OpenRecall's OCR recognition and database operations are synchronous (blocking).
|
We wrote a small Swift program that allows a given program to run at a selected QoS class. On ARM Mac, this means we can put some work (such as video encoding) to Efficient cores, reducing peak CPU usage and power consumption.
|
||||||
This results in increased screenshot frequency, as described in the previous section.
|
|
||||||
|
|
||||||
Our next goal is to introduce a task queue to handle high-load tasks (such as OCR, indexing, and archiving) asynchronously. This will ensure that time-sensitive tasks (like capturing screenshots) are prioritized.
|
> See: [Prioritize Work with Quality of Service Classes](https://developer.apple.com/library/archive/documentation/Performance/Conceptual/EnergyGuide-iOS/PrioritizeWorkWithQoS.html)
|
||||||
|
|
||||||
### Improve the Frontend
|
|
||||||
|
|
||||||
The current frontend of OpenRecall is quite basic. Given my expertise in web development,
|
|
||||||
I will build a more elegant frontend from scratch.
|
|
||||||
|
|
||||||
We are now switched to Electron in order to deliver a native experience,
|
|
||||||
aiming to match the functionality of [rewind.ai](https://rewind.ai).
|
|
||||||
|
|
||||||
### Add More Features
|
### Add More Features
|
||||||
|
|
||||||
|
2
bunfig.toml
Normal file
2
bunfig.toml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
[install.scopes]
|
||||||
|
"@jsr" = "https://npm.jsr.io"
|
@ -10,10 +10,18 @@ export default function IconWithText() {
|
|||||||
<img src={imgUrl} className="h-20 w-20 mr-2" alt="OpenRewind icon" />
|
<img src={imgUrl} className="h-20 w-20 mr-2" alt="OpenRewind icon" />
|
||||||
<div className="flex flex-col justify-start w-auto h-[4.2rem] overflow-hidden mt-1">
|
<div className="flex flex-col justify-start w-auto h-[4.2rem] overflow-hidden mt-1">
|
||||||
<span className="text-2xl font-semibold">OpenRewind</span>
|
<span className="text-2xl font-semibold">OpenRewind</span>
|
||||||
<span className="text-sm text-gray-700 dark:text-gray-200
|
<span
|
||||||
font-medium ml-0.5">{t("settings.version", { version: pjson.version })}</span>
|
className="text-sm text-gray-700 dark:text-gray-200
|
||||||
<span className="text-xs text-gray-700 dark:text-gray-200
|
font-medium ml-0.5"
|
||||||
font-medium ml-0.5">{t("settings.copyright")}</span>
|
>
|
||||||
|
{t("settings.version", { version: pjson.version })}
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
className="text-xs text-gray-700 dark:text-gray-200
|
||||||
|
font-medium ml-0.5"
|
||||||
|
>
|
||||||
|
{t("settings.copyright")}
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
@ -1,10 +1,14 @@
|
|||||||
import { MouseEventHandler } from "react";
|
import { MouseEventHandler } from "react";
|
||||||
import { Icon } from "@iconify-icon/react";
|
import { Icon } from "@iconify-icon/react";
|
||||||
|
|
||||||
const MenuItem = ({ icon, text, onClick }: {
|
const MenuItem = ({
|
||||||
icon: string,
|
icon,
|
||||||
text: string,
|
text,
|
||||||
onClick: MouseEventHandler<HTMLDivElement>
|
onClick
|
||||||
|
}: {
|
||||||
|
icon: string;
|
||||||
|
text: string;
|
||||||
|
onClick: MouseEventHandler<HTMLDivElement>;
|
||||||
}) => {
|
}) => {
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
|
@ -7,10 +7,8 @@ export default function OpenSourceNote() {
|
|||||||
OpenRewind is open source software licensed under
|
OpenRewind is open source software licensed under
|
||||||
<a href="https://www.gnu.org/licenses/gpl-3.0.html">GPL 3.0</a>.<br />
|
<a href="https://www.gnu.org/licenses/gpl-3.0.html">GPL 3.0</a>.<br />
|
||||||
Source code is avaliable at
|
Source code is avaliable at
|
||||||
<a href="https://github.com/alikia2x/openrewind">
|
<a href="https://github.com/alikia2x/openrewind">GitHub</a>.
|
||||||
GitHub
|
|
||||||
</a>.
|
|
||||||
</Trans>
|
</Trans>
|
||||||
</p>
|
</p>
|
||||||
)
|
);
|
||||||
}
|
}
|
@ -1,9 +1,15 @@
|
|||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import { useRef } from "react";
|
import { useRef } from "react";
|
||||||
|
|
||||||
const SettingsGroup = (
|
const SettingsGroup = ({
|
||||||
{ children, groupName, addGroupRef }:
|
children,
|
||||||
{ children: React.ReactNode, groupName: string, addGroupRef: Function }) => {
|
groupName,
|
||||||
|
addGroupRef
|
||||||
|
}: {
|
||||||
|
children: React.ReactNode;
|
||||||
|
groupName: string;
|
||||||
|
addGroupRef: Function;
|
||||||
|
}) => {
|
||||||
const groupRef = useRef(null);
|
const groupRef = useRef(null);
|
||||||
|
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
|
@ -2,9 +2,7 @@ import { useTranslation } from "react-i18next";
|
|||||||
|
|
||||||
const Title = ({ i18nKey }: { i18nKey: string }) => {
|
const Title = ({ i18nKey }: { i18nKey: string }) => {
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
return (
|
return <h1 className="text-3xl font-bold leading-[3rem]">{t(i18nKey)}</h1>;
|
||||||
<h1 className="text-3xl font-bold leading-[3rem]">{t(i18nKey)}</h1>
|
};
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
export default Title;
|
export default Title;
|
@ -1,18 +1,123 @@
|
|||||||
# Database Schema Documentation
|
# Database Schema Changelog
|
||||||
|
|
||||||
This document outlines the changes made across different versions of
|
This document outlines the changes made across different versions of
|
||||||
database structure used in the OpenRewind, including tables and fields.
|
database structure used in the OpenRewind, including tables and fields.
|
||||||
|
|
||||||
## Version 2 Schema Changes
|
## Version 3 Schema Changes
|
||||||
|
|
||||||
Cooresponding version: Since 0.4.0
|
Corresponding version: Since 0.5.0
|
||||||
|
|
||||||
|
### Update `encoding_task` Table
|
||||||
|
|
||||||
|
#### Change `createAt` to `createdAt`
|
||||||
|
|
||||||
|
The column `createAt` was renamed to `createdAt` for consistency.
|
||||||
|
|
||||||
|
```sql
|
||||||
|
ALTER TABLE encoding_task RENAME COLUMN createAt TO createdAt;
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Convert `createdAt` to Unix Timestamp
|
||||||
|
|
||||||
|
The `createdAt` column was updated to store Unix timestamps instead of formatted timestamps.
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
const rows = db.prepare(`SELECT id, createdAt FROM encoding_task`).all() as {
|
||||||
|
[x: string]: unknown;
|
||||||
|
id: unknown;
|
||||||
|
}[];
|
||||||
|
const updateStmt = db.prepare(`UPDATE encoding_task SET createdAt_new = ? WHERE id = ?`);
|
||||||
|
rows.forEach((row) => {
|
||||||
|
const unixTimestamp = convertTimestampToUnix(row.createdAt as string);
|
||||||
|
updateStmt.run(unixTimestamp, row.id);
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
|
### Update `frame` Table
|
||||||
|
|
||||||
|
#### Change `createAt` to `createdAt`
|
||||||
|
|
||||||
|
The column `createAt` was renamed to `createdAt` for consistency.
|
||||||
|
|
||||||
|
```sql
|
||||||
|
ALTER TABLE frame RENAME COLUMN createAt TO createdAt;
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Convert `createdAt` to Unix Timestamp
|
||||||
|
|
||||||
|
The `createdAt` column was updated to store Unix timestamps instead of formatted timestamps.
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
const rows = db.prepare(`SELECT id, createdAt FROM frame`).all() as {
|
||||||
|
[x: string]: unknown;
|
||||||
|
id: unknown;
|
||||||
|
}[];
|
||||||
|
const updateStmt = db.prepare(`UPDATE frame SET createdAt_new = ? WHERE id = ?`);
|
||||||
|
rows.forEach((row) => {
|
||||||
|
const unixTimestamp = convertTimestampToUnix(row.createdAt as string);
|
||||||
|
updateStmt.run(unixTimestamp, row.id);
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
|
### Update `segments` Table
|
||||||
|
|
||||||
|
#### Rename Columns for Consistency
|
||||||
|
|
||||||
|
The columns `startAt` and `endAt` were renamed to `startedAt` and `endedAt` respectively.
|
||||||
|
|
||||||
|
```sql
|
||||||
|
ALTER TABLE segments RENAME COLUMN startAt TO startedAt;
|
||||||
|
ALTER TABLE segments RENAME COLUMN endAt TO endedAt;
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Convert `startedAt` and `endedAt` to Unix Timestamps
|
||||||
|
|
||||||
|
The `startedAt` and `endedAt` columns were updated to store Unix timestamps instead of formatted timestamps.
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
const rows = db.prepare(`SELECT id, startedAt, endedAt FROM segments`).all() as {
|
||||||
|
[x: string]: unknown;
|
||||||
|
id: unknown;
|
||||||
|
}[];
|
||||||
|
const updateStart = db.prepare(`UPDATE segments SET startedAt_new = ? WHERE id = ?`);
|
||||||
|
const updateEnd = db.prepare(`UPDATE segments SET endedAt_new = ? WHERE id = ?`);
|
||||||
|
rows.forEach((row) => {
|
||||||
|
updateStart.run(convertTimestampToUnix(row.startedAt as string), row.id);
|
||||||
|
updateEnd.run(convertTimestampToUnix(row.endedAt as string), row.id);
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
|
### Drop Deprecated `encoded` Column
|
||||||
|
|
||||||
|
The deprecated `encoded` column was removed from the `frame` table.
|
||||||
|
|
||||||
|
```sql
|
||||||
|
ALTER TABLE frame DROP COLUMN encoded;
|
||||||
|
```
|
||||||
|
|
||||||
|
### Summary of Changes
|
||||||
|
|
||||||
|
- **Update `encoding_task` Table:**
|
||||||
|
- Renamed `createAt` to `createdAt`.
|
||||||
|
- Converted `createdAt` to store Unix timestamps.
|
||||||
|
- **Update `frame` Table:**
|
||||||
|
- Renamed `createAt` to `createdAt`.
|
||||||
|
- Converted `createdAt` to store Unix timestamps.
|
||||||
|
- Dropped the deprecated `encoded` column.
|
||||||
|
- **Update `segments` Table:**
|
||||||
|
- Renamed `startAt` and `endAt` to `startedAt` and `endedAt` respectively.
|
||||||
|
- Converted `startedAt` and `endedAt` to store Unix timestamps.
|
||||||
|
|
||||||
|
## Version 2 Schema
|
||||||
|
|
||||||
|
Corresponding version: 0.4.0
|
||||||
|
|
||||||
### New Table: `config`
|
### New Table: `config`
|
||||||
|
|
||||||
Stores configuration data, including the database version.
|
Stores configuration data, including the database version.
|
||||||
|
|
||||||
| Column Name | Data Type | Constraints/Default | Description |
|
| Column Name | Data Type | Constraints/Default | Description |
|
||||||
|-------------|-----------|---------------------|-----------------------------------------------------------------------------|
|
| ----------- | --------- | ------------------- | -------------------------------------- |
|
||||||
| `key` | TEXT | PRIMARY KEY | Unique key for configuration settings. |
|
| `key` | TEXT | PRIMARY KEY | Unique key for configuration settings. |
|
||||||
| `value` | TEXT | | Value associated with the key. |
|
| `value` | TEXT | | Value associated with the key. |
|
||||||
|
|
||||||
@ -27,7 +132,7 @@ INSERT INTO config (key, value) VALUES ('version', '2');
|
|||||||
Stores encoding tasks that are queued for processing.
|
Stores encoding tasks that are queued for processing.
|
||||||
|
|
||||||
| Column Name | Data Type | Constraints/Default | Description |
|
| Column Name | Data Type | Constraints/Default | Description |
|
||||||
|-------------|-----------|----------------------------|--------------------------------------|
|
| ----------- | --------- | -------------------------- | ------------------------------------ |
|
||||||
| `id` | INTEGER | PRIMARY KEY, AUTOINCREMENT | Unique ID for the task. |
|
| `id` | INTEGER | PRIMARY KEY, AUTOINCREMENT | Unique ID for the task. |
|
||||||
| `createAt` | TIMESTAMP | DEFAULT CURRENT_TIMESTAMP | Timestamp when the task was created. |
|
| `createAt` | TIMESTAMP | DEFAULT CURRENT_TIMESTAMP | Timestamp when the task was created. |
|
||||||
| `status` | INTEGER | DEFAULT 0 | Indicates the status of the task. |
|
| `status` | INTEGER | DEFAULT 0 | Indicates the status of the task. |
|
||||||
@ -62,11 +167,10 @@ END;
|
|||||||
Stores the frames that need to be encoded for the encoding task
|
Stores the frames that need to be encoded for the encoding task
|
||||||
|
|
||||||
| Column Name | Data Type | Constraints/Default | Description |
|
| Column Name | Data Type | Constraints/Default | Description |
|
||||||
|------------------|-----------|-------------------------------------|------------------------------------------------------|
|
| ---------------- | --------- | ----------------------------------- | ---------------------------------------------------- |
|
||||||
| `frame` | INTEGER | PRIMARY KEY, FOREIGN KEY (frame.id) | ID for the frame associated with the encoding task. |
|
| `frame` | INTEGER | PRIMARY KEY, FOREIGN KEY (frame.id) | ID for the frame associated with the encoding task. |
|
||||||
| `encodingTaskID` | TIMESTAMP | FOREIGN KEY (encoding_task.id) | ID for the encoding task associated with this frame. |
|
| `encodingTaskID` | TIMESTAMP | FOREIGN KEY (encoding_task.id) | ID for the encoding task associated with this frame. |
|
||||||
|
|
||||||
|
|
||||||
### Update `frame` Table
|
### Update `frame` Table
|
||||||
|
|
||||||
#### Simplify `imgFilename`
|
#### Simplify `imgFilename`
|
||||||
@ -74,11 +178,11 @@ Stores the frames that need to be encoded for the encoding task
|
|||||||
The `imgFilename` column was updated to store only the filename without the full path.
|
The `imgFilename` column was updated to store only the filename without the full path.
|
||||||
|
|
||||||
```typescript
|
```typescript
|
||||||
const rows = db.prepare('SELECT id, imgFilename FROM frame').all() as OldFrame[];
|
const rows = db.prepare("SELECT id, imgFilename FROM frame").all() as OldFrame[];
|
||||||
rows.forEach(row => {
|
rows.forEach((row) => {
|
||||||
const filename = row.imgFilename.match(/[^\\/]+$/)?.[0];
|
const filename = row.imgFilename.match(/[^\\/]+$/)?.[0];
|
||||||
if (filename) {
|
if (filename) {
|
||||||
db.prepare('UPDATE frame SET imgFilename = ? WHERE id = ?').run(filename, row.id);
|
db.prepare("UPDATE frame SET imgFilename = ? WHERE id = ?").run(filename, row.id);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
```
|
```
|
||||||
@ -102,17 +206,16 @@ UPDATE frame SET encodeStatus = CASE WHEN encoded THEN 2 ELSE 0 END;
|
|||||||
- The `encoded` column is no longer used and is retained due to SQLite's inability to drop columns.
|
- The `encoded` column is no longer used and is retained due to SQLite's inability to drop columns.
|
||||||
Creating a new table without this column and copying data to the new table could be time-consuming.
|
Creating a new table without this column and copying data to the new table could be time-consuming.
|
||||||
|
|
||||||
|
|
||||||
## Version 1 Schema
|
## Version 1 Schema
|
||||||
|
|
||||||
Cooresponding version: 0.3.x
|
Corresponding version: 0.3.x
|
||||||
|
|
||||||
### Table: `frame`
|
### Table: `frame`
|
||||||
|
|
||||||
Stores information about individual frames.
|
Stores information about individual frames.
|
||||||
|
|
||||||
| Column Name | Data Type | Constraints/Default | Description |
|
| Column Name | Data Type | Constraints/Default | Description |
|
||||||
|-------------------|-----------|---------------------------------|-------------------------------------------------------------------------|
|
| ----------------- | --------- | ------------------------------- | ----------------------------------------------------------------------- |
|
||||||
| `id` | INTEGER | PRIMARY KEY, AUTOINCREMENT | Unique identifier for each frame. |
|
| `id` | INTEGER | PRIMARY KEY, AUTOINCREMENT | Unique identifier for each frame. |
|
||||||
| `createAt` | TIMESTAMP | DEFAULT CURRENT_TIMESTAMP | Timestamp when the frame was created. |
|
| `createAt` | TIMESTAMP | DEFAULT CURRENT_TIMESTAMP | Timestamp when the frame was created. |
|
||||||
| `imgFilename` | TEXT | | Filename of the image associated with the frame. |
|
| `imgFilename` | TEXT | | Filename of the image associated with the frame. |
|
||||||
@ -127,7 +230,7 @@ Stores information about individual frames.
|
|||||||
Stores recognition data associated with frames.
|
Stores recognition data associated with frames.
|
||||||
|
|
||||||
| Column Name | Data Type | Constraints/Default | Desc[database-structure.md](database-structure.md)ription |
|
| Column Name | Data Type | Constraints/Default | Desc[database-structure.md](database-structure.md)ription |
|
||||||
|-------------|-----------|----------------------------|-----------------------------------------------------------|
|
| ----------- | --------- | -------------------------- | --------------------------------------------------------- |
|
||||||
| `id` | INTEGER | PRIMARY KEY, AUTOINCREMENT | Unique identifier for each recognition data entry. |
|
| `id` | INTEGER | PRIMARY KEY, AUTOINCREMENT | Unique identifier for each recognition data entry. |
|
||||||
| `frameID` | INTEGER | FOREIGN KEY (frame.id) | ID of the frame to which the recognition data belongs. |
|
| `frameID` | INTEGER | FOREIGN KEY (frame.id) | ID of the frame to which the recognition data belongs. |
|
||||||
| `data` | TEXT | | Raw recognition data. |
|
| `data` | TEXT | | Raw recognition data. |
|
||||||
@ -140,7 +243,7 @@ While capturing the screen, OpenRewind retrieves the currently active window.
|
|||||||
When it finds that the currently active window has changed to another application, a new segment will start.
|
When it finds that the currently active window has changed to another application, a new segment will start.
|
||||||
|
|
||||||
| Column Name | Data Type | Constraints/Default | Description |
|
| Column Name | Data Type | Constraints/Default | Description |
|
||||||
|---------------|-----------|----------------------------|------------------------------------------------------|
|
| ------------- | --------- | -------------------------- | ---------------------------------------------------- |
|
||||||
| `id` | INTEGER | PRIMARY KEY, AUTOINCREMENT | Unique identifier for each segment. |
|
| `id` | INTEGER | PRIMARY KEY, AUTOINCREMENT | Unique identifier for each segment. |
|
||||||
| `startAt` | TIMESTAMP | | Timestamp when the segment starts. |
|
| `startAt` | TIMESTAMP | | Timestamp when the segment starts. |
|
||||||
| `endAt` | TIMESTAMP | | Timestamp when the segment ends. |
|
| `endAt` | TIMESTAMP | | Timestamp when the segment ends. |
|
||||||
@ -157,7 +260,7 @@ When it finds that the currently active window has changed to another applicatio
|
|||||||
Used for full-text search on recognition data.
|
Used for full-text search on recognition data.
|
||||||
|
|
||||||
| Column Name | Data Type | Constraints/Default | Description |
|
| Column Name | Data Type | Constraints/Default | Description |
|
||||||
|-------------|-----------|---------------------|--------------------------------------------------------|
|
| ----------- | --------- | ------------------- | ------------------------------------------------------ |
|
||||||
| `id` | INTEGER | UNINDEXED | ID of the recognition data entry. |
|
| `id` | INTEGER | UNINDEXED | ID of the recognition data entry. |
|
||||||
| `frameID` | INTEGER | UNINDEXED | ID of the frame to which the recognition data belongs. |
|
| `frameID` | INTEGER | UNINDEXED | ID of the frame to which the recognition data belongs. |
|
||||||
| `data` | TEXT | | Raw recognition data. |
|
| `data` | TEXT | | Raw recognition data. |
|
||||||
|
@ -1,38 +1,34 @@
|
|||||||
# Database Schema Documentation (Version 2)
|
# Database Schema Documentation (Version 3)
|
||||||
|
|
||||||
This document outlines the current structure of the database schema used in the application.
|
This document outlines the current structure of the database schema used in the application. It includes tables, fields, and their descriptions.
|
||||||
It includes tables, fields, and their descriptions.
|
|
||||||
|
|
||||||
## Table: `config`
|
## Table: `config`
|
||||||
|
|
||||||
Stores configuration data.
|
Stores configuration data.
|
||||||
|
|
||||||
| Column Name | Data Type | Constraints/Default | Description |
|
| Column Name | Data Type | Constraints/Default | Description |
|
||||||
|-------------|-----------|---------------------|-----------------------------------------------------------------------------|
|
| ----------- | --------- | ------------------- | -------------------------------------- |
|
||||||
| `key` | TEXT | PRIMARY KEY | Unique key for configuration settings. |
|
| `key` | TEXT | PRIMARY KEY | Unique key for configuration settings. |
|
||||||
| `value` | TEXT | | Value associated with the key. |
|
| `value` | TEXT | | Value associated with the key. |
|
||||||
|
|
||||||
### Key: version
|
### Key: version
|
||||||
|
|
||||||
The current database schema version, represented as a integer.
|
The current database schema version, represented as an integer. Since the `config` table does not exist in V1, the version must be at least 2.
|
||||||
Since the `config` table does not exist in V1, the version must be at least 2.
|
|
||||||
|
|
||||||
|
|
||||||
## Table: `frame`
|
## Table: `frame`
|
||||||
|
|
||||||
Stores information about individual frames.
|
Stores information about individual frames.
|
||||||
|
|
||||||
| Column Name | Data Type | Constraints/Default | Description |
|
| Column Name | Data Type | Constraints/Default | Description |
|
||||||
|-------------------|-----------|---------------------------------|-----------------------------------------------------------|
|
| ----------------- | --------- | ------------------------------- | --------------------------------------------------------- |
|
||||||
| `id` | INTEGER | PRIMARY KEY, AUTOINCREMENT | Unique identifier for each frame. |
|
| `id` | INTEGER | PRIMARY KEY, AUTOINCREMENT | Unique identifier for each frame. |
|
||||||
| `createAt` | TIMESTAMP | DEFAULT CURRENT_TIMESTAMP | Timestamp when the frame was created. |
|
| `createdAt` | REAL | | Timestamp when the frame was created. |
|
||||||
| `imgFilename` | TEXT | | Filename of the image associated with the frame. |
|
| `imgFilename` | TEXT | | Filename of the image associated with the frame. |
|
||||||
| `segmentID` | INTEGER | NULL, FOREIGN KEY (segments.id) | ID of the segment to which the frame belongs. |
|
| `segmentID` | INTEGER | NULL, FOREIGN KEY (segments.id) | ID of the segment to which the frame belongs. |
|
||||||
| `videoPath` | TEXT | NULL | Relative path to the video file if the frame was encoded. |
|
| `videoPath` | TEXT | NULL | Relative path to the video file if the frame was encoded. |
|
||||||
| `videoFrameIndex` | INTEGER | NULL | Index of the frame within the encoded video. |
|
| `videoFrameIndex` | INTEGER | NULL | Index of the frame within the encoded video. |
|
||||||
| `collectionID` | INTEGER | NULL | ID of the collection to which the frame belongs. |
|
| `collectionID` | INTEGER | NULL | ID of the collection to which the frame belongs. |
|
||||||
| `encodeStatus` | INTEGER | 0 | Indicates the encoding status of the frame. |
|
| `encodeStatus` | INTEGER | DEFAULT 0 | Indicates the encoding status of the frame. |
|
||||||
|
|
||||||
|
|
||||||
### Status Description
|
### Status Description
|
||||||
|
|
||||||
@ -45,7 +41,7 @@ Stores information about individual frames.
|
|||||||
Stores recognition data associated with frames.
|
Stores recognition data associated with frames.
|
||||||
|
|
||||||
| Column Name | Data Type | Constraints/Default | Description |
|
| Column Name | Data Type | Constraints/Default | Description |
|
||||||
|-------------|-----------|------------------------------|-----------------------------------------------------------------------------|
|
| ----------- | --------- | -------------------------- | ------------------------------------------------------ |
|
||||||
| `id` | INTEGER | PRIMARY KEY, AUTOINCREMENT | Unique identifier for each recognition data entry. |
|
| `id` | INTEGER | PRIMARY KEY, AUTOINCREMENT | Unique identifier for each recognition data entry. |
|
||||||
| `frameID` | INTEGER | FOREIGN KEY (frame.id) | ID of the frame to which the recognition data belongs. |
|
| `frameID` | INTEGER | FOREIGN KEY (frame.id) | ID of the frame to which the recognition data belongs. |
|
||||||
| `data` | TEXT | | Raw recognition data. |
|
| `data` | TEXT | | Raw recognition data. |
|
||||||
@ -53,15 +49,13 @@ Stores recognition data associated with frames.
|
|||||||
|
|
||||||
## Table: `segments`
|
## Table: `segments`
|
||||||
|
|
||||||
A segment is a period of time when a user uses a particular application.
|
A segment is a period of time when a user uses a particular application. While capturing the screen, OpenRewind detects the currently active window. When it finds that the currently active window has changed to another application, a new segment will start.
|
||||||
While capturing the screen, OpenRewind detects the currently active window.
|
|
||||||
When it finds that the currently active window has changed to another application, a new segment will start.
|
|
||||||
|
|
||||||
| Column Name | Data Type | Constraints/Default | Description |
|
| Column Name | Data Type | Constraints/Default | Description |
|
||||||
|---------------|-----------|----------------------------|------------------------------------------------------|
|
| ------------- | --------- | -------------------------- | ---------------------------------------------------- |
|
||||||
| `id` | INTEGER | PRIMARY KEY, AUTOINCREMENT | Unique identifier for each segment. |
|
| `id` | INTEGER | PRIMARY KEY, AUTOINCREMENT | Unique identifier for each segment. |
|
||||||
| `startAt` | TIMESTAMP | | Timestamp when the segment starts. |
|
| `startedAt` | REAL | | Timestamp when the segment starts. |
|
||||||
| `endAt` | TIMESTAMP | | Timestamp when the segment ends. |
|
| `endedAt` | REAL | | Timestamp when the segment ends. |
|
||||||
| `title` | TEXT | | Title of the segment. |
|
| `title` | TEXT | | Title of the segment. |
|
||||||
| `appName` | TEXT | | Name of the application associated with the segment. |
|
| `appName` | TEXT | | Name of the application associated with the segment. |
|
||||||
| `appPath` | TEXT | | Path to the application. |
|
| `appPath` | TEXT | | Path to the application. |
|
||||||
@ -75,9 +69,9 @@ When it finds that the currently active window has changed to another applicatio
|
|||||||
Stores encoding tasks that are queued for processing.
|
Stores encoding tasks that are queued for processing.
|
||||||
|
|
||||||
| Column Name | Data Type | Constraints/Default | Description |
|
| Column Name | Data Type | Constraints/Default | Description |
|
||||||
|-------------|-----------|----------------------------|--------------------------------------|
|
| ----------- | --------- | -------------------------- | ------------------------------------ |
|
||||||
| `id` | INTEGER | PRIMARY KEY, AUTOINCREMENT | Unique ID for the task. |
|
| `id` | INTEGER | PRIMARY KEY, AUTOINCREMENT | Unique ID for the task. |
|
||||||
| `createAt` | TIMESTAMP | DEFAULT CURRENT_TIMESTAMP | Timestamp when the task was created. |
|
| `createdAt` | REAL | | Timestamp when the task was created. |
|
||||||
| `status` | INTEGER | DEFAULT 0 | Indicates the status of the task. |
|
| `status` | INTEGER | DEFAULT 0 | Indicates the status of the task. |
|
||||||
|
|
||||||
### Task status Description
|
### Task status Description
|
||||||
@ -89,20 +83,19 @@ Stores encoding tasks that are queued for processing.
|
|||||||
|
|
||||||
## Table: `encoding_task_data`
|
## Table: `encoding_task_data`
|
||||||
|
|
||||||
Stores the frames that need to be encoded for the encoding task
|
Stores the frames that need to be encoded for the encoding task.
|
||||||
|
|
||||||
| Column Name | Data Type | Constraints/Default | Description |
|
| Column Name | Data Type | Constraints/Default | Description |
|
||||||
|------------------|-----------|-------------------------------------|------------------------------------------------------|
|
| ---------------- | --------- | ----------------------------------- | ---------------------------------------------------- |
|
||||||
|
| `encodingTaskID` | INTEGER | FOREIGN KEY (encoding_task.id) | ID for the encoding task associated with this frame. |
|
||||||
| `frame` | INTEGER | PRIMARY KEY, FOREIGN KEY (frame.id) | ID for the frame associated with the encoding task. |
|
| `frame` | INTEGER | PRIMARY KEY, FOREIGN KEY (frame.id) | ID for the frame associated with the encoding task. |
|
||||||
| `encodingTaskID` | TIMESTAMP | FOREIGN KEY (encoding_task.id) | ID for the encoding task associated with this frame. |
|
|
||||||
|
|
||||||
|
|
||||||
## Virtual Table: `text_search`
|
## Virtual Table: `text_search`
|
||||||
|
|
||||||
Used for full-text search on recognition data.
|
Used for full-text search on recognition data.
|
||||||
|
|
||||||
| Column Name | Data Type | Constraints/Default | Description |
|
| Column Name | Data Type | Constraints/Default | Description |
|
||||||
|-------------|-----------|---------------------|--------------------------------------------------------|
|
| ----------- | --------- | ------------------- | ------------------------------------------------------ |
|
||||||
| `id` | INTEGER | UNINDEXED | ID of the recognition data entry. |
|
| `id` | INTEGER | UNINDEXED | ID of the recognition data entry. |
|
||||||
| `frameID` | INTEGER | UNINDEXED | ID of the frame to which the recognition data belongs. |
|
| `frameID` | INTEGER | UNINDEXED | ID of the frame to which the recognition data belongs. |
|
||||||
| `data` | TEXT | | Raw recognition data. |
|
| `data` | TEXT | | Raw recognition data. |
|
||||||
@ -112,8 +105,7 @@ Used for full-text search on recognition data.
|
|||||||
|
|
||||||
### `recognition_data_after_insert`
|
### `recognition_data_after_insert`
|
||||||
|
|
||||||
Triggered after inserting a new row into `recognition_data`.
|
Triggered after inserting a new row into `recognition_data`. Inserts a new row into `text_search` with the same data.
|
||||||
Inserts a new row into `text_search` with the same data.
|
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
CREATE TRIGGER IF NOT EXISTS recognition_data_after_insert AFTER INSERT ON recognition_data
|
CREATE TRIGGER IF NOT EXISTS recognition_data_after_insert AFTER INSERT ON recognition_data
|
||||||
@ -125,8 +117,7 @@ END;
|
|||||||
|
|
||||||
### `recognition_data_after_update`
|
### `recognition_data_after_update`
|
||||||
|
|
||||||
Triggered after updating a row in `recognition_data`.
|
Triggered after updating a row in `recognition_data`. Updates the associated `text_search` row.
|
||||||
Updates the associated `text_search` row.
|
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
CREATE TRIGGER IF NOT EXISTS recognition_data_after_update AFTER UPDATE ON recognition_data
|
CREATE TRIGGER IF NOT EXISTS recognition_data_after_update AFTER UPDATE ON recognition_data
|
||||||
@ -139,8 +130,7 @@ END;
|
|||||||
|
|
||||||
### `recognition_data_after_delete`
|
### `recognition_data_after_delete`
|
||||||
|
|
||||||
Triggered after deleting a row from `recognition_data`.
|
Triggered after deleting a row from `recognition_data`. Deletes the associated `text_search` row.
|
||||||
Deletes the associated `text_search` row.
|
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
CREATE TRIGGER IF NOT EXISTS recognition_data_after_delete AFTER DELETE ON recognition_data
|
CREATE TRIGGER IF NOT EXISTS recognition_data_after_delete AFTER DELETE ON recognition_data
|
||||||
@ -151,11 +141,10 @@ END;
|
|||||||
|
|
||||||
### `delete_encoding_task`
|
### `delete_encoding_task`
|
||||||
|
|
||||||
Triggered after updating the `status` of an encoding task to `2` (Completed).
|
Triggered after updating the `status` of an encoding task to `2` (Completed). Deletes the associated `encoding_task_data` and `encoding_task` rows.
|
||||||
Deletes the associated `encoding_task_data` and `encoding_task` rows.
|
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
CREATE TRIGGER delete_encoding_task
|
CREATE TRIGGER IF NOT EXISTS delete_encoding_task
|
||||||
AFTER UPDATE OF status
|
AFTER UPDATE OF status
|
||||||
ON encoding_task
|
ON encoding_task
|
||||||
BEGIN
|
BEGIN
|
||||||
@ -165,5 +154,4 @@ BEGIN
|
|||||||
DELETE FROM encoding_task
|
DELETE FROM encoding_task
|
||||||
WHERE id = OLD.id AND NEW.status = 2;
|
WHERE id = OLD.id AND NEW.status = 2;
|
||||||
END;
|
END;
|
||||||
|
|
||||||
```
|
```
|
||||||
|
@ -2,10 +2,7 @@
|
|||||||
"appId": "com.alikia2x.openrewind",
|
"appId": "com.alikia2x.openrewind",
|
||||||
"mac": {
|
"mac": {
|
||||||
"category": "public.app-category.productivity",
|
"category": "public.app-category.productivity",
|
||||||
"target": "dmg",
|
"target": "dmg"
|
||||||
"files": [
|
|
||||||
"bin/macos"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"productName": "OpenRewind",
|
"productName": "OpenRewind",
|
||||||
"directories": {
|
"directories": {
|
||||||
@ -20,9 +17,7 @@
|
|||||||
],
|
],
|
||||||
"win": {
|
"win": {
|
||||||
"target": "nsis",
|
"target": "nsis",
|
||||||
"files": [
|
"files": ["bin/win32"]
|
||||||
"bin/win32"
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
"linux": {
|
"linux": {
|
||||||
"target": "AppImage"
|
"target": "AppImage"
|
||||||
|
@ -1,28 +1,37 @@
|
|||||||
import js from '@eslint/js'
|
import js from "@eslint/js";
|
||||||
import globals from 'globals'
|
import globals from "globals";
|
||||||
import reactHooks from 'eslint-plugin-react-hooks'
|
import reactHooks from "eslint-plugin-react-hooks";
|
||||||
import reactRefresh from 'eslint-plugin-react-refresh'
|
import reactRefresh from "eslint-plugin-react-refresh";
|
||||||
import tseslint from 'typescript-eslint'
|
import tseslint from "typescript-eslint";
|
||||||
|
|
||||||
export default tseslint.config(
|
export default tseslint.config(
|
||||||
{ ignores: ['dist'] },
|
{ ignores: ["dist"] },
|
||||||
{
|
{
|
||||||
extends: [js.configs.recommended, ...tseslint.configs.recommended],
|
extends: [js.configs.recommended, ...tseslint.configs.recommended],
|
||||||
files: ['**/*.{ts,tsx}'],
|
files: ["**/*.{ts,tsx}"],
|
||||||
languageOptions: {
|
languageOptions: {
|
||||||
ecmaVersion: 2020,
|
ecmaVersion: 2020,
|
||||||
globals: globals.browser,
|
globals: globals.browser
|
||||||
},
|
},
|
||||||
plugins: {
|
plugins: {
|
||||||
'react-hooks': reactHooks,
|
"react-hooks": reactHooks,
|
||||||
'react-refresh': reactRefresh,
|
"react-refresh": reactRefresh
|
||||||
},
|
},
|
||||||
rules: {
|
rules: {
|
||||||
...reactHooks.configs.recommended.rules,
|
...reactHooks.configs.recommended.rules,
|
||||||
'react-refresh/only-export-components': [
|
"react-refresh/only-export-components": ["warn", { allowConstantExport: true }],
|
||||||
'warn',
|
"@typescript-eslint/no-unused-vars": [
|
||||||
{ allowConstantExport: true },
|
"error",
|
||||||
],
|
{
|
||||||
},
|
args: "all",
|
||||||
},
|
argsIgnorePattern: "^_",
|
||||||
)
|
caughtErrors: "all",
|
||||||
|
caughtErrorsIgnorePattern: "^_",
|
||||||
|
destructuredArrayIgnorePattern: "^_",
|
||||||
|
varsIgnorePattern: "^_",
|
||||||
|
ignoreRestSiblings: true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
40
gulpfile.ts
40
gulpfile.ts
@ -1,45 +1,39 @@
|
|||||||
import gulp from "gulp";
|
import gulp from "gulp";
|
||||||
import ts from "gulp-typescript";
|
import ts from "gulp-typescript";
|
||||||
// @ts-ignore
|
|
||||||
import clean from "gulp-clean";
|
import clean from "gulp-clean";
|
||||||
import fs from "fs";
|
import fs from "fs";
|
||||||
|
|
||||||
const tsProject = ts.createProject('tsconfig.json');
|
const tsProject = ts.createProject("tsconfig.json");
|
||||||
|
|
||||||
gulp.task('clean', function () {
|
gulp.task("clean", function () {
|
||||||
return gulp.src('dist/electron', {read: false, allowEmpty: true})
|
return gulp.src("dist/electron", { read: false, allowEmpty: true }).pipe(clean());
|
||||||
.pipe(clean());
|
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('scripts', () => {
|
gulp.task("scripts", () => {
|
||||||
if (!fs.existsSync("dist/electron")) {
|
if (!fs.existsSync("dist/electron")) {
|
||||||
fs.mkdirSync("dist/electron", { recursive: true });
|
fs.mkdirSync("dist/electron", { recursive: true });
|
||||||
}
|
}
|
||||||
const tsResult = tsProject.src()
|
const tsResult = tsProject.src().pipe(tsProject());
|
||||||
.pipe(tsProject());
|
|
||||||
|
|
||||||
const jsFiles = gulp.src(['src/electron/**/*.js', 'src/electron/**/*.cjs']);
|
const jsFiles = gulp.src(["src/electron/**/*.js", "src/electron/**/*.cjs"]);
|
||||||
|
|
||||||
return tsResult.js
|
return tsResult.js.pipe(gulp.dest("dist/electron")).on("end", () => {
|
||||||
.pipe(gulp.dest('dist/electron'))
|
jsFiles.pipe(gulp.dest("dist/electron"));
|
||||||
.on('end', () => {
|
|
||||||
jsFiles.pipe(gulp.dest('dist/electron'));
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('assets', () => {
|
gulp.task("assets", () => {
|
||||||
return gulp.src('src/electron/assets/**/*', { encoding: false })
|
return gulp
|
||||||
.pipe(gulp.dest('dist/electron/assets'));
|
.src("src/electron/assets/**/*", { encoding: false })
|
||||||
|
.pipe(gulp.dest("dist/electron/assets"));
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task('binary', () => {
|
gulp.task("binary", () => {
|
||||||
return gulp.src('bin/**/*', { encoding: false })
|
return gulp.src(`bin/${process.platform}-${process.arch}/**/*`, { encoding: false }).pipe(gulp.dest("dist/electron/bin"));
|
||||||
.pipe(gulp.dest('dist/electron/bin'));
|
|
||||||
});
|
});
|
||||||
|
|
||||||
gulp.task("locales", () => {
|
gulp.task("locales", () => {
|
||||||
return gulp.src('i18n/**/*')
|
return gulp.src("i18n/**/*").pipe(gulp.dest("dist/electron/i18n"));
|
||||||
.pipe(gulp.dest('dist/electron/i18n'));
|
});
|
||||||
})
|
|
||||||
|
|
||||||
gulp.task('build', gulp.series('clean', 'scripts', 'assets', 'binary', 'locales'));
|
gulp.task("build", gulp.series("clean", "scripts", "assets", "binary", "locales"));
|
||||||
|
14
package.json
14
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "openrewind",
|
"name": "openrewind",
|
||||||
"version": "0.6.0",
|
"version": "0.10.0",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"description": "Your second brain, superpowered.",
|
"description": "Your second brain, superpowered.",
|
||||||
"main": "dist/electron/index.js",
|
"main": "dist/electron/index.js",
|
||||||
@ -11,15 +11,21 @@
|
|||||||
"dev:electron": "bunx gulp build && electron dist/electron/index.js",
|
"dev:electron": "bunx gulp build && electron dist/electron/index.js",
|
||||||
"build:react": "vite build",
|
"build:react": "vite build",
|
||||||
"build:app": "bunx gulp build",
|
"build:app": "bunx gulp build",
|
||||||
"build:electron": "electron-builder"
|
"build:electron": "electron-builder",
|
||||||
|
"format": "bunx prettier --write ."
|
||||||
},
|
},
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "",
|
"author": "",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@alikia/random-key": "npm:@jsr/alikia__random-key",
|
||||||
"@electron/remote": "^2.1.2",
|
"@electron/remote": "^2.1.2",
|
||||||
|
"@hono/node-server": "^1.13.7",
|
||||||
|
"@types/node-os-utils": "^1.3.4",
|
||||||
"@unly/universal-language-detector": "^2.0.3",
|
"@unly/universal-language-detector": "^2.0.3",
|
||||||
"better-sqlite3": "^11.6.0",
|
"better-sqlite3": "^11.6.0",
|
||||||
|
"dayjs": "^1.11.13",
|
||||||
|
"detect-port": "^2.1.0",
|
||||||
"electron-context-menu": "^4.0.4",
|
"electron-context-menu": "^4.0.4",
|
||||||
"electron-reloader": "^1.2.3",
|
"electron-reloader": "^1.2.3",
|
||||||
"electron-screencapture": "^1.1.0",
|
"electron-screencapture": "^1.1.0",
|
||||||
@ -27,13 +33,17 @@
|
|||||||
"electron-store": "^10.0.0",
|
"electron-store": "^10.0.0",
|
||||||
"electron-window-state": "^5.0.3",
|
"electron-window-state": "^5.0.3",
|
||||||
"execa": "^9.5.1",
|
"execa": "^9.5.1",
|
||||||
|
"hono": "^4.6.15",
|
||||||
"i18next": "^24.0.2",
|
"i18next": "^24.0.2",
|
||||||
"i18next-browser-languagedetector": "^8.0.0",
|
"i18next-browser-languagedetector": "^8.0.0",
|
||||||
"i18next-electron-fs-backend": "^3.0.2",
|
"i18next-electron-fs-backend": "^3.0.2",
|
||||||
"i18next-fs-backend": "^2.6.0",
|
"i18next-fs-backend": "^2.6.0",
|
||||||
"i18next-icu": "^2.3.0",
|
"i18next-icu": "^2.3.0",
|
||||||
"image-size": "^1.1.1",
|
"image-size": "^1.1.1",
|
||||||
|
"jotai": "^2.11.0",
|
||||||
"memory-cache": "^0.2.0",
|
"memory-cache": "^0.2.0",
|
||||||
|
"node-os-utils": "^1.3.7",
|
||||||
|
"pino": "^9.6.0",
|
||||||
"react": "^18.3.1",
|
"react": "^18.3.1",
|
||||||
"react-dom": "^18.3.1",
|
"react-dom": "^18.3.1",
|
||||||
"react-i18next": "^15.1.2",
|
"react-i18next": "^15.1.2",
|
||||||
|
@ -1,12 +1,251 @@
|
|||||||
import "./index.css";
|
import "./index.css";
|
||||||
|
import { useCallback, useEffect, useRef, useState } from "react";
|
||||||
|
import type { Frame } from "../../src/electron/backend/schema.d.ts";
|
||||||
|
import dayjs from "dayjs";
|
||||||
|
import relativeTime from "dayjs/plugin/relativeTime";
|
||||||
|
import localizedFormat from "dayjs/plugin/localizedFormat";
|
||||||
|
import updateLocale from "dayjs/plugin/updateLocale";
|
||||||
|
import { useAtomValue } from "jotai";
|
||||||
|
import { apiInfoAtom } from "src/renderer/state/apiInfo.ts";
|
||||||
|
|
||||||
export default function RewindPage() {
|
dayjs.extend(relativeTime);
|
||||||
|
dayjs.extend(localizedFormat);
|
||||||
|
dayjs.extend(updateLocale);
|
||||||
|
dayjs.updateLocale("en", {
|
||||||
|
relativeTime: {
|
||||||
|
future: "in %s",
|
||||||
|
past: "%s ago",
|
||||||
|
s: "%d seconds",
|
||||||
|
m: "1 minute",
|
||||||
|
mm: "%d minutes",
|
||||||
|
h: "1 hour",
|
||||||
|
hh: "%d hours",
|
||||||
|
d: "1 day",
|
||||||
|
dd: "%d days",
|
||||||
|
M: "1 month",
|
||||||
|
MM: "%d months",
|
||||||
|
y: "1 year",
|
||||||
|
yy: "%d years"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
function Image({ src }: { src: string }) {
|
||||||
return (
|
return (
|
||||||
<>
|
<img
|
||||||
<div className="w-screen h-screen relative dark:text-white">
|
src={src}
|
||||||
|
alt="Current frame"
|
||||||
</div>
|
className="w-full h-full object-contain absolute inset-0"
|
||||||
</>
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: Memory optimization
|
||||||
|
export default function RewindPage() {
|
||||||
|
const { port, apiKey } = useAtomValue(apiInfoAtom);
|
||||||
|
const [timeline, setTimeline] = useState<Frame[]>([]);
|
||||||
|
const [currentFrameId, setCurrentFrameId] = useState<number | null>(null);
|
||||||
|
const [images, setImages] = useState<Record<number, string>>({});
|
||||||
|
const [isLoadingMore, setIsLoadingMore] = useState(false);
|
||||||
|
const containerRef = useRef<HTMLDivElement>(null);
|
||||||
|
const lastAvaliableFrameId = useRef<number | null>(null);
|
||||||
|
const timeoutRef = useRef<NodeJS.Timeout | null>(null);
|
||||||
|
const updatedTimes = useRef<number>(0);
|
||||||
|
|
||||||
|
const loadingQueue = useRef<number[]>([]);
|
||||||
|
const isProcessingQueue = useRef(false);
|
||||||
|
|
||||||
|
const processQueue = useCallback(async () => {
|
||||||
|
if (!port || isProcessingQueue.current || loadingQueue.current.length === 0) return;
|
||||||
|
|
||||||
|
isProcessingQueue.current = true;
|
||||||
|
const frameId = loadingQueue.current.shift()!;
|
||||||
|
|
||||||
|
try {
|
||||||
|
const startUpdateTimes = updatedTimes.current;
|
||||||
|
const response = await fetch(`http://localhost:${port}/frame/${frameId}`, {
|
||||||
|
headers: {
|
||||||
|
"x-api-key": apiKey
|
||||||
|
}
|
||||||
|
});
|
||||||
|
const blob = await response.blob();
|
||||||
|
const url = URL.createObjectURL(blob);
|
||||||
|
setImages((prev) => {
|
||||||
|
const newImages = { ...prev, [frameId]: url };
|
||||||
|
if (updatedTimes.current <= startUpdateTimes) {
|
||||||
|
lastAvaliableFrameId.current = frameId;
|
||||||
|
updatedTimes.current++;
|
||||||
|
}
|
||||||
|
return newImages;
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
} finally {
|
||||||
|
isProcessingQueue.current = false;
|
||||||
|
setTimeout(() => {
|
||||||
|
processQueue();
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
|
}, [apiKey, port]);
|
||||||
|
|
||||||
|
const loadImage = useCallback(
|
||||||
|
(frameId: number) => {
|
||||||
|
if (!port || images[frameId]) return;
|
||||||
|
|
||||||
|
// Add to queue if not already in it
|
||||||
|
if (!loadingQueue.current.includes(frameId)) {
|
||||||
|
loadingQueue.current.push(frameId);
|
||||||
|
// preserve up to 5 tasks in the queue
|
||||||
|
loadingQueue.current = loadingQueue.current.slice(-5);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Start processing if not already running
|
||||||
|
if (!isProcessingQueue.current) {
|
||||||
|
processQueue();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[images, port, processQueue]
|
||||||
|
);
|
||||||
|
|
||||||
|
// Load current frame after 400ms of inactivity
|
||||||
|
useEffect(() => {
|
||||||
|
if (timeoutRef.current) {
|
||||||
|
clearTimeout(timeoutRef.current);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (currentFrameId) {
|
||||||
|
timeoutRef.current = setTimeout(() => {
|
||||||
|
loadImage(currentFrameId);
|
||||||
|
}, 400);
|
||||||
|
}
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
if (timeoutRef.current) {
|
||||||
|
clearTimeout(timeoutRef.current);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}, [currentFrameId, loadImage]);
|
||||||
|
|
||||||
|
// Fetch timeline data
|
||||||
|
const fetchTimeline = useCallback(
|
||||||
|
async (untilID?: number) => {
|
||||||
|
if (!port) return;
|
||||||
|
try {
|
||||||
|
const url = new URL(`http://localhost:${port}/timeline`);
|
||||||
|
if (untilID) {
|
||||||
|
url.searchParams.set("untilID", untilID.toString());
|
||||||
|
}
|
||||||
|
|
||||||
|
const response = await fetch(url.toString(), {
|
||||||
|
headers: {
|
||||||
|
"x-api-key": apiKey
|
||||||
|
}
|
||||||
|
});
|
||||||
|
const data = await response.json();
|
||||||
|
setTimeline((prev) => (untilID ? [...prev, ...data] : data));
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
[port, apiKey]
|
||||||
|
);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
fetchTimeline();
|
||||||
|
}, [fetchTimeline]);
|
||||||
|
|
||||||
|
// Load initial images
|
||||||
|
useEffect(() => {
|
||||||
|
if (timeline.length > 0 && !currentFrameId) {
|
||||||
|
setCurrentFrameId(timeline[0].id);
|
||||||
|
loadImage(timeline[0].id);
|
||||||
|
if (timeline.length > 1) {
|
||||||
|
loadImage(timeline[1].id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, [timeline, currentFrameId, loadImage]);
|
||||||
|
|
||||||
|
const lastScrollTime = useRef(Date.now());
|
||||||
|
|
||||||
|
const handleScroll = (e: React.WheelEvent) => {
|
||||||
|
if (!containerRef.current || !currentFrameId) return;
|
||||||
|
|
||||||
|
// Only allow scroll changes every 30ms
|
||||||
|
const now = Date.now();
|
||||||
|
if (now - lastScrollTime.current < 30) return;
|
||||||
|
lastScrollTime.current = now;
|
||||||
|
|
||||||
|
const delta = Math.sign(e.deltaY);
|
||||||
|
const currentIndex = timeline.findIndex((frame) => frame.id === currentFrameId);
|
||||||
|
if (currentIndex === -1) return;
|
||||||
|
|
||||||
|
const newIndex = Math.min(Math.max(currentIndex - delta, 0), timeline.length - 1);
|
||||||
|
const newFrameId = timeline[newIndex].id;
|
||||||
|
|
||||||
|
if (newFrameId !== currentFrameId) {
|
||||||
|
setCurrentFrameId(newFrameId);
|
||||||
|
// Preload adjacent images
|
||||||
|
if (newIndex > 0) loadImage(timeline[newIndex - 1].id);
|
||||||
|
if (newIndex < timeline.length - 1) loadImage(timeline[newIndex + 1].id);
|
||||||
|
|
||||||
|
// Load more timeline data when we're near the end
|
||||||
|
if (newIndex > timeline.length - 10 && !isLoadingMore) {
|
||||||
|
setIsLoadingMore(true);
|
||||||
|
const lastID = timeline[timeline.length - 1].id;
|
||||||
|
fetchTimeline(lastID).finally(() => setIsLoadingMore(false));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
function displayTime(time: number) {
|
||||||
|
// if diff < 1h, fromNow()
|
||||||
|
// else use localized format
|
||||||
|
const diff = dayjs().diff(dayjs.unix(time), "second");
|
||||||
|
if (diff < 3600) {
|
||||||
|
return dayjs.unix(time).fromNow();
|
||||||
|
} else {
|
||||||
|
return dayjs.unix(time).format("llll");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
ref={containerRef}
|
||||||
|
className="w-screen h-screen relative dark:text-white overflow-hidden bg-black"
|
||||||
|
onWheel={handleScroll}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src={currentFrameId
|
||||||
|
? images[currentFrameId] ||
|
||||||
|
(lastAvaliableFrameId.current ? images[lastAvaliableFrameId.current] : "")
|
||||||
|
: ""}
|
||||||
|
alt="background"
|
||||||
|
className="w-full h-full object-cover absolute inset-0 blur-lg"
|
||||||
|
/>
|
||||||
|
|
||||||
|
|
||||||
|
{/* Current image */}
|
||||||
|
<Image
|
||||||
|
src={
|
||||||
|
currentFrameId
|
||||||
|
? images[currentFrameId] ||
|
||||||
|
(lastAvaliableFrameId.current ? images[lastAvaliableFrameId.current] : "")
|
||||||
|
: ""
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
{/* Time capsule */}
|
||||||
|
<div
|
||||||
|
className="absolute bottom-8 left-8 bg-zinc-800 text-white bg-opacity-80 backdrop-blur-lg
|
||||||
|
rounded-full px-4 py-2 text-xl"
|
||||||
|
>
|
||||||
|
{currentFrameId
|
||||||
|
? displayTime(
|
||||||
|
timeline.find((frame) => frame.id === currentFrameId)!.createdAt
|
||||||
|
) || "Loading..."
|
||||||
|
: "Loading..."}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
user-select: none;
|
user-select: none;
|
||||||
}
|
}
|
||||||
#settings-note a {
|
#settings-note a {
|
||||||
@apply text-blue-700 dark:text-[#66ccff]
|
@apply text-blue-700 dark:text-[#66ccff];
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-weaken {
|
.text-weaken {
|
||||||
|
@ -36,7 +36,7 @@ function TitleBar() {
|
|||||||
<div
|
<div
|
||||||
className="z-50 absolute right-2.5 top-2.5 bg-red-500 hover:bg-rose-400 h-3 w-3 rounded-full"
|
className="z-50 absolute right-2.5 top-2.5 bg-red-500 hover:bg-rose-400 h-3 w-3 rounded-full"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
console.log(window.settingsWindow)
|
console.log(window.settingsWindow);
|
||||||
window.settingsWindow.close();
|
window.settingsWindow.close();
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
8338
pnpm-lock.yaml
8338
pnpm-lock.yaml
File diff suppressed because it is too large
Load Diff
3
src/electron/backend/consts.ts
Normal file
3
src/electron/backend/consts.ts
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
export const RECORD_FRAME_RATE = 0.5;
|
||||||
|
export const ENCODING_FRAME_RATE = 30;
|
||||||
|
export const ENCODING_FRAME_INTERVAL = 1 / ENCODING_FRAME_RATE;
|
@ -1,58 +1,77 @@
|
|||||||
import { Database } from "better-sqlite3";
|
import { exec } from "child_process";
|
||||||
import { exec, spawnSync } from "child_process";
|
|
||||||
import fs from "fs";
|
import fs from "fs";
|
||||||
import path, { join } from "path";
|
import path, { join } from "path";
|
||||||
import type { EncodingTask, Frame } from "./schema";
|
import type { EncodingTask, Frame } from "./schema";
|
||||||
import sizeOf from "image-size";
|
import sizeOf from "image-size";
|
||||||
import { getEncodingTempDir, getRecordingsDir, getScreenshotsDir } from "../utils/backend.js";
|
import { getEncodeCommand } from "../utils/index.js";
|
||||||
|
import { getRecordingsDir, getEncodingTempDir, getScreenshotsDir } from "../utils/index.js";
|
||||||
import cache from "memory-cache";
|
import cache from "memory-cache";
|
||||||
|
import { ENCODING_FRAME_INTERVAL, RECORD_FRAME_RATE as FRAME_RATE } from "./consts.js";
|
||||||
|
import { getDatabase } from "../utils/index.js";
|
||||||
|
|
||||||
const ENCODING_INTERVAL = 10000; // 10 sec
|
const THREE_MINUTES = 180;
|
||||||
const CHECK_TASK_INTERVAL = 5000; // 5 sec
|
const MIN_FRAMES_TO_ENCODE = THREE_MINUTES * FRAME_RATE;
|
||||||
const MIN_FRAMES_TO_ENCODE = 60; // At least 10 mins (0.5fps)
|
const CONCURRENCY = 1;
|
||||||
const CONCURRENCY = 1; // Number of concurrent encoding tasks
|
|
||||||
|
|
||||||
// Detect and insert encoding tasks
|
// Detect and insert encoding tasks
|
||||||
export function checkFramesForEncoding(db: Database) {
|
export function checkFramesForEncoding() {
|
||||||
|
const db = getDatabase();
|
||||||
const stmt = db.prepare(`
|
const stmt = db.prepare(`
|
||||||
SELECT id, imgFilename, createdAt
|
SELECT id, imgFilename, createdAt
|
||||||
FROM frame
|
FROM frame
|
||||||
WHERE encodeStatus = 0
|
WHERE encodeStatus = 0
|
||||||
ORDER BY createdAt ASC;
|
AND imgFilename IS NOT NULL
|
||||||
|
ORDER BY createdAt;
|
||||||
`);
|
`);
|
||||||
const frames = stmt.all() as Frame[];
|
const frames = stmt.all() as Frame[];
|
||||||
|
|
||||||
const buffer: Frame[] = [];
|
const buffer: Frame[] = [];
|
||||||
|
|
||||||
if (frames.length < MIN_FRAMES_TO_ENCODE) return;
|
|
||||||
|
|
||||||
for (let i = 1; i < frames.length; i++) {
|
for (let i = 1; i < frames.length; i++) {
|
||||||
const frame = frames[i];
|
const frame = frames[i];
|
||||||
const lastFrame = frames[i - 1];
|
const lastFrame = frames[i - 1];
|
||||||
const currentFrameSize = sizeOf(join(getScreenshotsDir(), frame.imgFilename));
|
const framePath = join(getScreenshotsDir(), frame.imgFilename!);
|
||||||
const lastFrameSize = sizeOf(join(getScreenshotsDir(), lastFrame.imgFilename));
|
const lastFramePath = join(getScreenshotsDir(), lastFrame.imgFilename!);
|
||||||
|
if (!fs.existsSync(framePath)) {
|
||||||
|
console.warn("File not exist:", frame.imgFilename);
|
||||||
|
deleteFrameFromDB(frame.id);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (!fs.existsSync(lastFramePath)) {
|
||||||
|
console.warn("File not exist:", lastFrame.imgFilename);
|
||||||
|
deleteFrameFromDB(lastFrame.id);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
const currentFrameSize = sizeOf(framePath);
|
||||||
|
const lastFrameSize = sizeOf(lastFramePath);
|
||||||
const twoFramesHaveSameSize =
|
const twoFramesHaveSameSize =
|
||||||
currentFrameSize.width === lastFrameSize.width
|
currentFrameSize.width === lastFrameSize.width &&
|
||||||
&& currentFrameSize.height === lastFrameSize.height;
|
currentFrameSize.height === lastFrameSize.height;
|
||||||
const bufferIsBigEnough = buffer.length >= MIN_FRAMES_TO_ENCODE;
|
const bufferIsBigEnough = buffer.length >= MIN_FRAMES_TO_ENCODE;
|
||||||
const chunkConditionSatisfied = !twoFramesHaveSameSize || bufferIsBigEnough;
|
const chunkConditionSatisfied = !twoFramesHaveSameSize || bufferIsBigEnough;
|
||||||
buffer.push(lastFrame);
|
buffer.push(lastFrame);
|
||||||
if (chunkConditionSatisfied) {
|
if (chunkConditionSatisfied) {
|
||||||
// Create new encoding task
|
// Create new encoding task
|
||||||
const taskStmt = db.prepare(`
|
const taskStmt = db.prepare(`
|
||||||
INSERT INTO encoding_task (status) VALUES (0);
|
INSERT INTO encoding_task (status)
|
||||||
|
VALUES (0);
|
||||||
`);
|
`);
|
||||||
const taskId = taskStmt.run().lastInsertRowid;
|
const taskId = taskStmt.run().lastInsertRowid;
|
||||||
|
|
||||||
// Insert frames into encoding_task_data
|
// Insert frames into encoding_task_data
|
||||||
const insertStmt = db.prepare(`
|
const insertStmt = db.prepare(`
|
||||||
INSERT INTO encoding_task_data (encodingTaskID, frame) VALUES (?, ?);
|
INSERT INTO encoding_task_data (encodingTaskID, frame)
|
||||||
|
VALUES (?, ?);
|
||||||
`);
|
`);
|
||||||
for (const frame of buffer) {
|
for (const frame of buffer) {
|
||||||
insertStmt.run(taskId, frame.id);
|
insertStmt.run(taskId, frame.id);
|
||||||
db.prepare(`
|
db.prepare(
|
||||||
UPDATE frame SET encodeStatus = 1 WHERE id = ?;
|
`
|
||||||
`).run(frame.id);
|
UPDATE frame
|
||||||
|
SET encodeStatus = 1
|
||||||
|
WHERE id = ?;
|
||||||
|
`
|
||||||
|
).run(frame.id);
|
||||||
}
|
}
|
||||||
console.log(`Created encoding task ${taskId} with ${buffer.length} frames`);
|
console.log(`Created encoding task ${taskId} with ${buffer.length} frames`);
|
||||||
buffer.length = 0;
|
buffer.length = 0;
|
||||||
@ -60,30 +79,92 @@ export function checkFramesForEncoding(db: Database) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function deleteEncodedScreenshots(db: Database) {
|
function deleteEncodedScreenshots() {
|
||||||
|
const db = getDatabase();
|
||||||
|
// TODO: double-check that the frame was really encoded into the video
|
||||||
const stmt = db.prepare(`
|
const stmt = db.prepare(`
|
||||||
SELECT * FROM frame WHERE encodeStatus = 2 AND imgFilename IS NOT NULL;
|
SELECT *
|
||||||
|
FROM frame
|
||||||
|
WHERE encodeStatus = 2
|
||||||
|
AND imgFilename IS NOT NULL;
|
||||||
`);
|
`);
|
||||||
const frames = stmt.all() as Frame[];
|
const frames = stmt.all() as Frame[];
|
||||||
for (const frame of frames) {
|
for (const frame of frames) {
|
||||||
fs.unlinkSync(path.join(getScreenshotsDir(), frame.imgFilename));
|
const imgPath = path.join(getScreenshotsDir(), frame.imgFilename!);
|
||||||
|
if (fs.existsSync(imgPath)) {
|
||||||
|
fs.unlinkSync(imgPath);
|
||||||
|
}
|
||||||
const updateStmt = db.prepare(`
|
const updateStmt = db.prepare(`
|
||||||
UPDATE frame SET imgFilename = NULL WHERE id = ?;
|
UPDATE frame
|
||||||
|
SET imgFilename = NULL
|
||||||
|
WHERE id = ?;
|
||||||
`);
|
`);
|
||||||
updateStmt.run(frame.id);
|
updateStmt.run(frame.id);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function _deleteNonExistentScreenshots() {
|
||||||
|
const db = getDatabase();
|
||||||
|
const screenshotDir = getScreenshotsDir();
|
||||||
|
const filesInDir = new Set(fs.readdirSync(screenshotDir));
|
||||||
|
|
||||||
|
const dbStmt = db.prepare(`
|
||||||
|
SELECT imgFilename
|
||||||
|
FROM frame
|
||||||
|
WHERE imgFilename IS NOT NULL;
|
||||||
|
`);
|
||||||
|
const dbFiles = dbStmt.all() as { imgFilename: string }[];
|
||||||
|
const dbFileSet = new Set(dbFiles.map((f) => f.imgFilename));
|
||||||
|
|
||||||
|
for (const filename of filesInDir) {
|
||||||
|
if (!dbFileSet.has(filename)) {
|
||||||
|
//fs.unlinkSync(path.join(screenshotDir, filename));
|
||||||
|
console.log("[dry-run] delete:", filename);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function deleteUnnecessaryScreenshots() {
|
||||||
|
deleteEncodedScreenshots();
|
||||||
|
//deleteNonExistentScreenshots();
|
||||||
|
}
|
||||||
|
|
||||||
|
export function deleteFrameFromDB(id: number) {
|
||||||
|
const db = getDatabase();
|
||||||
|
const deleteStmt = db.prepare(`
|
||||||
|
DELETE
|
||||||
|
FROM frame
|
||||||
|
WHERE id = ?;
|
||||||
|
`);
|
||||||
|
deleteStmt.run(id);
|
||||||
|
console.log(`Deleted frame ${id} from database`);
|
||||||
|
}
|
||||||
|
|
||||||
|
function getTasksPerforming() {
|
||||||
|
return (cache.get("backend:encodingTasksPerforming") as string[]) || [];
|
||||||
|
}
|
||||||
|
|
||||||
|
function createMetaFile(frames: Frame[]) {
|
||||||
|
return frames
|
||||||
|
.map((frame) => {
|
||||||
|
if (!frame.imgFilename) return "";
|
||||||
|
const framePath = join(getScreenshotsDir(), frame.imgFilename);
|
||||||
|
const duration = ENCODING_FRAME_INTERVAL.toFixed(5);
|
||||||
|
return `file '${framePath}'\nduration ${duration}`;
|
||||||
|
})
|
||||||
|
.join("\n");
|
||||||
|
}
|
||||||
|
|
||||||
// Check and process encoding task
|
// Check and process encoding task
|
||||||
export function processEncodingTasks(db: Database) {
|
export function processEncodingTasks() {
|
||||||
const tasksPerforming = cache.get("tasksPerforming") as string[] || [];
|
const db = getDatabase();
|
||||||
|
let tasksPerforming = getTasksPerforming();
|
||||||
if (tasksPerforming.length >= CONCURRENCY) return;
|
if (tasksPerforming.length >= CONCURRENCY) return;
|
||||||
|
|
||||||
const stmt = db.prepare(`
|
const stmt = db.prepare(`
|
||||||
SELECT id, status
|
SELECT id, status
|
||||||
FROM encoding_task
|
FROM encoding_task
|
||||||
WHERE status = 0
|
WHERE status = 0 LIMIT ?
|
||||||
LIMIT ?
|
|
||||||
`);
|
`);
|
||||||
|
|
||||||
const tasks = stmt.all(CONCURRENCY - tasksPerforming.length) as EncodingTask[];
|
const tasks = stmt.all(CONCURRENCY - tasksPerforming.length) as EncodingTask[];
|
||||||
@ -95,7 +176,9 @@ export function processEncodingTasks(db: Database) {
|
|||||||
|
|
||||||
// Update task status as processing (1)
|
// Update task status as processing (1)
|
||||||
const updateStmt = db.prepare(`
|
const updateStmt = db.prepare(`
|
||||||
UPDATE encoding_task SET status = 1 WHERE id = ?
|
UPDATE encoding_task
|
||||||
|
SET status = 1
|
||||||
|
WHERE id = ?
|
||||||
`);
|
`);
|
||||||
updateStmt.run(taskId);
|
updateStmt.run(taskId);
|
||||||
|
|
||||||
@ -104,19 +187,19 @@ export function processEncodingTasks(db: Database) {
|
|||||||
FROM encoding_task_data
|
FROM encoding_task_data
|
||||||
JOIN frame ON encoding_task_data.frame = frame.id
|
JOIN frame ON encoding_task_data.frame = frame.id
|
||||||
WHERE encoding_task_data.encodingTaskID = ?
|
WHERE encoding_task_data.encodingTaskID = ?
|
||||||
ORDER BY frame.createdAt ASC
|
ORDER BY frame.createdAt
|
||||||
`);
|
`);
|
||||||
const frames = framesStmt.all(taskId) as Frame[];
|
const frames = framesStmt.all(taskId) as Frame[];
|
||||||
|
|
||||||
const metaFilePath = path.join(getEncodingTempDir(), `${taskId}_meta.txt`);
|
const metaFilePath = path.join(getEncodingTempDir(), `${taskId}_meta.txt`);
|
||||||
const metaContent = frames.map(frame => `file '${path.join(getScreenshotsDir(), frame.imgFilename)}'\nduration 0.03333`).join("\n");
|
const metaContent = createMetaFile(frames);
|
||||||
fs.writeFileSync(metaFilePath, metaContent);
|
fs.writeFileSync(metaFilePath, metaContent);
|
||||||
cache.put("tasksPerforming", [...tasksPerforming, taskId.toString()]);
|
cache.put("backend:encodingTasksPerforming", [...tasksPerforming, taskId.toString()]);
|
||||||
|
|
||||||
const videoPath = path.join(getRecordingsDir(), `${taskId}.mp4`);
|
const videoPath = path.join(getRecordingsDir(), `${taskId}.mp4`);
|
||||||
const ffmpegCommand = `ffmpeg -f concat -safe 0 -i "${metaFilePath}" -c:v libx264 -r 30 "${videoPath}"`;
|
const ffmpegCommand = getEncodeCommand(metaFilePath, videoPath);
|
||||||
console.log("FFMPEG", ffmpegCommand);
|
console.log("FFMPEG", ffmpegCommand);
|
||||||
exec(ffmpegCommand, (error, stdout, stderr) => {
|
exec(ffmpegCommand, (error, _stdout, _stderr) => {
|
||||||
if (error) {
|
if (error) {
|
||||||
console.error(`FFmpeg error: ${error.message}`);
|
console.error(`FFmpeg error: ${error.message}`);
|
||||||
// Roll back transaction
|
// Roll back transaction
|
||||||
@ -125,20 +208,29 @@ export function processEncodingTasks(db: Database) {
|
|||||||
console.log(`Video ${videoPath} created successfully`);
|
console.log(`Video ${videoPath} created successfully`);
|
||||||
// Update task status to complete (2)
|
// Update task status to complete (2)
|
||||||
const completeStmt = db.prepare(`
|
const completeStmt = db.prepare(`
|
||||||
UPDATE encoding_task SET status = 2 WHERE id = ?
|
UPDATE encoding_task
|
||||||
|
SET status = 2
|
||||||
|
WHERE id = ?
|
||||||
`);
|
`);
|
||||||
completeStmt.run(taskId);
|
completeStmt.run(taskId);
|
||||||
for (let frameIndex = 0; frameIndex < frames.length; frameIndex++) {
|
for (let frameIndex = 0; frameIndex < frames.length; frameIndex++) {
|
||||||
const frame = frames[frameIndex];
|
const frame = frames[frameIndex];
|
||||||
const updateFrameStmt = db.prepare(`
|
const updateFrameStmt = db.prepare(`
|
||||||
UPDATE frame SET videoPath = ?, videoFrameIndex = ?, encodeStatus = 2 WHERE id = ?
|
UPDATE frame
|
||||||
|
SET videoPath = ?,
|
||||||
|
videoFrameIndex = ?,
|
||||||
|
encodeStatus = 2
|
||||||
|
WHERE id = ?
|
||||||
`);
|
`);
|
||||||
updateFrameStmt.run(`${taskId}.mp4`, frameIndex, frame.id);
|
updateFrameStmt.run(`${taskId}.mp4`, frameIndex, frame.id);
|
||||||
}
|
}
|
||||||
db.prepare(`COMMIT;`).run();
|
db.prepare(`COMMIT;`).run();
|
||||||
|
|
||||||
}
|
}
|
||||||
cache.put("tasksPerforming", tasksPerforming.filter(id => id !== taskId.toString()));
|
tasksPerforming = getTasksPerforming();
|
||||||
|
cache.put(
|
||||||
|
"backend:encodingTasksPerforming",
|
||||||
|
tasksPerforming.filter((id) => id !== taskId.toString())
|
||||||
|
);
|
||||||
fs.unlinkSync(metaFilePath);
|
fs.unlinkSync(metaFilePath);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -2,25 +2,27 @@ import * as path from "path";
|
|||||||
import { Database } from "better-sqlite3";
|
import { Database } from "better-sqlite3";
|
||||||
import DB from "better-sqlite3";
|
import DB from "better-sqlite3";
|
||||||
import { __dirname } from "../dirname.js";
|
import { __dirname } from "../dirname.js";
|
||||||
import { getDatabaseDir } from "../utils/backend.js";
|
import { getBinDir, getDatabaseDir } from "../utils/index.js";
|
||||||
import { migrate } from "./migrate/index.js";
|
import { migrate } from "./migrate/index.js";
|
||||||
|
|
||||||
function getLibSimpleExtensionPath() {
|
function getLibSimpleExtensionPath() {
|
||||||
switch (process.platform) {
|
switch (process.platform) {
|
||||||
case "win32":
|
case "win32":
|
||||||
return path.join(__dirname, "bin", process.platform, "libsimple", "simple.dll");
|
return path.join(getBinDir(), "libsimple", "simple.dll");
|
||||||
case "darwin":
|
case "darwin":
|
||||||
return path.join(__dirname, "bin", process.platform, "libsimple", "libsimple.dylib");
|
return path.join(getBinDir(), "libsimple", "libsimple.dylib");
|
||||||
case "linux":
|
case "linux":
|
||||||
return path.join(__dirname, "bin", process.platform, "libsimple", "libsimple.so");
|
return path.join(getBinDir(), "libsimple", "libsimple.so");
|
||||||
default:
|
default:
|
||||||
throw new Error("Unsupported platform");
|
throw new Error("Unsupported platform");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function databaseInitialized(db: Database) {
|
function databaseInitialized(db: Database) {
|
||||||
return db.prepare(`SELECT name FROM sqlite_master WHERE type='table' AND name='frame';`).get()
|
return (
|
||||||
!== undefined;
|
db.prepare(`SELECT name FROM sqlite_master WHERE type='table' AND name='frame';`).get() !==
|
||||||
|
undefined
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function init(db: Database) {
|
function init(db: Database) {
|
||||||
@ -140,15 +142,14 @@ function init(db: Database) {
|
|||||||
|
|
||||||
export async function initDatabase() {
|
export async function initDatabase() {
|
||||||
const dbPath = getDatabaseDir();
|
const dbPath = getDatabaseDir();
|
||||||
const db = new DB(dbPath, { verbose: console.log });
|
const db = new DB(dbPath);
|
||||||
const libSimpleExtensionPath = getLibSimpleExtensionPath();
|
const libSimpleExtensionPath = getLibSimpleExtensionPath();
|
||||||
|
|
||||||
db.loadExtension(libSimpleExtensionPath);
|
db.loadExtension(libSimpleExtensionPath);
|
||||||
|
|
||||||
if (!databaseInitialized(db)) {
|
if (!databaseInitialized(db)) {
|
||||||
init(db);
|
init(db);
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
migrate(db);
|
migrate(db);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -12,26 +12,23 @@ function migrateTo(version: number, db: Database) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getVersion(db: Database): number {
|
||||||
|
const stmt = db.prepare(`SELECT value FROM config WHERE key = 'version';`);
|
||||||
|
const data = stmt.get() as { value: string };
|
||||||
|
const version = data.value;
|
||||||
|
return parseInt(version);
|
||||||
|
}
|
||||||
|
|
||||||
export function migrate(db: Database) {
|
export function migrate(db: Database) {
|
||||||
const configTableExists =
|
const configTableExists =
|
||||||
db.prepare(`SELECT name FROM sqlite_master WHERE type='table' AND name='config';`).get()
|
db.prepare(`SELECT name FROM sqlite_master WHERE type='table' AND name='config';`).get() !==
|
||||||
!== undefined;
|
undefined;
|
||||||
if (!configTableExists) {
|
if (!configTableExists) {
|
||||||
migrateToV2(db);
|
migrateToV2(db);
|
||||||
}
|
}
|
||||||
let databaseVersion = parseInt(
|
let databaseVersion = getVersion(db);
|
||||||
(
|
|
||||||
db.prepare(`SELECT value FROM config WHERE key = 'version';`).get() as
|
|
||||||
{ value: any }
|
|
||||||
).value
|
|
||||||
);
|
|
||||||
while (databaseVersion < CURRENT_VERSION) {
|
while (databaseVersion < CURRENT_VERSION) {
|
||||||
migrateTo(databaseVersion, db);
|
migrateTo(databaseVersion, db);
|
||||||
databaseVersion = parseInt(
|
databaseVersion = getVersion(db);
|
||||||
(
|
|
||||||
db.prepare(`SELECT value FROM config WHERE key = 'version';`).get() as
|
|
||||||
{ value: any }
|
|
||||||
).value
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -65,12 +65,11 @@ export function migrateToV2(db: Database) {
|
|||||||
// Before: /Users/username/Library/Application Support/OpenRewind/Record Data/temp/screenshots/1733568609960.jpg
|
// Before: /Users/username/Library/Application Support/OpenRewind/Record Data/temp/screenshots/1733568609960.jpg
|
||||||
// After: 1733568609960.jpg
|
// After: 1733568609960.jpg
|
||||||
const rows = db.prepare("SELECT id, imgFilename FROM frame").all() as OldFrame[];
|
const rows = db.prepare("SELECT id, imgFilename FROM frame").all() as OldFrame[];
|
||||||
rows.forEach(row => {
|
rows.forEach((row) => {
|
||||||
const filename = row.imgFilename.match(/[^\\/]+$/)?.[0];
|
const filename = row.imgFilename.match(/[^\\/]+$/)?.[0];
|
||||||
|
|
||||||
if (filename) {
|
if (filename) {
|
||||||
db.prepare("UPDATE frame SET imgFilename = ? WHERE id = ?")
|
db.prepare("UPDATE frame SET imgFilename = ? WHERE id = ?").run(filename, row.id);
|
||||||
.run(filename, row.id);
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@ function transformEncodingTask(db: Database) {
|
|||||||
const createTableSql = `
|
const createTableSql = `
|
||||||
CREATE TABLE IF NOT EXISTS encoding_task_new (
|
CREATE TABLE IF NOT EXISTS encoding_task_new (
|
||||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||||
createdAt TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
createdAt REAL,
|
||||||
status INT DEFAULT 0
|
status INT DEFAULT 0
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -24,7 +24,10 @@ function transformEncodingTask(db: Database) {
|
|||||||
`;
|
`;
|
||||||
db.exec(createTableSql);
|
db.exec(createTableSql);
|
||||||
|
|
||||||
const rows = db.prepare(`SELECT id, createdAt FROM encoding_task`).all() as { [x: string]: unknown; id: unknown; }[];
|
const rows = db.prepare(`SELECT id, createdAt FROM encoding_task`).all() as {
|
||||||
|
[x: string]: unknown;
|
||||||
|
id: unknown;
|
||||||
|
}[];
|
||||||
const updateStmt = db.prepare(`UPDATE encoding_task SET createdAt_new = ? WHERE id = ?`);
|
const updateStmt = db.prepare(`UPDATE encoding_task SET createdAt_new = ? WHERE id = ?`);
|
||||||
rows.forEach((row) => {
|
rows.forEach((row) => {
|
||||||
const unixTimestamp = convertTimestampToUnix(row.createdAt as string);
|
const unixTimestamp = convertTimestampToUnix(row.createdAt as string);
|
||||||
@ -41,7 +44,7 @@ function transformFrame(db: Database) {
|
|||||||
const createTableSql = `
|
const createTableSql = `
|
||||||
CREATE TABLE frame_new(
|
CREATE TABLE frame_new(
|
||||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||||
createdAt TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
|
createdAt REAL,
|
||||||
imgFilename TEXT,
|
imgFilename TEXT,
|
||||||
segmentID INTEGER NULL,
|
segmentID INTEGER NULL,
|
||||||
videoPath TEXT NULL,
|
videoPath TEXT NULL,
|
||||||
@ -55,10 +58,13 @@ function transformFrame(db: Database) {
|
|||||||
DROP TABLE frame;
|
DROP TABLE frame;
|
||||||
ALTER TABLE frame_new RENAME TO frame;
|
ALTER TABLE frame_new RENAME TO frame;
|
||||||
ALTER TABLE frame ADD COLUMN createdAt_new REAL;
|
ALTER TABLE frame ADD COLUMN createdAt_new REAL;
|
||||||
`
|
`;
|
||||||
db.exec(createTableSql);
|
db.exec(createTableSql);
|
||||||
|
|
||||||
const rows = db.prepare(`SELECT id, createdAt FROM frame`).all() as { [x: string]: unknown; id: unknown; }[];
|
const rows = db.prepare(`SELECT id, createdAt FROM frame`).all() as {
|
||||||
|
[x: string]: unknown;
|
||||||
|
id: unknown;
|
||||||
|
}[];
|
||||||
const updateStmt = db.prepare(`UPDATE frame SET createdAt_new = ? WHERE id = ?`);
|
const updateStmt = db.prepare(`UPDATE frame SET createdAt_new = ? WHERE id = ?`);
|
||||||
rows.forEach((row) => {
|
rows.forEach((row) => {
|
||||||
const unixTimestamp = convertTimestampToUnix(row.createdAt as string);
|
const unixTimestamp = convertTimestampToUnix(row.createdAt as string);
|
||||||
@ -92,7 +98,10 @@ function transformSegments(db: Database) {
|
|||||||
ALTER TABLE segments ADD COLUMN startedAt_new REAL;
|
ALTER TABLE segments ADD COLUMN startedAt_new REAL;
|
||||||
ALTER TABLE segments ADD COLUMN endedAt_new REAL;
|
ALTER TABLE segments ADD COLUMN endedAt_new REAL;
|
||||||
`);
|
`);
|
||||||
const rows = db.prepare(`SELECT id, startedAt, endedAt FROM segments`).all() as { [x: string]: unknown; id: unknown; }[];
|
const rows = db.prepare(`SELECT id, startedAt, endedAt FROM segments`).all() as {
|
||||||
|
[x: string]: unknown;
|
||||||
|
id: unknown;
|
||||||
|
}[];
|
||||||
const updateStart = db.prepare(`UPDATE segments SET startedAt_new = ? WHERE id = ?`);
|
const updateStart = db.prepare(`UPDATE segments SET startedAt_new = ? WHERE id = ?`);
|
||||||
const updateEnd = db.prepare(`UPDATE segments SET endedAt_new = ? WHERE id = ?`);
|
const updateEnd = db.prepare(`UPDATE segments SET endedAt_new = ? WHERE id = ?`);
|
||||||
rows.forEach((row) => {
|
rows.forEach((row) => {
|
||||||
@ -108,8 +117,17 @@ function transformSegments(db: Database) {
|
|||||||
`);
|
`);
|
||||||
}
|
}
|
||||||
|
|
||||||
function renameColumn(tableName: string, oldColumnName: string, newColumnName: string, db: Database) {
|
function renameColumn(
|
||||||
if (db.prepare(`SELECT 1 FROM pragma_table_info(?) WHERE name=?`).get([tableName, oldColumnName])) {
|
tableName: string,
|
||||||
|
oldColumnName: string,
|
||||||
|
newColumnName: string,
|
||||||
|
db: Database
|
||||||
|
) {
|
||||||
|
if (
|
||||||
|
db
|
||||||
|
.prepare(`SELECT 1 FROM pragma_table_info(?) WHERE name=?`)
|
||||||
|
.get([tableName, oldColumnName])
|
||||||
|
) {
|
||||||
db.exec(`ALTER TABLE ${tableName} RENAME COLUMN ${oldColumnName} TO ${newColumnName};`);
|
db.exec(`ALTER TABLE ${tableName} RENAME COLUMN ${oldColumnName} TO ${newColumnName};`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -173,10 +191,10 @@ export function migrateToV3(db: Database) {
|
|||||||
PRAGMA foreign_keys = ON;
|
PRAGMA foreign_keys = ON;
|
||||||
`);
|
`);
|
||||||
|
|
||||||
renameColumn('encoding_task', 'createAt', 'createdAt', db);
|
renameColumn("encoding_task", "createAt", "createdAt", db);
|
||||||
renameColumn('frame', 'createAt', 'createdAt', db);
|
renameColumn("frame", "createAt", "createdAt", db);
|
||||||
renameColumn('segments', 'startAt', 'startedAt', db);
|
renameColumn("segments", "startAt", "startedAt", db);
|
||||||
renameColumn('segments', 'endAt', 'endedAt', db);
|
renameColumn("segments", "endAt", "endedAt", db);
|
||||||
if (db.prepare(`SELECT 1 FROM pragma_table_info('frame') WHERE name='encoded'`).get()) {
|
if (db.prepare(`SELECT 1 FROM pragma_table_info('frame') WHERE name='encoded'`).get()) {
|
||||||
db.prepare(`ALTER TABLE frame DROP COLUMN encoded`).run();
|
db.prepare(`ALTER TABLE frame DROP COLUMN encoded`).run();
|
||||||
}
|
}
|
||||||
|
13
src/electron/backend/recognition.ts
Normal file
13
src/electron/backend/recognition.ts
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
type RecognitionResult = RecognitionLine[];
|
||||||
|
type Pixels = number;
|
||||||
|
type OriginX = Pixels;
|
||||||
|
type OriginY = Pixels;
|
||||||
|
type Width = Pixels;
|
||||||
|
type Height = Pixels;
|
||||||
|
type Coordinates = [OriginX, OriginY, Width, Height];
|
||||||
|
|
||||||
|
interface RecognitionLine {
|
||||||
|
text: string;
|
||||||
|
confidence?: number | number[];
|
||||||
|
position?: Coordinates;
|
||||||
|
}
|
253
src/electron/backend/scheduler.ts
Normal file
253
src/electron/backend/scheduler.ts
Normal file
@ -0,0 +1,253 @@
|
|||||||
|
import osu from "node-os-utils";
|
||||||
|
|
||||||
|
type TaskId = string;
|
||||||
|
type TaskFunction = () => void;
|
||||||
|
|
||||||
|
interface Task {
|
||||||
|
id: TaskId;
|
||||||
|
func: TaskFunction;
|
||||||
|
interval?: number;
|
||||||
|
lastRun?: number;
|
||||||
|
nextRun?: number;
|
||||||
|
isPaused: boolean;
|
||||||
|
delayUntil?: number;
|
||||||
|
requiredSystemState: SystemState;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface TaskStatus {
|
||||||
|
status: "NOT_FOUND" | "PAUSED" | "DELAYED" | "SCHEDULED" | "IDLE";
|
||||||
|
until?: string;
|
||||||
|
nextRun?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
type SystemState = "ANY" | "LOW_POWER" | "IDLE";
|
||||||
|
|
||||||
|
export class Scheduler {
|
||||||
|
private tasks: Map<TaskId, Task> = new Map();
|
||||||
|
private timer: NodeJS.Timeout | null = null;
|
||||||
|
private monitorTimer: NodeJS.Timeout | null = null;
|
||||||
|
private cpuUsage: number = 0;
|
||||||
|
|
||||||
|
constructor(private readonly minTickInterval: number = 500) {
|
||||||
|
this.start();
|
||||||
|
}
|
||||||
|
|
||||||
|
private start(): void {
|
||||||
|
this.scheduleNextTick();
|
||||||
|
this.monitorTimer = setInterval(() => this.monitor(), 1000);
|
||||||
|
}
|
||||||
|
|
||||||
|
private monitor(): void {
|
||||||
|
osu.cpu.usage().then((cpuPercentage) => {
|
||||||
|
this.cpuUsage = cpuPercentage / 100;
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
private scheduleNextTick(): void {
|
||||||
|
if (this.timer) {
|
||||||
|
clearTimeout(this.timer);
|
||||||
|
}
|
||||||
|
|
||||||
|
const now = Date.now();
|
||||||
|
let nextTick = now + this.minTickInterval;
|
||||||
|
|
||||||
|
for (const task of this.tasks.values()) {
|
||||||
|
const isTaskPaused = task.isPaused;
|
||||||
|
const isTaskDelayed = task.delayUntil && now < task.delayUntil;
|
||||||
|
if (isTaskPaused || isTaskDelayed) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
const nextTaskEarlierThanNextTick = task.nextRun && task.nextRun < nextTick;
|
||||||
|
if (nextTaskEarlierThanNextTick) {
|
||||||
|
nextTick = task.nextRun!;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const delay = Math.max(0, nextTick - now);
|
||||||
|
this.timer = setTimeout(() => this.tick(), delay);
|
||||||
|
}
|
||||||
|
|
||||||
|
private tickSingleTask(
|
||||||
|
task: Task,
|
||||||
|
getNextTick: () => number,
|
||||||
|
updateNextTick: (nextTick: number) => void
|
||||||
|
): void {
|
||||||
|
const now = Date.now();
|
||||||
|
const isTaskPaused = task.isPaused;
|
||||||
|
const isTaskDelayed = task.delayUntil && now < task.delayUntil;
|
||||||
|
|
||||||
|
if (isTaskPaused || isTaskDelayed) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const taskRequiredLowPower = task.requiredSystemState === "LOW_POWER";
|
||||||
|
const cpuUsage = this.cpuUsage;
|
||||||
|
const isSystemLowPower = cpuUsage < 0.75;
|
||||||
|
const isTaskReadyForLowPowerRun = taskRequiredLowPower ? isSystemLowPower : true;
|
||||||
|
const reachedTaskNextRun = task.interval && task.nextRun && now >= task.nextRun;
|
||||||
|
const isTaskReadyForIntervalRun = reachedTaskNextRun && isTaskReadyForLowPowerRun;
|
||||||
|
|
||||||
|
if (!isTaskReadyForLowPowerRun) {
|
||||||
|
this.delayTask(task.id, 1000)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isTaskReadyForIntervalRun) {
|
||||||
|
task.func();
|
||||||
|
task.lastRun = now;
|
||||||
|
task.nextRun = now + task.interval!;
|
||||||
|
}
|
||||||
|
|
||||||
|
const isTaskNextRunEarlierThanNextTick = task.nextRun && task.nextRun < getNextTick();
|
||||||
|
if (isTaskNextRunEarlierThanNextTick) {
|
||||||
|
updateNextTick(task.nextRun!);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private tick(): void {
|
||||||
|
const now = Date.now();
|
||||||
|
let nextTick = now + this.minTickInterval;
|
||||||
|
|
||||||
|
for (const task of this.tasks.values()) {
|
||||||
|
this.tickSingleTask(
|
||||||
|
task,
|
||||||
|
() => nextTick,
|
||||||
|
(v) => (nextTick = v)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.scheduleNextTick();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add a new task to the scheduler.
|
||||||
|
*
|
||||||
|
* @param id A unique string identifier for the task.
|
||||||
|
* @param func The function to be executed by the task.
|
||||||
|
* @param interval The interval (in milliseconds) between task executions.
|
||||||
|
* @param requiredSystemState The required system state for the task to run.
|
||||||
|
*/
|
||||||
|
addTask(id: TaskId, func: TaskFunction, interval?: number, requiredSystemState: SystemState = "ANY"): void {
|
||||||
|
this.tasks.set(id, {
|
||||||
|
id,
|
||||||
|
func,
|
||||||
|
interval,
|
||||||
|
isPaused: false,
|
||||||
|
lastRun: undefined,
|
||||||
|
nextRun: interval ? Date.now() + interval : undefined,
|
||||||
|
requiredSystemState: requiredSystemState,
|
||||||
|
});
|
||||||
|
|
||||||
|
this.scheduleNextTick();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Trigger a task to execute immediately, regardless of its current state.
|
||||||
|
*
|
||||||
|
* If the task is paused or delayed, it will not be executed.
|
||||||
|
*
|
||||||
|
* @param id The unique string identifier for the task.
|
||||||
|
*/
|
||||||
|
triggerTask(id: TaskId): void {
|
||||||
|
const task = this.tasks.get(id);
|
||||||
|
if (task && !task.isPaused && (!task.delayUntil || Date.now() >= task.delayUntil)) {
|
||||||
|
task.func();
|
||||||
|
task.lastRun = Date.now();
|
||||||
|
if (task.interval) {
|
||||||
|
task.nextRun = Date.now() + task.interval;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.scheduleNextTick();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Pause a task, so that it will not be executed until it is resumed.
|
||||||
|
*
|
||||||
|
* @param id The unique string identifier for the task.
|
||||||
|
*/
|
||||||
|
pauseTask(id: TaskId): void {
|
||||||
|
const task = this.tasks.get(id);
|
||||||
|
if (task) {
|
||||||
|
task.isPaused = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.scheduleNextTick();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Resume a paused task, so that it can be executed according to its interval.
|
||||||
|
*
|
||||||
|
* @param id The unique string identifier for the task.
|
||||||
|
*/
|
||||||
|
resumeTask(id: TaskId): void {
|
||||||
|
const task = this.tasks.get(id);
|
||||||
|
if (task) {
|
||||||
|
task.isPaused = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.scheduleNextTick();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delay a task from being executed for a specified amount of time.
|
||||||
|
*
|
||||||
|
* @param id The unique string identifier for the task.
|
||||||
|
* @param delayMs The amount of time in milliseconds to delay the task's execution.
|
||||||
|
*/
|
||||||
|
delayTask(id: TaskId, delayMs: number): void {
|
||||||
|
const task = this.tasks.get(id);
|
||||||
|
if (task) {
|
||||||
|
task.delayUntil = Date.now() + delayMs;
|
||||||
|
if (task.nextRun) {
|
||||||
|
task.nextRun += delayMs;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.scheduleNextTick();
|
||||||
|
}
|
||||||
|
|
||||||
|
setTaskInterval(id: TaskId, interval: number): void {
|
||||||
|
const task = this.tasks.get(id);
|
||||||
|
if (task) {
|
||||||
|
task.interval = interval;
|
||||||
|
task.nextRun = Date.now() + interval;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.scheduleNextTick();
|
||||||
|
}
|
||||||
|
|
||||||
|
getTaskStatus(id: TaskId): TaskStatus {
|
||||||
|
const task = this.tasks.get(id);
|
||||||
|
if (!task) {
|
||||||
|
return { status: "NOT_FOUND" };
|
||||||
|
}
|
||||||
|
if (task.isPaused) {
|
||||||
|
return { status: "PAUSED" };
|
||||||
|
}
|
||||||
|
if (task.delayUntil && Date.now() < task.delayUntil) {
|
||||||
|
return {
|
||||||
|
status: "DELAYED",
|
||||||
|
until: new Date(task.delayUntil).toLocaleString()
|
||||||
|
};
|
||||||
|
}
|
||||||
|
if (task.nextRun) {
|
||||||
|
return {
|
||||||
|
status: "SCHEDULED",
|
||||||
|
nextRun: new Date(task.nextRun).toLocaleString()
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return { status: "IDLE" };
|
||||||
|
}
|
||||||
|
|
||||||
|
stop(): void {
|
||||||
|
if (this.timer) {
|
||||||
|
clearTimeout(this.timer);
|
||||||
|
this.timer = null;
|
||||||
|
}
|
||||||
|
if (this.monitorTimer) {
|
||||||
|
clearTimeout(this.monitorTimer);
|
||||||
|
this.monitorTimer = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
3
src/electron/backend/schema.d.ts
vendored
3
src/electron/backend/schema.d.ts
vendored
@ -1,7 +1,7 @@
|
|||||||
export interface Frame {
|
export interface Frame {
|
||||||
id: number;
|
id: number;
|
||||||
createdAt: number;
|
createdAt: number;
|
||||||
imgFilename: string;
|
imgFilename: string | null;
|
||||||
segmentID: number | null;
|
segmentID: number | null;
|
||||||
videoPath: string | null;
|
videoPath: string | null;
|
||||||
videoFrameIndex: number | null;
|
videoFrameIndex: number | null;
|
||||||
@ -9,7 +9,6 @@ export interface Frame {
|
|||||||
encodeStatus: number;
|
encodeStatus: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
export interface EncodingTask {
|
export interface EncodingTask {
|
||||||
id: number;
|
id: number;
|
||||||
createdAt: number;
|
createdAt: number;
|
||||||
|
@ -1,24 +1,23 @@
|
|||||||
import screenshot from "screenshot-desktop";
|
import screenshot from "screenshot-desktop";
|
||||||
import { getScreenshotsDir } from "../utils/backend.js";
|
import { getDatabase, getScreenshotsDir } from "../utils/index.js";
|
||||||
import { join } from "path";
|
import { join } from "path";
|
||||||
import { Database }from "better-sqlite3";
|
|
||||||
import SqlString from "sqlstring";
|
import SqlString from "sqlstring";
|
||||||
|
|
||||||
export function startScreenshotLoop(db: Database) {
|
export function takeScreenshot() {
|
||||||
return setInterval(() => {
|
const db = getDatabase();
|
||||||
const timestamp = new Date().getTime();
|
const timestamp = new Date().getTime();
|
||||||
const screenshotDir = getScreenshotsDir();
|
const screenshotDir = getScreenshotsDir();
|
||||||
const filename = `${timestamp}.png`;
|
const filename = `${timestamp}.png`;
|
||||||
const screenshotPath = join(screenshotDir, filename);
|
const screenshotPath = join(screenshotDir, filename);
|
||||||
screenshot({filename: screenshotPath, format: "png"}).then((absolutePath) => {
|
screenshot({ filename: screenshotPath, format: "png" })
|
||||||
|
.then(() => {
|
||||||
const SQL = SqlString.format(
|
const SQL = SqlString.format(
|
||||||
"INSERT INTO frame (imgFilename, createdAt) VALUES (?, ?)",
|
"INSERT INTO frame (imgFilename, createdAt) VALUES (?, ?)",
|
||||||
[filename, new Date().getTime() / 1000]
|
[filename, new Date().getTime() / 1000]
|
||||||
);
|
);
|
||||||
db.exec(SQL);
|
db.exec(SQL);
|
||||||
}).catch((err) => {
|
})
|
||||||
|
.catch((err) => {
|
||||||
console.error(err);
|
console.error(err);
|
||||||
});
|
});
|
||||||
}, 2000);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@ import { app, BrowserWindow, screen } from "electron";
|
|||||||
import { join } from "path";
|
import { join } from "path";
|
||||||
import { __dirname } from "./dirname.js";
|
import { __dirname } from "./dirname.js";
|
||||||
import windowStateManager from "electron-window-state";
|
import windowStateManager from "electron-window-state";
|
||||||
import { hideDock, showDock } from "./utils/electron.js";
|
import { hideDock, showDock } from "./utils/index.js";
|
||||||
|
|
||||||
function loadURL(window: BrowserWindow, path = "", vitePort: string) {
|
function loadURL(window: BrowserWindow, path = "", vitePort: string) {
|
||||||
const dev = !app.isPackaged;
|
const dev = !app.isPackaged;
|
||||||
@ -10,23 +10,24 @@ function loadURL(window: BrowserWindow, path = "", vitePort: string) {
|
|||||||
window.loadURL(`http://localhost:${vitePort}/#${path}`).catch((e) => {
|
window.loadURL(`http://localhost:${vitePort}/#${path}`).catch((e) => {
|
||||||
console.log("Error loading URL:", e);
|
console.log("Error loading URL:", e);
|
||||||
});
|
});
|
||||||
}
|
} else {
|
||||||
else {
|
window
|
||||||
window.loadFile(join(__dirname, "../renderer/index.html"), {
|
.loadFile(join(__dirname, "../renderer/index.html"), {
|
||||||
hash: path,
|
hash: path
|
||||||
}).catch((e) => {
|
})
|
||||||
|
.catch((e) => {
|
||||||
console.log("Error loading URL:", e);
|
console.log("Error loading URL:", e);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function createSettingsWindow(vitePort: string, closeCallBack: Function) {
|
export function createSettingsWindow(vitePort: string, closeCallBack: () => void) {
|
||||||
const windowState = windowStateManager({
|
const windowState = windowStateManager({
|
||||||
defaultWidth: 650,
|
defaultWidth: 650,
|
||||||
defaultHeight: 550
|
defaultHeight: 550
|
||||||
});
|
});
|
||||||
const enableFrame = process.platform === "darwin";
|
const enableFrame = process.platform === "darwin";
|
||||||
let icon
|
let icon;
|
||||||
switch (process.platform) {
|
switch (process.platform) {
|
||||||
case "darwin":
|
case "darwin":
|
||||||
icon = undefined;
|
icon = undefined;
|
||||||
@ -46,13 +47,13 @@ export function createSettingsWindow(vitePort: string, closeCallBack: Function)
|
|||||||
webPreferences: {
|
webPreferences: {
|
||||||
nodeIntegration: true,
|
nodeIntegration: true,
|
||||||
contextIsolation: true,
|
contextIsolation: true,
|
||||||
preload: join(__dirname, 'preload/settings.cjs')
|
preload: join(__dirname, "preload/settings.cjs")
|
||||||
},
|
},
|
||||||
titleBarStyle: "hiddenInset",
|
titleBarStyle: "hiddenInset",
|
||||||
resizable: false,
|
resizable: false,
|
||||||
show: false,
|
show: false,
|
||||||
frame: enableFrame,
|
frame: enableFrame,
|
||||||
icon: icon,
|
icon: icon
|
||||||
});
|
});
|
||||||
windowState.manage(window);
|
windowState.manage(window);
|
||||||
window.on("show", () => {
|
window.on("show", () => {
|
||||||
@ -62,6 +63,7 @@ export function createSettingsWindow(vitePort: string, closeCallBack: Function)
|
|||||||
window.hide();
|
window.hide();
|
||||||
windowState.saveState(window);
|
windowState.saveState(window);
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
|
closeCallBack();
|
||||||
});
|
});
|
||||||
window.once("close", () => {
|
window.once("close", () => {
|
||||||
window.hide();
|
window.hide();
|
||||||
@ -71,7 +73,7 @@ export function createSettingsWindow(vitePort: string, closeCallBack: Function)
|
|||||||
return window;
|
return window;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function createMainWindow(vitePort: string, closeCallBack: Function) {
|
export function createMainWindow(vitePort: string, closeCallBack: () => void) {
|
||||||
const display = screen.getPrimaryDisplay();
|
const display = screen.getPrimaryDisplay();
|
||||||
const { width, height } = display.bounds;
|
const { width, height } = display.bounds;
|
||||||
const windowState = windowStateManager({
|
const windowState = windowStateManager({
|
||||||
@ -92,17 +94,22 @@ export function createMainWindow(vitePort: string, closeCallBack: Function) {
|
|||||||
webPreferences: {
|
webPreferences: {
|
||||||
nodeIntegration: true,
|
nodeIntegration: true,
|
||||||
contextIsolation: true,
|
contextIsolation: true,
|
||||||
preload: join(__dirname, 'preload/rewind.cjs')
|
preload: join(__dirname, "preload/rewind.cjs")
|
||||||
},
|
},
|
||||||
roundedCorners: false,
|
roundedCorners: false,
|
||||||
transparent: true,
|
transparent: true,
|
||||||
show: false
|
show: false,
|
||||||
|
title: "OpenRewind Rewind Page"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Exclude the window from the recording
|
||||||
|
window.setContentProtection(true);
|
||||||
|
|
||||||
windowState.manage(window);
|
windowState.manage(window);
|
||||||
|
|
||||||
window.on("close", () => {
|
window.on("close", () => {
|
||||||
windowState.saveState(window);
|
windowState.saveState(window);
|
||||||
|
closeCallBack();
|
||||||
});
|
});
|
||||||
window.once("close", () => {
|
window.once("close", () => {
|
||||||
closeCallBack();
|
closeCallBack();
|
||||||
|
@ -4,7 +4,6 @@ import fs from "fs";
|
|||||||
import { app } from "electron";
|
import { app } from "electron";
|
||||||
import { __dirname } from "./dirname.js";
|
import { __dirname } from "./dirname.js";
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Selects the appropriate language based on system preferences and available languages
|
* Selects the appropriate language based on system preferences and available languages
|
||||||
*
|
*
|
||||||
@ -21,7 +20,7 @@ export function detectLanguage(langs: string[], fallback: string): string {
|
|||||||
const normalizedLang = systemLanguage.toLowerCase().split("-")[0];
|
const normalizedLang = systemLanguage.toLowerCase().split("-")[0];
|
||||||
|
|
||||||
// Find a matching language
|
// Find a matching language
|
||||||
const matchedLanguage = langs.find(lang => {
|
const matchedLanguage = langs.find((lang) => {
|
||||||
if (lang.indexOf(normalizedLang) !== -1) {
|
if (lang.indexOf(normalizedLang) !== -1) {
|
||||||
return lang;
|
return lang;
|
||||||
}
|
}
|
||||||
@ -53,4 +52,3 @@ export default function initI18n() {
|
|||||||
});
|
});
|
||||||
return i18n;
|
return i18n;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,24 +1,43 @@
|
|||||||
import { app, BrowserWindow, globalShortcut, ipcMain, Menu, nativeImage, screen, Tray } from "electron";
|
import {
|
||||||
|
app,
|
||||||
|
BrowserWindow,
|
||||||
|
globalShortcut,
|
||||||
|
ipcMain,
|
||||||
|
Menu,
|
||||||
|
nativeImage,
|
||||||
|
screen,
|
||||||
|
Tray
|
||||||
|
} from "electron";
|
||||||
import contextMenu from "electron-context-menu";
|
import contextMenu from "electron-context-menu";
|
||||||
import { join } from "path";
|
import { join } from "path";
|
||||||
import initI18n from "./i18n.js";
|
import initI18n from "./i18n.js";
|
||||||
import { createMainWindow, createSettingsWindow } from "./createWindow.js";
|
import { createMainWindow, createSettingsWindow } from "./createWindow.js";
|
||||||
import { initDatabase } from "./backend/init.js";
|
import { initDatabase } from "./backend/init.js";
|
||||||
import { Database } from "better-sqlite3";
|
import { Database } from "better-sqlite3";
|
||||||
import { startScreenshotLoop } from "./backend/screenshot.js";
|
import { takeScreenshot } from "./backend/screenshot.js";
|
||||||
import { __dirname } from "./dirname.js";
|
import { __dirname } from "./dirname.js";
|
||||||
import { hideDock } from "./utils/electron.js";
|
import { hideDock } from "./utils/index.js";
|
||||||
import { checkFramesForEncoding, deleteEncodedScreenshots, processEncodingTasks } from "./backend/encoding.js";
|
import {
|
||||||
|
checkFramesForEncoding,
|
||||||
|
deleteUnnecessaryScreenshots,
|
||||||
|
processEncodingTasks
|
||||||
|
} from "./backend/encoding.js";
|
||||||
|
import honoApp from "./server/index.js";
|
||||||
|
import { serve } from "@hono/node-server";
|
||||||
|
import { findAvailablePort } from "./utils/index.js";
|
||||||
|
import cache from "memory-cache";
|
||||||
|
import { generate as generateAPIKey } from "@alikia/random-key";
|
||||||
|
import { Scheduler } from "./backend/scheduler.js";
|
||||||
|
|
||||||
const i18n = initI18n();
|
const i18n = initI18n();
|
||||||
|
|
||||||
const t = i18n.t.bind(i18n);
|
const t = i18n.t.bind(i18n);
|
||||||
const port = process.env.PORT || "5173";
|
const port = process.env.PORT || "5173";
|
||||||
const dev = !app.isPackaged;
|
const dev = !app.isPackaged;
|
||||||
|
const scheduler = new Scheduler();
|
||||||
|
|
||||||
let tray: null | Tray = null;
|
let tray: null | Tray = null;
|
||||||
let dbConnection: null | Database = null;
|
let dbConnection: null | Database = null;
|
||||||
let screenshotInterval: null | NodeJS.Timeout = null;
|
|
||||||
|
|
||||||
let mainWindow: BrowserWindow | null;
|
let mainWindow: BrowserWindow | null;
|
||||||
let settingsWindow: BrowserWindow | null;
|
let settingsWindow: BrowserWindow | null;
|
||||||
@ -74,12 +93,29 @@ app.on("activate", () => {});
|
|||||||
|
|
||||||
app.on("ready", () => {
|
app.on("ready", () => {
|
||||||
createTray();
|
createTray();
|
||||||
|
findAvailablePort(12412).then((port) => {
|
||||||
|
generateAPIKey().then((key) => {
|
||||||
|
cache.put("server:port", port);
|
||||||
|
if (!dev) {
|
||||||
|
cache.put("server:APIKey", key);
|
||||||
|
}
|
||||||
|
serve({ fetch: honoApp.fetch, port: port });
|
||||||
|
|
||||||
|
// Send API info to renderer
|
||||||
|
settingsWindow?.webContents.send("api-info", {
|
||||||
|
port,
|
||||||
|
apiKey: key
|
||||||
|
});
|
||||||
|
console.log(`App server running on port ${port}`);
|
||||||
|
});
|
||||||
|
});
|
||||||
initDatabase().then((db) => {
|
initDatabase().then((db) => {
|
||||||
screenshotInterval = startScreenshotLoop(db);
|
scheduler.addTask("screenshot", takeScreenshot, 2000);
|
||||||
setInterval(checkFramesForEncoding, 5000, db);
|
scheduler.addTask("check-encoding", checkFramesForEncoding, 5000);
|
||||||
setInterval(processEncodingTasks, 10000, db);
|
scheduler.addTask("process-encoding", processEncodingTasks, 10000, "LOW_POWER");
|
||||||
setInterval(deleteEncodedScreenshots, 5000, db)
|
scheduler.addTask("delete-screenshots", deleteUnnecessaryScreenshots, 20000);
|
||||||
dbConnection = db;
|
dbConnection = db;
|
||||||
|
cache.put("server:dbConnection", dbConnection);
|
||||||
});
|
});
|
||||||
mainWindow = createMainWindow(port, () => (mainWindow = null));
|
mainWindow = createMainWindow(port, () => (mainWindow = null));
|
||||||
settingsWindow = createSettingsWindow(port, () => (settingsWindow = null));
|
settingsWindow = createSettingsWindow(port, () => (settingsWindow = null));
|
||||||
@ -91,12 +127,16 @@ app.on("ready", () => {
|
|||||||
|
|
||||||
app.on("will-quit", () => {
|
app.on("will-quit", () => {
|
||||||
dbConnection?.close();
|
dbConnection?.close();
|
||||||
|
scheduler.stop();
|
||||||
});
|
});
|
||||||
|
|
||||||
// app.on("window-all-closed", () => {
|
ipcMain.on("close-settings", () => {
|
||||||
// if (process.platform !== "darwin") app.quit();
|
|
||||||
// });
|
|
||||||
|
|
||||||
ipcMain.on('close-settings', () => {
|
|
||||||
settingsWindow?.hide();
|
settingsWindow?.hide();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
ipcMain.handle("request-api-info", () => {
|
||||||
|
return {
|
||||||
|
port: cache.get("server:port"),
|
||||||
|
apiKey: cache.get("server:APIKey")
|
||||||
|
};
|
||||||
|
});
|
||||||
|
@ -1,52 +1,52 @@
|
|||||||
const os = require('node:os');
|
const os = require("node:os");
|
||||||
|
|
||||||
const nameMap = new Map([
|
const nameMap = new Map([
|
||||||
[24, ['Sequoia', '15']],
|
[24, ["Sequoia", "15"]],
|
||||||
[23, ['Sonoma', '14']],
|
[23, ["Sonoma", "14"]],
|
||||||
[22, ['Ventura', '13']],
|
[22, ["Ventura", "13"]],
|
||||||
[21, ['Monterey', '12']],
|
[21, ["Monterey", "12"]],
|
||||||
[20, ['Big Sur', '11']],
|
[20, ["Big Sur", "11"]],
|
||||||
[19, ['Catalina', '10.15']],
|
[19, ["Catalina", "10.15"]],
|
||||||
[18, ['Mojave', '10.14']],
|
[18, ["Mojave", "10.14"]],
|
||||||
[17, ['High Sierra', '10.13']],
|
[17, ["High Sierra", "10.13"]],
|
||||||
[16, ['Sierra', '10.12']],
|
[16, ["Sierra", "10.12"]],
|
||||||
[15, ['El Capitan', '10.11']],
|
[15, ["El Capitan", "10.11"]],
|
||||||
[14, ['Yosemite', '10.10']],
|
[14, ["Yosemite", "10.10"]],
|
||||||
[13, ['Mavericks', '10.9']],
|
[13, ["Mavericks", "10.9"]],
|
||||||
[12, ['Mountain Lion', '10.8']],
|
[12, ["Mountain Lion", "10.8"]],
|
||||||
[11, ['Lion', '10.7']],
|
[11, ["Lion", "10.7"]],
|
||||||
[10, ['Snow Leopard', '10.6']],
|
[10, ["Snow Leopard", "10.6"]],
|
||||||
[9, ['Leopard', '10.5']],
|
[9, ["Leopard", "10.5"]],
|
||||||
[8, ['Tiger', '10.4']],
|
[8, ["Tiger", "10.4"]],
|
||||||
[7, ['Panther', '10.3']],
|
[7, ["Panther", "10.3"]],
|
||||||
[6, ['Jaguar', '10.2']],
|
[6, ["Jaguar", "10.2"]],
|
||||||
[5, ['Puma', '10.1']],
|
[5, ["Puma", "10.1"]]
|
||||||
]);
|
]);
|
||||||
|
|
||||||
const names = new Map([
|
const names = new Map([
|
||||||
['10.0.2', '11'], // It's unclear whether future Windows 11 versions will use this version scheme: https://github.com/sindresorhus/windows-release/pull/26/files#r744945281
|
["10.0.2", "11"], // It's unclear whether future Windows 11 versions will use this version scheme: https://github.com/sindresorhus/windows-release/pull/26/files#r744945281
|
||||||
['10.0', '10'],
|
["10.0", "10"],
|
||||||
['6.3', '8.1'],
|
["6.3", "8.1"],
|
||||||
['6.2', '8'],
|
["6.2", "8"],
|
||||||
['6.1', '7'],
|
["6.1", "7"],
|
||||||
['6.0', 'Vista'],
|
["6.0", "Vista"],
|
||||||
['5.2', 'Server 2003'],
|
["5.2", "Server 2003"],
|
||||||
['5.1', 'XP'],
|
["5.1", "XP"],
|
||||||
['5.0', '2000'],
|
["5.0", "2000"],
|
||||||
['4.90', 'ME'],
|
["4.90", "ME"],
|
||||||
['4.10', '98'],
|
["4.10", "98"],
|
||||||
['4.03', '95'],
|
["4.03", "95"],
|
||||||
['4.00', '95'],
|
["4.00", "95"]
|
||||||
]);
|
]);
|
||||||
|
|
||||||
function macosRelease(release) {
|
function macosRelease(release) {
|
||||||
release = Number((release || os.release()).split('.')[0]);
|
release = Number((release || os.release()).split(".")[0]);
|
||||||
|
|
||||||
const [name, version] = nameMap.get(release) || ['Unknown', ''];
|
const [name, version] = nameMap.get(release) || ["Unknown", ""];
|
||||||
|
|
||||||
return {
|
return {
|
||||||
name,
|
name,
|
||||||
version,
|
version
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -54,14 +54,14 @@ function windowsRelease(release) {
|
|||||||
const version = /(\d+\.\d+)(?:\.(\d+))?/.exec(release || os.release());
|
const version = /(\d+\.\d+)(?:\.(\d+))?/.exec(release || os.release());
|
||||||
|
|
||||||
if (release && !version) {
|
if (release && !version) {
|
||||||
throw new Error('`release` argument doesn\'t match `n.n`');
|
throw new Error("`release` argument doesn't match `n.n`");
|
||||||
}
|
}
|
||||||
|
|
||||||
let ver = version[1] || '';
|
let ver = version[1] || "";
|
||||||
const build = version[2] || '';
|
const build = version[2] || "";
|
||||||
|
|
||||||
if (ver === '10.0' && build.startsWith('2')) {
|
if (ver === "10.0" && build.startsWith("2")) {
|
||||||
ver = '10.0.2';
|
ver = "10.0.2";
|
||||||
}
|
}
|
||||||
|
|
||||||
return names.get(ver);
|
return names.get(ver);
|
||||||
@ -69,47 +69,47 @@ function windowsRelease(release) {
|
|||||||
|
|
||||||
function osName(platform, release) {
|
function osName(platform, release) {
|
||||||
if (!platform && release) {
|
if (!platform && release) {
|
||||||
throw new Error('You can\'t specify a `release` without specifying `platform`');
|
throw new Error("You can't specify a `release` without specifying `platform`");
|
||||||
}
|
}
|
||||||
|
|
||||||
platform = platform ?? os.platform();
|
platform = platform ?? os.platform();
|
||||||
|
|
||||||
let id;
|
let id;
|
||||||
|
|
||||||
if (platform === 'darwin') {
|
if (platform === "darwin") {
|
||||||
if (!release && os.platform() === 'darwin') {
|
if (!release && os.platform() === "darwin") {
|
||||||
release = os.release();
|
release = os.release();
|
||||||
}
|
}
|
||||||
|
|
||||||
const prefix = release ? (Number(release.split('.')[0]) > 15 ? 'macOS' : 'OS X') : 'macOS';
|
const prefix = release ? (Number(release.split(".")[0]) > 15 ? "macOS" : "OS X") : "macOS";
|
||||||
|
|
||||||
try {
|
try {
|
||||||
id = release ? macosRelease(release).name : '';
|
id = release ? macosRelease(release).name : "";
|
||||||
|
|
||||||
if (id === 'Unknown') {
|
if (id === "Unknown") {
|
||||||
return prefix;
|
return prefix;
|
||||||
}
|
}
|
||||||
} catch {}
|
} catch {}
|
||||||
|
|
||||||
return prefix + (id ? ' ' + id : '');
|
return prefix + (id ? " " + id : "");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (platform === 'linux') {
|
if (platform === "linux") {
|
||||||
if (!release && os.platform() === 'linux') {
|
if (!release && os.platform() === "linux") {
|
||||||
release = os.release();
|
release = os.release();
|
||||||
}
|
}
|
||||||
|
|
||||||
id = release ? release.replace(/^(\d+\.\d+).*/, '$1') : '';
|
id = release ? release.replace(/^(\d+\.\d+).*/, "$1") : "";
|
||||||
return 'Linux' + (id ? ' ' + id : '');
|
return "Linux" + (id ? " " + id : "");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (platform === 'win32') {
|
if (platform === "win32") {
|
||||||
if (!release && os.platform() === 'win32') {
|
if (!release && os.platform() === "win32") {
|
||||||
release = os.release();
|
release = os.release();
|
||||||
}
|
}
|
||||||
|
|
||||||
id = release ? windowsRelease(release) : '';
|
id = release ? windowsRelease(release) : "";
|
||||||
return 'Windows' + (id ? ' ' + id : '');
|
return "Windows" + (id ? " " + id : "");
|
||||||
}
|
}
|
||||||
|
|
||||||
return platform;
|
return platform;
|
||||||
|
@ -1,20 +1,5 @@
|
|||||||
const { contextBridge, ipcRenderer } = require("electron");
|
const { contextBridge, ipcRenderer } = require("electron");
|
||||||
|
|
||||||
// Expose protected methods that allow the renderer process to use
|
contextBridge.exposeInMainWorld("appGlobal", {
|
||||||
// the ipcRenderer without exposing the entire object
|
requestApiInfo: () => ipcRenderer.invoke("request-api-info")
|
||||||
contextBridge.exposeInMainWorld("api", {
|
|
||||||
send: (channel, data) => {
|
|
||||||
// whitelist channels
|
|
||||||
let validChannels = ["toMain"];
|
|
||||||
if (validChannels.includes(channel)) {
|
|
||||||
ipcRenderer.send(channel, data);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
receive: (channel, func) => {
|
|
||||||
let validChannels = ["fromMain"];
|
|
||||||
if (validChannels.includes(channel)) {
|
|
||||||
// Deliberately strip event as it includes `sender`
|
|
||||||
ipcRenderer.on(channel, (event, ...args) => func(...args));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
@ -17,3 +17,7 @@ contextBridge.exposeInMainWorld("settingsWindow", {
|
|||||||
ipcRenderer.send("close-settings", {});
|
ipcRenderer.send("close-settings", {});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
contextBridge.exposeInMainWorld("appGlobal", {
|
||||||
|
requestApiInfo: () => ipcRenderer.invoke("request-api-info")
|
||||||
|
});
|
||||||
|
147
src/electron/server/index.ts
Normal file
147
src/electron/server/index.ts
Normal file
@ -0,0 +1,147 @@
|
|||||||
|
import { Hono } from "hono";
|
||||||
|
import { cors } from "hono/cors";
|
||||||
|
import cache from "memory-cache";
|
||||||
|
import { join } from "path";
|
||||||
|
import fs from "fs";
|
||||||
|
import { Database } from "better-sqlite3";
|
||||||
|
import type { Frame } from "../backend/schema";
|
||||||
|
import {
|
||||||
|
getDecodingTempDir,
|
||||||
|
getRecordingsDir,
|
||||||
|
getScreenshotsDir,
|
||||||
|
waitForFileExists
|
||||||
|
} from "../utils/index.js";
|
||||||
|
import { immediatelyExtractFrameFromVideo } from "../utils/index.js";
|
||||||
|
import { existsSync } from "fs";
|
||||||
|
|
||||||
|
const app = new Hono();
|
||||||
|
|
||||||
|
app.use("*", cors());
|
||||||
|
|
||||||
|
app.use(async (c, next) => {
|
||||||
|
const key = cache.get("server:APIKey");
|
||||||
|
if (key && c.req.header("x-api-key") !== key) {
|
||||||
|
c.res = undefined;
|
||||||
|
c.res = c.json({ error: "Invalid API key" }, 401);
|
||||||
|
}
|
||||||
|
await next();
|
||||||
|
});
|
||||||
|
|
||||||
|
app.get("/ping", (c) => c.text("pong"));
|
||||||
|
|
||||||
|
function getLatestFrames(db: Database, limit = 50): Frame[] {
|
||||||
|
return db
|
||||||
|
.prepare(
|
||||||
|
`
|
||||||
|
SELECT id, createdAt, imgFilename, videoPath, videoFrameIndex
|
||||||
|
FROM frame
|
||||||
|
ORDER BY createdAt DESC
|
||||||
|
LIMIT ?
|
||||||
|
`
|
||||||
|
)
|
||||||
|
.all(limit) as Frame[];
|
||||||
|
}
|
||||||
|
|
||||||
|
function getFramesUntilID(db: Database, untilID: number, limit = 50): Frame[] {
|
||||||
|
return db
|
||||||
|
.prepare(
|
||||||
|
`
|
||||||
|
SELECT id, createdAt, imgFilename, videoPath, videoFrameIndex
|
||||||
|
FROM frame
|
||||||
|
WHERE id < ?
|
||||||
|
ORDER BY createdAt DESC
|
||||||
|
LIMIT ?
|
||||||
|
`
|
||||||
|
)
|
||||||
|
.all(untilID, limit) as Frame[];
|
||||||
|
}
|
||||||
|
|
||||||
|
app.get("/timeline", async (c) => {
|
||||||
|
const query = c.req.query();
|
||||||
|
const limit = parseInt(query.limit) || undefined;
|
||||||
|
const db = cache.get("server:dbConnection");
|
||||||
|
if (query.untilID) {
|
||||||
|
return c.json(getFramesUntilID(db, parseInt(query.untilID), limit));
|
||||||
|
} else {
|
||||||
|
return c.json(getLatestFrames(db, limit));
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
app.get("/frame/:id", async (c) => {
|
||||||
|
const { id } = c.req.param();
|
||||||
|
const db: Database = cache.get("server:dbConnection");
|
||||||
|
|
||||||
|
const frame = db
|
||||||
|
.prepare(
|
||||||
|
`
|
||||||
|
SELECT imgFilename, videoPath, videoFrameIndex, createdAt
|
||||||
|
FROM frame
|
||||||
|
WHERE id = ?
|
||||||
|
`
|
||||||
|
)
|
||||||
|
.get(id) as Frame | undefined;
|
||||||
|
|
||||||
|
if (!frame) return c.json({ error: "Frame not found" }, 404);
|
||||||
|
|
||||||
|
const decodingTempDir = getDecodingTempDir();
|
||||||
|
const screenshotsDir = getScreenshotsDir();
|
||||||
|
const videoFilename = frame.videoPath;
|
||||||
|
const frameIndex = frame.videoFrameIndex;
|
||||||
|
const imageFilename = frame.imgFilename;
|
||||||
|
const bareVideoFilename = videoFilename?.replace(".mp4", "") || null;
|
||||||
|
const decodedImage = frameIndex
|
||||||
|
? `${bareVideoFilename}_${frameIndex.toString().padStart(4, "0")}.bmp`
|
||||||
|
: null;
|
||||||
|
let returnImagePath = "";
|
||||||
|
|
||||||
|
let needToBeDecoded = videoFilename !== null && frameIndex !== null && !frame.imgFilename;
|
||||||
|
if (decodedImage && fs.existsSync(join(getDecodingTempDir(), decodedImage))) {
|
||||||
|
needToBeDecoded = false;
|
||||||
|
returnImagePath = join(decodingTempDir, decodedImage);
|
||||||
|
} else if (imageFilename && fs.existsSync(join(screenshotsDir, imageFilename))) {
|
||||||
|
returnImagePath = join(screenshotsDir, imageFilename);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (needToBeDecoded) {
|
||||||
|
const videoExists = fs.existsSync(join(getRecordingsDir(), videoFilename!));
|
||||||
|
|
||||||
|
if (!videoExists) {
|
||||||
|
return c.json({ error: "Video not found" }, { status: 404 });
|
||||||
|
}
|
||||||
|
|
||||||
|
const decodedFilename = immediatelyExtractFrameFromVideo(
|
||||||
|
videoFilename!,
|
||||||
|
frameIndex!,
|
||||||
|
decodingTempDir
|
||||||
|
);
|
||||||
|
const decodedPath = join(decodingTempDir, decodedFilename);
|
||||||
|
|
||||||
|
await waitForFileExists(decodedPath);
|
||||||
|
|
||||||
|
if (existsSync(decodedPath)) {
|
||||||
|
const imageBuffer = fs.readFileSync(decodedPath);
|
||||||
|
setTimeout(() => {
|
||||||
|
fs.unlinkSync(decodedPath);
|
||||||
|
}, 1000);
|
||||||
|
return new Response(imageBuffer, {
|
||||||
|
status: 200,
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "image/bmp"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
return c.json({ error: "Frame cannot be decoded" }, { status: 500 });
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
const imageBuffer = fs.readFileSync(returnImagePath);
|
||||||
|
const imageMimeType = imageFilename?.endsWith(".png") ? "image/png" : "image/jpeg";
|
||||||
|
return new Response(imageBuffer, {
|
||||||
|
status: 200,
|
||||||
|
headers: {
|
||||||
|
"Content-Type": imageMimeType
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
export default app;
|
@ -1,78 +0,0 @@
|
|||||||
import path from "path";
|
|
||||||
import os from "os";
|
|
||||||
import fs from "fs";
|
|
||||||
import { __dirname } from "../dirname.js";
|
|
||||||
|
|
||||||
export function getUserDataDir() {
|
|
||||||
switch (process.platform) {
|
|
||||||
case "win32":
|
|
||||||
return path.join(process.env.APPDATA!, "OpenRewind", "Record Data");
|
|
||||||
case "darwin":
|
|
||||||
return path.join(os.homedir(), "Library", "Application Support", "OpenRewind", "Record Data");
|
|
||||||
case "linux":
|
|
||||||
return path.join(os.homedir(), ".config", "OpenRewind", "Record Data");
|
|
||||||
default:
|
|
||||||
throw new Error("Unsupported platform");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export function createDataDir() {
|
|
||||||
const dataDir = getUserDataDir();
|
|
||||||
if (!fs.existsSync(dataDir)) {
|
|
||||||
fs.mkdirSync(dataDir, { recursive: true });
|
|
||||||
}
|
|
||||||
return dataDir;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function createTempDir() {
|
|
||||||
const tempDir = path.join(getUserDataDir(), "temp");
|
|
||||||
if (!fs.existsSync(tempDir)) {
|
|
||||||
fs.mkdirSync(tempDir, { recursive: true });
|
|
||||||
}
|
|
||||||
return tempDir;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function getDatabaseDir() {
|
|
||||||
const dataDir = createDataDir();
|
|
||||||
return path.join(dataDir, "main.db");
|
|
||||||
}
|
|
||||||
|
|
||||||
export function getScreenshotsDir() {
|
|
||||||
const tempDir = createTempDir();
|
|
||||||
const screenshotsDir = path.join(tempDir, "screenshots");
|
|
||||||
if (!fs.existsSync(screenshotsDir)) {
|
|
||||||
fs.mkdirSync(screenshotsDir, { recursive: true });
|
|
||||||
}
|
|
||||||
return screenshotsDir;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function getRecordingsDir() {
|
|
||||||
const dataDir = createDataDir();
|
|
||||||
const recordingsDir = path.join(dataDir, "recordings");
|
|
||||||
if (!fs.existsSync(recordingsDir)) {
|
|
||||||
fs.mkdirSync(recordingsDir, { recursive: true });
|
|
||||||
}
|
|
||||||
return path.join(dataDir, "recordings");
|
|
||||||
}
|
|
||||||
|
|
||||||
export function getEncodingTempDir() {
|
|
||||||
const tempDir = createTempDir();
|
|
||||||
const encodingTempDir = path.join(tempDir, "encoding");
|
|
||||||
if (!fs.existsSync(encodingTempDir)) {
|
|
||||||
fs.mkdirSync(encodingTempDir, { recursive: true });
|
|
||||||
}
|
|
||||||
return encodingTempDir;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function getFFmpegPath() {
|
|
||||||
switch (process.platform) {
|
|
||||||
case "win32":
|
|
||||||
return path.join(__dirname, "bin", process.platform, "ffmpeg.exe");
|
|
||||||
case "darwin":
|
|
||||||
return path.join(__dirname, "bin", process.platform, "ffmpeg");
|
|
||||||
case "linux":
|
|
||||||
return path.join(__dirname, "bin", process.platform, "ffmpeg");
|
|
||||||
default:
|
|
||||||
throw new Error("Unsupported platform");
|
|
||||||
}
|
|
||||||
}
|
|
6
src/electron/utils/backend/index.ts
Normal file
6
src/electron/utils/backend/index.ts
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
import { Database } from "better-sqlite3";
|
||||||
|
import cache from "memory-cache";
|
||||||
|
|
||||||
|
export function getDatabase(): Database {
|
||||||
|
return cache.get("server:dbConnection");
|
||||||
|
}
|
@ -1,15 +0,0 @@
|
|||||||
import { app } from "electron";
|
|
||||||
|
|
||||||
export function hideDock(){
|
|
||||||
if (process.platform === 'darwin') {
|
|
||||||
// Hide the dock icon on macOS
|
|
||||||
app.dock.hide();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export function showDock(){
|
|
||||||
if (process.platform === 'darwin') {
|
|
||||||
// Show the dock icon on macOS
|
|
||||||
app.dock.show();
|
|
||||||
}
|
|
||||||
}
|
|
111
src/electron/utils/fs/index.ts
Normal file
111
src/electron/utils/fs/index.ts
Normal file
@ -0,0 +1,111 @@
|
|||||||
|
import path from "path";
|
||||||
|
import fs from "fs";
|
||||||
|
import { getUserDataDir } from "../platform/index.js";
|
||||||
|
import { __dirname } from "../../dirname.js";
|
||||||
|
|
||||||
|
export function createDataDir() {
|
||||||
|
const dataDir = getUserDataDir();
|
||||||
|
if (!fs.existsSync(dataDir)) {
|
||||||
|
fs.mkdirSync(dataDir, { recursive: true });
|
||||||
|
}
|
||||||
|
return dataDir;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function createTempDir() {
|
||||||
|
const tempDir = path.join(getUserDataDir(), "temp");
|
||||||
|
if (!fs.existsSync(tempDir)) {
|
||||||
|
fs.mkdirSync(tempDir, { recursive: true });
|
||||||
|
}
|
||||||
|
return tempDir;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getDatabaseDir() {
|
||||||
|
const dataDir = createDataDir();
|
||||||
|
return path.join(dataDir, "main.db");
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getScreenshotsDir() {
|
||||||
|
const tempDir = createTempDir();
|
||||||
|
const screenshotsDir = path.join(tempDir, "screenshots");
|
||||||
|
if (!fs.existsSync(screenshotsDir)) {
|
||||||
|
fs.mkdirSync(screenshotsDir, { recursive: true });
|
||||||
|
}
|
||||||
|
return screenshotsDir;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getRecordingsDir() {
|
||||||
|
const dataDir = createDataDir();
|
||||||
|
const recordingsDir = path.join(dataDir, "recordings");
|
||||||
|
if (!fs.existsSync(recordingsDir)) {
|
||||||
|
fs.mkdirSync(recordingsDir, { recursive: true });
|
||||||
|
}
|
||||||
|
return path.join(dataDir, "recordings");
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getEncodingTempDir() {
|
||||||
|
const tempDir = createTempDir();
|
||||||
|
const encodingTempDir = path.join(tempDir, "encoding");
|
||||||
|
if (!fs.existsSync(encodingTempDir)) {
|
||||||
|
fs.mkdirSync(encodingTempDir, { recursive: true });
|
||||||
|
}
|
||||||
|
return encodingTempDir;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getDecodingTempDir() {
|
||||||
|
const tempDir = createTempDir();
|
||||||
|
const decodingTempDir = path.join(tempDir, "decoding");
|
||||||
|
if (!fs.existsSync(decodingTempDir)) {
|
||||||
|
fs.mkdirSync(decodingTempDir, { recursive: true });
|
||||||
|
}
|
||||||
|
return decodingTempDir;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getLogDir() {
|
||||||
|
const dataDir = createDataDir();
|
||||||
|
const logDir = path.join(dataDir, "logs");
|
||||||
|
if (!fs.existsSync(logDir)) {
|
||||||
|
fs.mkdirSync(logDir, { recursive: true });
|
||||||
|
}
|
||||||
|
return logDir;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getBinDir() {
|
||||||
|
return path.join(__dirname, "bin");
|
||||||
|
}
|
||||||
|
|
||||||
|
export async function waitForFileExists(filePath: string, timeout: number = 10000): Promise<void> {
|
||||||
|
return new Promise((resolve, reject) => {
|
||||||
|
fs.access(filePath, fs.constants.F_OK, (err) => {
|
||||||
|
if (!err) {
|
||||||
|
resolve();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const dir = path.dirname(filePath);
|
||||||
|
const filename = path.basename(filePath);
|
||||||
|
|
||||||
|
const watcher = fs.watch(dir, (eventType, watchedFilename) => {
|
||||||
|
if (eventType === "rename" && watchedFilename === filename) {
|
||||||
|
fs.access(filePath, fs.constants.F_OK, (err) => {
|
||||||
|
if (!err) {
|
||||||
|
clearTimeout(timeoutId);
|
||||||
|
watcher.close();
|
||||||
|
resolve();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
watcher.on("error", (err) => {
|
||||||
|
clearTimeout(timeoutId);
|
||||||
|
watcher.close();
|
||||||
|
reject(err);
|
||||||
|
});
|
||||||
|
|
||||||
|
const timeoutId = setTimeout(() => {
|
||||||
|
watcher.close();
|
||||||
|
reject(new Error(`Timeout: File ${filePath} did not exist within ${timeout}ms`));
|
||||||
|
}, timeout);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
6
src/electron/utils/index.ts
Normal file
6
src/electron/utils/index.ts
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
export * from "./fs/index.js";
|
||||||
|
export * from "./platform/index.js";
|
||||||
|
export * from "./video/index.js";
|
||||||
|
export * from "./network/index.js";
|
||||||
|
export * from "./logging/index.js";
|
||||||
|
export * from "./backend/index.js";
|
10
src/electron/utils/logging/index.ts
Normal file
10
src/electron/utils/logging/index.ts
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
import pino from "pino";
|
||||||
|
import { join } from "path";
|
||||||
|
import { getLogDir } from "../fs/index.js";
|
||||||
|
|
||||||
|
const logPath = join(getLogDir(), "log.json");
|
||||||
|
const dest = pino.destination(logPath);
|
||||||
|
|
||||||
|
const logger = pino(dest);
|
||||||
|
|
||||||
|
export { logger };
|
17
src/electron/utils/network/index.ts
Normal file
17
src/electron/utils/network/index.ts
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
import { detect } from "detect-port";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds an available port starting from a given port.
|
||||||
|
* @param startingFrom - The port number to start searching from.
|
||||||
|
* @returns A Promise that resolves to the first available port number.
|
||||||
|
*/
|
||||||
|
export async function findAvailablePort(startingFrom: number): Promise<number> {
|
||||||
|
return detect(startingFrom)
|
||||||
|
.then((realPort) => {
|
||||||
|
return realPort; // Return the available port
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.error(`Error detecting port: ${err.message}`);
|
||||||
|
throw err; // Rethrow the error for further handling if needed
|
||||||
|
});
|
||||||
|
}
|
60
src/electron/utils/platform/index.ts
Normal file
60
src/electron/utils/platform/index.ts
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
import { join } from "path";
|
||||||
|
import os from "os";
|
||||||
|
import { app } from "electron";
|
||||||
|
import { getBinDir, logger } from "../index.js";
|
||||||
|
|
||||||
|
export function getUserDataDir() {
|
||||||
|
switch (process.platform) {
|
||||||
|
case "win32":
|
||||||
|
return join(process.env.APPDATA!, "OpenRewind", "Record Data");
|
||||||
|
case "darwin":
|
||||||
|
return join(
|
||||||
|
os.homedir(),
|
||||||
|
"Library",
|
||||||
|
"Application Support",
|
||||||
|
"OpenRewind",
|
||||||
|
"Record Data"
|
||||||
|
);
|
||||||
|
case "linux":
|
||||||
|
return join(os.homedir(), ".config", "OpenRewind", "Record Data");
|
||||||
|
default:
|
||||||
|
throw new Error("Unsupported platform");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function hideDock() {
|
||||||
|
if (process.platform === "darwin") {
|
||||||
|
// Hide the dock icon on macOS
|
||||||
|
app.dock.hide();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function showDock() {
|
||||||
|
if (process.platform === "darwin") {
|
||||||
|
// Show the dock icon on macOS
|
||||||
|
app.dock.show();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getFFmpegPath() {
|
||||||
|
let path = "";
|
||||||
|
switch (process.platform) {
|
||||||
|
case "win32":
|
||||||
|
path = join(getBinDir(), "ffmpeg.exe");
|
||||||
|
break;
|
||||||
|
case "darwin":
|
||||||
|
path = join(getBinDir(), "ffmpeg");
|
||||||
|
break;
|
||||||
|
case "linux":
|
||||||
|
path = join(getBinDir(), "ffmpeg");
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new Error("Unsupported platform");
|
||||||
|
}
|
||||||
|
logger.info("FFmpeg path: %s", path);
|
||||||
|
return path;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getOCRitPath() {
|
||||||
|
const path = join(getBinDir(), "ocrit");
|
||||||
|
}
|
81
src/electron/utils/video/index.ts
Normal file
81
src/electron/utils/video/index.ts
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
import { join } from "path";
|
||||||
|
import { spawn, execSync } from "child_process";
|
||||||
|
import { getRecordingsDir } from "../fs/index.js";
|
||||||
|
import { getFFmpegPath } from "../platform/index.js";
|
||||||
|
import { ENCODING_FRAME_RATE } from "../../backend/consts.js";
|
||||||
|
import cache from "memory-cache";
|
||||||
|
|
||||||
|
function getBestCodec() {
|
||||||
|
const cachedCodec = cache.get("backend:bestCodec");
|
||||||
|
if (cachedCodec) {
|
||||||
|
return cachedCodec;
|
||||||
|
}
|
||||||
|
const codecs = execSync(`${getFFmpegPath()} -codecs`).toString("utf-8");
|
||||||
|
let codec = "";
|
||||||
|
if (codecs.includes("h264_videotoolbox")) {
|
||||||
|
codec = "h264_videotoolbox";
|
||||||
|
} else {
|
||||||
|
codec = "libx264";
|
||||||
|
}
|
||||||
|
cache.put("backend:bestCodec", codec);
|
||||||
|
return codec;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getEncodeCommand(metaFilePath: string, videoPath: string) {
|
||||||
|
const codec = getBestCodec();
|
||||||
|
return `${getFFmpegPath()} -f concat -safe 0 -i "${metaFilePath}" -c:v ${codec} -r ${ENCODING_FRAME_RATE} -y -threads 1 "${videoPath}"`;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function immediatelyExtractFrameFromVideo(
|
||||||
|
videoFilename: string,
|
||||||
|
frameIndex: number,
|
||||||
|
outputPath = "."
|
||||||
|
) {
|
||||||
|
const bareVideoFilename = videoFilename.split(".").slice(0, -1).join(".");
|
||||||
|
const fullVideoPath = join(getRecordingsDir(), videoFilename);
|
||||||
|
const outputFilename = `${bareVideoFilename}_${frameIndex.toString().padStart(4, "0")}.bmp`;
|
||||||
|
const outputPathArg = join(outputPath, outputFilename);
|
||||||
|
const args = [
|
||||||
|
"-ss",
|
||||||
|
`${formatTime(frameIndex / ENCODING_FRAME_RATE)}`,
|
||||||
|
"-i",
|
||||||
|
`${fullVideoPath}`,
|
||||||
|
"-vframes",
|
||||||
|
"1",
|
||||||
|
`${outputPathArg}`
|
||||||
|
];
|
||||||
|
const ffmpeg = spawn(getFFmpegPath(), args);
|
||||||
|
ffmpeg.stdout.on("data", (data) => {
|
||||||
|
console.log(data.toString());
|
||||||
|
});
|
||||||
|
|
||||||
|
ffmpeg.stderr.on("data", (data) => {
|
||||||
|
console.log(data.toString());
|
||||||
|
});
|
||||||
|
ffmpeg.on("exit", (code) => {
|
||||||
|
if (code !== 0) {
|
||||||
|
console.error("Error extracting frame:", code);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
return outputFilename;
|
||||||
|
}
|
||||||
|
|
||||||
|
function formatTime(seconds: number): string {
|
||||||
|
// Calculate hours, minutes, seconds, and milliseconds
|
||||||
|
const hours = Math.floor(seconds / 3600);
|
||||||
|
const minutes = Math.floor((seconds % 3600) / 60);
|
||||||
|
const secs = Math.floor(seconds % 60);
|
||||||
|
const milliseconds = Math.round((seconds % 1) * 1000);
|
||||||
|
|
||||||
|
// Format the output with leading zeros
|
||||||
|
const formattedTime =
|
||||||
|
[
|
||||||
|
String(hours).padStart(2, "0"),
|
||||||
|
String(minutes).padStart(2, "0"),
|
||||||
|
String(secs).padStart(2, "0")
|
||||||
|
].join(":") +
|
||||||
|
"." +
|
||||||
|
String(milliseconds).padStart(3, "0");
|
||||||
|
|
||||||
|
return formattedTime;
|
||||||
|
}
|
10
src/global.d.ts
vendored
10
src/global.d.ts
vendored
@ -8,12 +8,8 @@ interface Window {
|
|||||||
};
|
};
|
||||||
electron: {
|
electron: {
|
||||||
getScreenshot: () => Promise<string>;
|
getScreenshot: () => Promise<string>;
|
||||||
}
|
};
|
||||||
api: {
|
|
||||||
send: (channel: any, data: any) => void,
|
|
||||||
receive: (channel: any, func: any) => void
|
|
||||||
},
|
|
||||||
settingsWindow: {
|
settingsWindow: {
|
||||||
close: () => void,
|
close: () => void;
|
||||||
}
|
};
|
||||||
}
|
}
|
@ -2,9 +2,39 @@ import { HashRouter, Routes, Route } from "react-router-dom";
|
|||||||
import SettingsPage from "pages/settings";
|
import SettingsPage from "pages/settings";
|
||||||
import "./i18n.ts";
|
import "./i18n.ts";
|
||||||
import RewindPage from "pages/rewind";
|
import RewindPage from "pages/rewind";
|
||||||
import './app.css';
|
import "./app.css";
|
||||||
|
import { useEffect } from "react";
|
||||||
|
import { useAtom } from "jotai";
|
||||||
|
import { apiInfoAtom } from "./state/apiInfo.ts";
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
interface Window {
|
||||||
|
appGlobal: {
|
||||||
|
requestApiInfo: () => Promise<{ port: number; apiKey: string }>;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export function App() {
|
export function App() {
|
||||||
|
const [apiInfo, setApiInfo] = useAtom(apiInfoAtom);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const fetchApiInfo = async () => {
|
||||||
|
try {
|
||||||
|
const info = await window.appGlobal.requestApiInfo();
|
||||||
|
setApiInfo(info);
|
||||||
|
} catch (error) {
|
||||||
|
console.error("Failed to fetch API info:", error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
fetchApiInfo();
|
||||||
|
}, [setApiInfo]);
|
||||||
|
|
||||||
|
if (!apiInfo) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="w-screen h-screen">
|
<div className="w-screen h-screen">
|
||||||
<HashRouter>
|
<HashRouter>
|
||||||
|
@ -38,7 +38,7 @@ i18n.use(initReactI18next) // passes i18n down to react-i18next
|
|||||||
},
|
},
|
||||||
ko: {
|
ko: {
|
||||||
translation: ko
|
translation: ko
|
||||||
},
|
}
|
||||||
},
|
},
|
||||||
fallbackLng: "en",
|
fallbackLng: "en",
|
||||||
|
|
||||||
|
6
src/renderer/state/apiInfo.ts
Normal file
6
src/renderer/state/apiInfo.ts
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
import { atom } from 'jotai'
|
||||||
|
|
||||||
|
export const apiInfoAtom = atom({
|
||||||
|
port: -1,
|
||||||
|
apiKey: ''
|
||||||
|
})
|
@ -4,7 +4,7 @@ const config: Config = {
|
|||||||
content: [
|
content: [
|
||||||
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
|
||||||
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
||||||
"./src/**/*.{js,ts,jsx,tsx,mdx}",
|
"./src/**/*.{js,ts,jsx,tsx,mdx}"
|
||||||
],
|
],
|
||||||
theme: {
|
theme: {
|
||||||
extend: {
|
extend: {
|
||||||
|
@ -31,5 +31,5 @@
|
|||||||
"src/global.d.ts",
|
"src/global.d.ts",
|
||||||
"pages/**/*.tsx",
|
"pages/**/*.tsx",
|
||||||
"components/**/*.tsx"
|
"components/**/*.tsx"
|
||||||
],
|
]
|
||||||
}
|
}
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "ESNext",
|
"target": "ESNext",
|
||||||
"module": "ESNext",
|
"module": "ESNext",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "bundler",
|
||||||
"outDir": "./dist/electron",
|
"outDir": "./dist/electron",
|
||||||
"rootDir": "./src/electron",
|
"rootDir": "./src/electron",
|
||||||
"strict": true,
|
"strict": true,
|
||||||
@ -11,8 +11,5 @@
|
|||||||
"forceConsistentCasingInFileNames": true
|
"forceConsistentCasingInFileNames": true
|
||||||
},
|
},
|
||||||
"include": ["src/electron"],
|
"include": ["src/electron"],
|
||||||
"references": [
|
"references": [{ "path": "./tsconfig.app.json" }, { "path": "./tsconfig.node.json" }]
|
||||||
{ "path": "./tsconfig.app.json"},
|
|
||||||
{ "path": "./tsconfig.node.json"}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
@ -19,7 +19,5 @@
|
|||||||
"noFallthroughCasesInSwitch": true,
|
"noFallthroughCasesInSwitch": true,
|
||||||
"noUncheckedSideEffectImports": true
|
"noUncheckedSideEffectImports": true
|
||||||
},
|
},
|
||||||
"include": [
|
"include": ["vite.config.ts"]
|
||||||
"vite.config.ts"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
@ -19,10 +19,10 @@ export default defineConfig({
|
|||||||
customChunk: (args) => {
|
customChunk: (args) => {
|
||||||
// files into pages directory is export in single files
|
// files into pages directory is export in single files
|
||||||
const { id } = args;
|
const { id } = args;
|
||||||
if (id.includes('node_modules')) {
|
if (id.includes("node_modules")) {
|
||||||
return 'vendor';
|
return "vendor";
|
||||||
} else {
|
} else {
|
||||||
return 'main';
|
return "main";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user