Skip to content

Commit 93c84e6

Browse files
committed
Merge branch 'main' of https://github.com/instaclustr/atsc into issue-101-docs
2 parents a342e36 + 2db85e0 commit 93c84e6

33 files changed

+52
-54
lines changed

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This project adheres to a code of conduct that is based on respect, collaboratio
2121

2222
### Reporting Issues
2323

24-
If you encounter a bug, performance issue, or have a suggestion for an enhancement, please open an issue in our [GitHub repository](https://github.com/instaclustr/fft-compression/issues). Make sure to provide as much detail as possible to help us understand the problem or suggestion. **But check for existing issues first!**
24+
If you encounter a bug, performance issue, or have a suggestion for an enhancement, please open an issue in our [GitHub repository](https://github.com/instaclustr/atsc/issues). Make sure to provide as much detail as possible to help us understand the problem or suggestion. **But check for existing issues first!**
2525

2626
When reporting an issue, please include:
2727
- A clear and descriptive title.
@@ -45,7 +45,7 @@ We accept contributions via Pull Requests (PRs). Before submitting a PR, please
4545

4646
#### How to Create a Pull Request (PR)
4747

48-
1. Go to the [GitHub repository](https://github.com/instaclustr/fft-compression).
48+
1. Go to the [GitHub repository](https://github.com/instaclustr/atsc).
4949
2. Click on the "Pull Requests" tab.
5050
3. Press the **"New pull request"** button.
5151
4. Select the **base repository** and the branch where you want to merge your changes (`main`).
@@ -100,6 +100,6 @@ Feel free to contribute to these ongoing efforts or propose your own enhancement
100100

101101
We value your feedback and suggestions! If you have any ideas on how to improve the BRRO Compressor, please don't hesitate to share them. You can do so by:
102102

103-
- Opening a new issue labeled as a `suggestion` in our [GitHub repository](https://github.com/instaclustr/fft-compression).
103+
- Opening a new issue labeled as a `suggestion` in our [GitHub repository](https://github.com/instaclustr/atsc).
104104

105105
Your input helps us shape the future of the project, and we appreciate any suggestions or feedback you can provide.

Cargo.lock

+23-23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[workspace]
22
members = [
3-
"brro-compressor",
3+
"atsc",
44
"tools",
55
"wavbrro",
66
"vsri",

MAINTAINERS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# FFT-compression Maintainers
1+
# ATSC Maintainers
22

33
## Maintainers
44

brro-compressor/Cargo.toml atsc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "brro-compressor"
2+
name = "atsc"
33
version = "0.5.0"
44
authors = ["Carlos Rolo <[email protected]>"]
55
edition = "2021"

brro-compressor/benches/fft_bench.rs atsc/benches/fft_bench.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
use brro_compressor::compressor::fft::{fft, fft_allowed_error, fft_set, fft_to_data, FFT};
17+
use atsc::compressor::fft::{fft, fft_allowed_error, fft_set, fft_to_data, FFT};
1818
use criterion::{black_box, criterion_group, criterion_main, Criterion};
1919
use std::path::PathBuf;
2020
use wavbrro::wavbrro::WavBrro;

brro-compressor/benches/polynomial_bench.rs atsc/benches/polynomial_bench.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ limitations under the License.
1515
*/
1616

1717
// Import necessary libraries
18-
use brro_compressor::compressor::polynomial::{
19-
polynomial, polynomial_allowed_error, to_data, PolynomialType,
20-
};
18+
use atsc::compressor::polynomial::{polynomial, polynomial_allowed_error, to_data, PolynomialType};
2119
use criterion::{black_box, criterion_group, criterion_main, Criterion};
2220

2321
// Define example sample data

brro-compressor/demo/run_demo.sh atsc/demo/run_demo.sh

+8-8
Original file line numberDiff line numberDiff line change
@@ -11,37 +11,37 @@ do
1111

1212
cp $infilename tmp.wbro
1313

14-
../../target/debug/brro-compressor --compressor fft --error $i --verbose tmp.wbro > $mfile
14+
../../target/debug/atsc --compressor fft --error $i --verbose tmp.wbro > $mfile
1515
echo "FFT Size: "
1616
du -sb tmp.bro
17-
../../target/debug/brro-compressor -u --verbose tmp.bro >> $mfile
17+
../../target/debug/atsc -u --verbose tmp.bro >> $mfile
1818

1919
sed -i -e 's/Output/output_fft/g' $mfile
2020

2121
cp $infilename tmp.wbro
2222

23-
../../target/debug/brro-compressor --compressor idw --error $i tmp.wbro > /dev/null
23+
../../target/debug/atsc --compressor idw --error $i tmp.wbro > /dev/null
2424
echo "IDW Size: "
2525
du -sb tmp.bro
26-
../../target/debug/brro-compressor -u --verbose tmp.bro >> $mfile
26+
../../target/debug/atsc -u --verbose tmp.bro >> $mfile
2727

2828
sed -i -e 's/Output/output_idw/g' $mfile
2929

3030
cp $infilename tmp.wbro
3131

32-
../../target/debug/brro-compressor --compressor polynomial --error $i tmp.wbro > /dev/null
32+
../../target/debug/atsc --compressor polynomial --error $i tmp.wbro > /dev/null
3333
echo "Polynomial Size: "
3434
du -sb tmp.bro
35-
../../target/debug/brro-compressor -u --verbose tmp.bro >> $mfile
35+
../../target/debug/atsc -u --verbose tmp.bro >> $mfile
3636

3737
sed -i -e 's/Output/output_poly/g' $mfile
3838

3939
cp $infilename tmp.wbro
4040

41-
../../target/debug/brro-compressor --error $i tmp.wbro > /dev/null
41+
../../target/debug/atsc --error $i tmp.wbro > /dev/null
4242
echo "Auto Size: "
4343
du -sb tmp.bro
44-
../../target/debug/brro-compressor -u --verbose tmp.bro >> $mfile
44+
../../target/debug/atsc -u --verbose tmp.bro >> $mfile
4545

4646
sed -i -e 's/Output/output_auto/g' $mfile
4747

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

brro-compressor/src/main.rs atsc/src/main.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
use brro_compressor::compressor::Compressor;
18-
use brro_compressor::data::CompressedStream;
19-
use brro_compressor::optimizer::OptimizerPlan;
20-
use brro_compressor::utils::readers::bro_reader;
17+
use atsc::compressor::Compressor;
18+
use atsc::data::CompressedStream;
19+
use atsc::optimizer::OptimizerPlan;
20+
use atsc::utils::readers::bro_reader;
2121
use clap::{arg, command, Parser};
2222
use log::{debug, error};
2323
use std::error::Error;
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

brro-compressor/tests/e2e.rs atsc/tests/e2e.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use brro_compressor::utils::error::calculate_error;
1+
use atsc::utils::error::calculate_error;
22
use std::fs;
33
use std::path::{Path, PathBuf};
44
use wavbrro::wavbrro::WavBrro;
@@ -117,7 +117,7 @@ fn prepare_test_dir() -> PathBuf {
117117

118118
/// Runs compressor binary with provided arguments.
119119
fn run_compressor(args: &[&str]) {
120-
let compressor_bin = env!("CARGO_BIN_EXE_brro-compressor");
120+
let compressor_bin = env!("CARGO_BIN_EXE_atsc");
121121
let exit_status = std::process::Command::new(compressor_bin)
122122
.args(args)
123123
.status()

brro-compressor/tests/integration_test.rs atsc/tests/integration_test.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ fn compress_file_with_speed(speed: u8) {
102102

103103
fn run_compressor(args: &[&str]) {
104104
// path to binary set by cargo: https://doc.rust-lang.org/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-crates
105-
let command = std::env!("CARGO_BIN_EXE_brro-compressor");
105+
let command = std::env!("CARGO_BIN_EXE_atsc");
106106

107107
let status = std::process::Command::new(command)
108108
.args(args)
File renamed without changes.
File renamed without changes.
-22.6 KB
Binary file not shown.

csv-compressor/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
name = "csv-compressor"
33
version = "0.1.0"
44
edition = "2021"
5-
description = "Utilizes brro-compressor functionalities to compress CSV formatted data"
5+
description = "Utilizes ATSC functionalities to compress CSV formatted data"
66

77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
brro-compressor = { version = "0.5.0", path = "../brro-compressor" }
10+
atsc = { version = "0.5.0", path = "../atsc" }
1111
clap = { workspace = true, features = ["derive"] }
1212
csv = "1.3.0"
1313
serde = { version = "1.0.171", features = ["derive"] }

csv-compressor/src/main.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ limitations under the License.
1515
*/
1616

1717
use crate::metric::Metric;
18-
use brro_compressor::compressor::Compressor;
19-
use brro_compressor::data::CompressedStream;
20-
use brro_compressor::optimizer::OptimizerPlan;
21-
use brro_compressor::utils::readers::bro_reader::read_file;
18+
use atsc::compressor::Compressor;
19+
use atsc::data::CompressedStream;
20+
use atsc::optimizer::OptimizerPlan;
21+
use atsc::utils::readers::bro_reader::read_file;
2222
use clap::{arg, Parser};
2323
use log::debug;
2424
use std::fs;

0 commit comments

Comments
 (0)