Page MenuHomePhabricator

[services] Backup - Blob Get Client - Pass rust string instead of const char*
ClosedPublic

Authored by karol on Sep 9 2022, 7:07 AM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, May 1, 6:20 PM
Unknown Object (File)
Tue, Apr 30, 6:23 PM
Unknown Object (File)
Tue, Apr 30, 6:23 PM
Unknown Object (File)
Tue, Apr 30, 6:23 PM
Unknown Object (File)
Sun, Apr 21, 2:39 PM
Unknown Object (File)
Sun, Apr 21, 2:39 PM
Unknown Object (File)
Sun, Apr 21, 2:39 PM
Unknown Object (File)
Sun, Apr 21, 2:39 PM

Details

Summary

Depends on D5097

Raised in https://phab.comm.dev/D5035#148669

We can construct rust::Strings in c++ instead of passing const char*s from c++ to rust.

Test Plan

Services build, tests pass.

Diff Detail

Repository
rCOMM Comm
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

Harbormaster returned this revision to the author for changes because remote builds failed.Sep 9 2022, 7:08 AM
Harbormaster failed remote builds in B12055: Diff 16555!

retrigger CI - failed on identity build that's unrelated

tomek requested changes to this revision.Sep 9 2022, 7:30 AM
tomek added inline comments.
services/backup/blob_client/src/lib.rs
17–39 ↗(On Diff #16556)

Are the functions still unsafe? Our guess was that it was caused by a raw pointer.

This revision now requires changes to proceed.Sep 9 2022, 7:30 AM
services/backup/blob_client/src/lib.rs
17–39 ↗(On Diff #16556)

Right, missed that.

jon requested changes to this revision.Sep 12 2022, 9:11 AM
jon added inline comments.
services/backup/blob_client/src/put_client.rs
200 ↗(On Diff #16576)

since we are just passing this to a hashmap, we should be able to use &str. Also avoids all the .clone() usage everywhere as you're no longer taking ownership of the string

This revision now requires changes to proceed.Sep 12 2022, 9:11 AM
services/backup/blob_client/src/put_client.rs
200 ↗(On Diff #16576)

Right, we can refactor some Strings into &strs, will do.

use more &str instead of String

This revision is now accepted and ready to land.Sep 15 2022, 9:02 AM
This revision was landed with ongoing or failed builds.Sep 19 2022, 7:28 AM
This revision was automatically updated to reflect the committed changes.