Skip to content

Commit 3079f98

Browse files
committed
Address all clippy warns/errors
There is one exception however - rust wrapper of arrayfire panics whenever string arguments fail for whatever reason. In such cases, we catch all errors to call `panic!`. This is one lint that has been skipped.
1 parent 64af5a9 commit 3079f98

14 files changed

+52
-19
lines changed

Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ libc = "0.2"
4141
num = "0.2"
4242
lazy_static = "1.0"
4343

44+
[dev-dependencies]
45+
float-cmp = "0.6.0"
46+
4447
[build-dependencies]
4548
serde_json = "1.0"
4649
serde_derive = "1.0"

examples/helloworld.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ fn main() {
4949
//Index array using array and sequence
5050
let seq4gen = Seq::new(0u32, 2, 1);
5151

52-
let mut idxrs = Indexer::new();
52+
let mut idxrs = Indexer::default();
5353
idxrs.set_index(&indices, 0, None);
5454
idxrs.set_index(&seq4gen, 1, Some(false));
5555

examples/histogram.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ fn main() {
2323
let man = load_image::<f32>(format!("{}/man.jpg", assets_dir.display()), false);
2424
let hst = histogram(&man, 256, 0.0, 255.0);
2525

26-
let disp_img = div(&man, &constant(255 as f32, man.dims()), false);
26+
let disp_img = div(&man, &constant(255_f32, man.dims()), false);
2727

2828
loop {
2929
img_wnd.draw_image(&disp_img, None);
3030
hst_wnd.draw_hist(&hst, 0.0, 255.0, None);
3131

32-
if img_wnd.is_closed() == true {
32+
if img_wnd.is_closed() {
3333
break;
3434
}
35-
if hst_wnd.is_closed() == true {
35+
if hst_wnd.is_closed() {
3636
break;
3737
}
3838
}

examples/snow.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ fn main() {
1313
loop {
1414
wnd.draw_image(&randu::<f32>(dims), None);
1515

16-
if wnd.is_closed() == true {
16+
if wnd.is_closed() {
1717
break;
1818
}
1919
}

src/arith/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -840,7 +840,7 @@ mod op_assign {
840840
#[allow(unused_variables)]
841841
fn $fn_name(&mut self, rhs: Array<B>) {
842842
let tmp_seq = Seq::<f32>::default();
843-
let mut idxrs = Indexer::new();
843+
let mut idxrs = Indexer::default();
844844
for n in 0..self.numdims() {
845845
idxrs.set_index(&tmp_seq, n, Some(false));
846846
}
@@ -872,7 +872,7 @@ mod op_assign {
872872
#[allow(unused_variables)]
873873
fn $fn_name(&mut self, rhs: Array<B>) {
874874
let tmp_seq = Seq::<f32>::default();
875-
let mut idxrs = Indexer::new();
875+
let mut idxrs = Indexer::default();
876876
for n in 0..self.numdims() {
877877
idxrs.set_index(&tmp_seq, n, Some(false));
878878
}

src/defines.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ pub enum MomentType {
370370
/// Central moment of order (1 + 1)
371371
M11 = 8, // 1<<3
372372
/// All central moments of order (0,0), (0,1), (1,0) and (1,1)
373-
FIRST_ORDER = 1 << 0 | 1 << 1 | 1 << 2 | 1 << 3,
373+
FIRST_ORDER = 1 | 1 << 1 | 1 << 2 | 1 << 3,
374374
}
375375

376376
/// Sparse storage format type

src/dim4.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ impl Default for Dim4 {
3030
impl Index<usize> for Dim4 {
3131
type Output = u64;
3232

33-
fn index<'a>(&'a self, _index: usize) -> &'a u64 {
33+
fn index(&self, _index: usize) -> &u64 {
3434
&self.dims[_index]
3535
}
3636
}
@@ -65,7 +65,9 @@ impl Dim4 {
6565
/// let dims = Dim4::new(&[4, 4, 2, 1]);
6666
/// ```
6767
pub fn new(dims: &[u64; 4]) -> Self {
68-
Self { dims: dims.clone() }
68+
Self {
69+
dims: [dims[0], dims[1], dims[2], dims[3]],
70+
}
6971
}
7072

7173
/// Get the number of elements represented by Dim4 object

src/error.rs

+2
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ lazy_static! {
7777
/// }
7878
/// ```
7979
#[allow(unused_must_use)]
80+
#[allow(clippy::match_wild_err_arm)]
8081
pub fn register_error_handler(cb_value: Callback) {
8182
let mut gaurd = match ERROR_HANDLER_LOCK.write() {
8283
Ok(g) => g,
@@ -87,6 +88,7 @@ pub fn register_error_handler(cb_value: Callback) {
8788
}
8889

8990
#[allow(non_snake_case)]
91+
#[allow(clippy::match_wild_err_arm)]
9092
pub fn HANDLE_ERROR(error_code: AfError) {
9193
let gaurd = match ERROR_HANDLER_LOCK.read() {
9294
Ok(g) => g,

src/graphics.rs

+3
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ impl Window {
212212
///
213213
/// Window Object
214214
#[allow(unused_mut)]
215+
#[allow(clippy::match_wild_err_arm)]
215216
pub fn new(width: i32, height: i32, title: String) -> Self {
216217
unsafe {
217218
let mut temp: u64 = 0;
@@ -472,6 +473,7 @@ impl Window {
472473
/// - `exact` indicates if the exact min/max values from `xrange`, `yrange` and `zrange`
473474
/// are to extracted. If exact is false then the most significant digit is rounded up
474475
/// to next power of 2 and the magnitude remains the same.
476+
#[allow(clippy::too_many_arguments)]
475477
pub fn set_axes_limits_3d(
476478
&mut self,
477479
xmin: f32,
@@ -890,6 +892,7 @@ impl Window {
890892
/// - `zdirs` is an Array containing direction component of z coord
891893
/// - `title` parameter has effect only in multiview mode, where this string
892894
/// is displayed as the respective cell/view title.
895+
#[allow(clippy::too_many_arguments)]
893896
pub fn draw_vector_field3<T>(
894897
&self,
895898
xpnts: &Array<T>,

src/image/mod.rs

+6
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@ where
239239
///
240240
/// An Array with pixel values loaded from the image
241241
#[allow(unused_mut)]
242+
#[allow(clippy::match_wild_err_arm)]
242243
pub fn load_image<T>(filename: String, is_color: bool) -> Array<T>
243244
where
244245
T: HasAfEnum + RealNumber,
@@ -282,6 +283,7 @@ where
282283
///
283284
/// An Array with pixel values loaded from the image
284285
#[allow(unused_mut)]
286+
#[allow(clippy::match_wild_err_arm)]
285287
pub fn load_image_native<T>(filename: String) -> Array<T>
286288
where
287289
T: HasAfEnum + ImageNativeType,
@@ -309,6 +311,7 @@ where
309311
/// - `filename` is the abolute path(includes filename) at which input Array is going to be saved
310312
/// - `input` is the Array to be stored into the image file
311313
#[allow(unused_mut)]
314+
#[allow(clippy::match_wild_err_arm)]
312315
pub fn save_image<T>(filename: String, input: &Array<T>)
313316
where
314317
T: HasAfEnum + RealNumber,
@@ -340,6 +343,7 @@ where
340343
/// - `filename` is name of file to be saved
341344
/// - `input` is the Array to be saved. Should be U8 for saving 8-bit image, U16 for 16-bit image, and F32 for 32-bit image.
342345
#[allow(unused_mut)]
346+
#[allow(clippy::match_wild_err_arm)]
343347
pub fn save_image_native<T>(filename: String, input: &Array<T>)
344348
where
345349
T: HasAfEnum + ImageNativeType,
@@ -1273,6 +1277,7 @@ hsvrgb_func_def!("RGB to HSV color space conversion", rgb2hsv, af_rgb2hsv);
12731277
/// 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 0 0 0 0 0
12741278
/// 16 17 18 19 0 21 22 23 24 0 26 27 28 29 0 31 32 33 34 0 0 0 0 0 0
12751279
/// ```
1280+
#[allow(clippy::too_many_arguments)]
12761281
pub fn unwrap<T: HasAfEnum>(
12771282
input: &Array<T>,
12781283
wx: i64,
@@ -1324,6 +1329,7 @@ pub fn unwrap<T: HasAfEnum>(
13241329
/// # Return Values
13251330
///
13261331
/// Image(Array) created from unwrapped Image(Array)
1332+
#[allow(clippy::too_many_arguments)]
13271333
pub fn wrap<T: HasAfEnum>(
13281334
input: &Array<T>,
13291335
ox: i64,

src/index.rs

+23-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ use crate::error::HANDLE_ERROR;
77
use crate::seq::Seq;
88
use crate::util::{AfArray, AfIndex, DimT, HasAfEnum, MutAfArray, MutAfIndex};
99

10+
use std::default::Default;
1011
use std::marker::PhantomData;
1112

1213
#[allow(dead_code)]
@@ -152,9 +153,24 @@ where
152153
}
153154
}
154155

156+
impl<'object> Default for Indexer<'object> {
157+
fn default() -> Self {
158+
let mut temp: i64 = 0;
159+
unsafe {
160+
let err_val = af_create_indexers(&mut temp as MutAfIndex);
161+
HANDLE_ERROR(AfError::from(err_val));
162+
}
163+
Self {
164+
handle: temp,
165+
count: 0,
166+
marker: PhantomData,
167+
}
168+
}
169+
}
170+
155171
impl<'object> Indexer<'object> {
156-
#[allow(unused_mut)]
157172
/// Create a new Indexer object and set the dimension specific index objects later
173+
#[deprecated(since = "3.7.0", note = "Use Indexer::default() instead")]
158174
pub fn new() -> Self {
159175
let mut temp: i64 = 0;
160176
unsafe {
@@ -174,14 +190,19 @@ impl<'object> Indexer<'object> {
174190
T: Indexable + 'object,
175191
{
176192
idx.set(self, dim, is_batch);
177-
self.count = self.count + 1;
193+
self.count += 1;
178194
}
179195

180196
/// Get number of indexing objects set
181197
pub fn len(&self) -> usize {
182198
self.count
183199
}
184200

201+
/// Check if any indexing objects are set
202+
pub fn is_empty(&self) -> bool {
203+
self.count == 0
204+
}
205+
185206
/// Get native(ArrayFire) resource handle
186207
pub fn get(&self) -> i64 {
187208
self.handle

src/seq.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,7 @@ impl<T: fmt::Display> fmt::Display for Seq<T> {
3838
impl<T: Copy> Seq<T> {
3939
/// Create a `Seq` that goes from `begin` to `end` at a step size of `step`
4040
pub fn new(begin: T, end: T, step: T) -> Self {
41-
Self {
42-
begin: begin,
43-
end: end,
44-
step: step,
45-
}
41+
Self { begin, end, step }
4642
}
4743

4844
/// Get begin index of Seq

tests/error_handler.rs

-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ fn check_error_handler_mutation() {
4141
_ => panic!("Impossible scenario"),
4242
}
4343
})
44-
.ok()
4544
.expect("Failed to launch a thread")
4645
})
4746
.collect::<Vec<_>>();

tests/scalar_arith.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
use ::arrayfire::*;
2+
use float_cmp::approx_eq;
23

34
#[allow(non_snake_case)]
45
#[test]
@@ -15,5 +16,5 @@ fn check_scalar_arith() {
1516
let scalar_res = all_true_all(&scalar_res_comp);
1617
let res = all_true_all(&res_comp);
1718

18-
assert_eq!(scalar_res.0, res.0);
19+
assert!(approx_eq!(f64, scalar_res.0, res.0, ulps = 2));
1920
}

0 commit comments

Comments
 (0)