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

Using dynamic tables provided by WMO #4

Merged
merged 27 commits into from
Apr 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
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
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
run: cargo tarpaulin --all-features --timeout 600 --out Xml -- --test-threads 1

- name: Upload coverage to codecov
uses: codecov/codecov-action@v1.0.3
uses: codecov/codecov-action@v3

lints:
name: Lints
Expand Down Expand Up @@ -123,8 +123,14 @@ jobs:
toolchain: stable
override: true

- name: Make sure we can publish
- name: Make sure we can publish core library
uses: actions-rs/cargo@v1
with:
command: publish
args: --dry-run
args: --dry-run -p bufr

- name: Make sure we can publish bufr-dump
uses: actions-rs/cargo@v1
with:
command: publish
args: --dry-run -p bufr-dump
95 changes: 95 additions & 0 deletions .github/workflows/release-dump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
name: Release

on:
push:
tags:
- 'd*.*.*'
workflow_dispatch:

jobs:
publish:
name: ${{ matrix.target }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
use-cross: false
strip: strip

- os: ubuntu-latest
target: x86_64-unknown-linux-musl
use-cross: false
strip: strip

- os: ubuntu-latest
target: arm-unknown-linux-gnueabihf
use-cross: true
strip: arm-linux-gnueabihf-strip

- os: ubuntu-latest
target: aarch64-unknown-linux-gnu
use-cross: true
strip: aarch64-linux-gnu-strip

- os: windows-latest
target: x86_64-pc-windows-msvc
use-cross: false
binary_ext: '.exe'

- os: macos-latest
target: x86_64-apple-darwin
use-cross: false
strip: strip

- os: macos-latest
target: aarch64-apple-darwin
use-cross: false
strip: strip

steps:
- uses: actions/checkout@v3

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true
target: ${{ matrix.target }}

- name: Install required dependencies
shell: bash
run: |
if [[ ${{ matrix.target }} == x86_64-unknown-linux-musl ]]; then
sudo apt-get update
sudo apt-get install -y musl-tools
fi
if [[ ${{ matrix.target }} == aarch64-unknown-linux-gnu ]]; then
sudo apt-get update
sudo apt-get install -y binutils-aarch64-linux-gnu
fi
if [[ ${{ matrix.target }} == arm-unknown-linux-gnueabihf ]]; then
sudo apt-get update
sudo apt-get install -y binutils-arm-linux-gnueabihf
fi

- name: Build
uses: actions-rs/cargo@v1
with:
use-cross: ${{ matrix.use-cross }}
command: build
args: --target ${{ matrix.target }} --release --locked -p bufr-dump

- name: Strip binary
if: matrix.strip
run: ${{ matrix.strip }} target/${{ matrix.target }}/release/bufr-dump${{ matrix.binary_ext }}

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/${{ matrix.target }}/release/bufr-dump${{ matrix.binary_ext }}
asset_name: bufr-dump-${{ matrix.target }}${{ matrix.binary_ext }}
tag: ${{ github.ref }}
10 changes: 7 additions & 3 deletions bufr-dump/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
[package]
name = "bufr-dump"
version = "0.1.0"
authors = ["Guilherme Castelão <guilherme@castelao.net>"]
version = "0.1.1"
authors = ["Guilherme Castelão <guilherme@castelao.net>", "Luiz Irber <luiz.irber@gmail.com>"]
edition = "2018"
description = "Parse and show the content of a BUFR dataset. It is meant for human inspection (such as ncdump is for NetCDF)."
documentation = "https://docs.rs/bufr"
license = "MIT OR Apache-2.0"
repository = "https://github.com/castelao/BUFR/tree/master/bufr-dump"

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

[dependencies]
structopt = "0.3.21"
bufr = { path = "../bufr-lib" }
bufr = { version = "0.1.1", path = "../bufr-lib" }
anyhow = "1.0.38"
10 changes: 9 additions & 1 deletion bufr-dump/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ struct Dump {
/// File containing a BUFR message to be dumped
#[structopt(parse(from_os_str))]
message: PathBuf,

/// Print raw data for section 4
#[structopt(long = "show-data")]
show_data: bool,
}

fn main() -> Result<()> {
Expand All @@ -21,7 +25,11 @@ fn main() -> Result<()> {

let data = bufr::decode(&buffer[..])?;

println!("{}", data);
if args.show_data {
println!("{:?}", data);
} else {
println!("{}", data);
}

Ok(())
}
9 changes: 7 additions & 2 deletions bufr-lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
[package]
name = "bufr"
version = "0.1.0"
authors = ["castelao"]
version = "0.1.1"
authors = ["Luiz Irber <luiz.irber@gmail.com>", "Guilherme Castelão <guilherme@castelao.net>"]
edition = "2018"
description = "BUFR is binary data format defined by WMO focused on real-time data."
documentation = "https://docs.rs/bufr"
license = "MIT OR Apache-2.0"
repository = "https://github.com/castelao/BUFR"

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

Expand All @@ -13,3 +17,4 @@ thiserror = "1.0"
getset = "0.1.1"
serde = { version = "1.0.125", features = ["derive"] }
byteorder = "1.4.3"
once_cell = "1.8.0"
Loading
Loading