Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ISSUE: 42 and 30, implement headers to catalog v1 and get MimeType #52

Merged
merged 30 commits into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
4847075
implement headers to catalog v1 and get MimeType
rustchain64 Sep 4, 2023
36ab3bc
migragte header struct from carbonado to carbonado-node
rustchain64 Sep 4, 2023
7ea5885
clean up .toml
rustchain64 Sep 7, 2023
09e48cb
cargo.toml cleanup
rustchain64 Sep 7, 2023
e06e6db
refactor mime_type to http
rustchain64 Sep 11, 2023
7096882
clean up str_
rustchain64 Sep 22, 2023
c8c139e
test write_read
rustchain64 Sep 28, 2023
64fd3da
backup_test
rustchain64 Oct 12, 2023
7850c99
catalog_header breaks_test
rustchain64 Oct 12, 2023
111b08f
fix clippy errors
rustchain64 Oct 12, 2023
acbdbc5
backup_mimetype_check_once
rustchain64 Oct 19, 2023
b0db557
pass mime_type to tuple works
rustchain64 Oct 22, 2023
8c2b8d7
clippy fix and health check
rustchain64 Oct 22, 2023
655b768
Update src/backend/fs.rs
rustchain64 Oct 23, 2023
947f8b0
syntax error fs.rs closure
rustchain64 Oct 25, 2023
fb99104
segment:Bytes syntax error
rustchain64 Oct 25, 2023
d5a5a39
other solution WIP
rustchain64 Oct 26, 2023
a5f76d9
parsing tuple from result
rustchain64 Oct 26, 2023
74f8547
segment_bytes needs to be as Bytes
rustchain64 Oct 26, 2023
93be88e
backup working stream with mime_type
rustchain64 Oct 30, 2023
f256b11
debugged read_file for cataloog header split form content
rustchain64 Nov 4, 2023
9fcd17c
infer svg from 1024 bytes if mime_type is text/xml
rustchain64 Nov 8, 2023
0b0995f
cleanup for svg mime_type
rustchain64 Nov 15, 2023
ebab442
cargo.toml point to carbanado after local testing
rustchain64 Nov 15, 2023
1e0c5ce
clippy fix _url
rustchain64 Nov 15, 2023
e0e1501
backup channels
rustchain64 Nov 23, 2023
8037bd7
all file sizes bit to small
rustchain64 Nov 25, 2023
3c059ff
mock watch in test
rustchain64 Nov 25, 2023
60a82c7
mock watch in test debug
rustchain64 Nov 25, 2023
4046eb1
cleanup debug
rustchain64 Nov 25, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'carbonado-node'",
"cargo": {
"args": ["test", "--no-run", "--lib", "--package=carbonado-node"],
"filter": {
"name": "carbonado-node",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'carbonadod'",
"cargo": {
"args": ["build", "--bin=carbonadod", "--package=carbonado-node"],
"filter": {
"name": "carbonadod",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'carbonadod'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=carbonadod",
"--package=carbonado-node"
],
"filter": {
"name": "carbonadod",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug integration test 'file'",
"cargo": {
"args": ["test", "--no-run", "--test=file", "--package=carbonado-node"],
"filter": {
"name": "file",
"kind": "test"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
Loading