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

Features/strbuf to string #14323

Merged
merged 1 commit into from
May 25, 2014
Merged

Conversation

richo
Copy link
Contributor

@richo richo commented May 21, 2014

Converts StrBuf to String throughout rustc and the standard library.

Tests all pass locally, but usual caveats about platforms that aren't OSX apply since I don't have a test environment handy.

@alexcritchon mentioned that @pcwalton may have a patch incoming that should block this?

closes #14312

@richo
Copy link
Contributor Author

richo commented May 21, 2014

No idea if the tests pass- I have to run home so I killed the run. I'll run them again later tonight.

@alexcrichton
Copy link
Member

This should coordinate with @pcwalton with #14310. He may wish to rebase this into that PR to not deal with the merge conflicts.

@alexcrichton
Copy link
Member

Thanks for doing this!

@richo
Copy link
Contributor Author

richo commented May 21, 2014

Tests look fine. Should I just rebase this on top of #14310 ?

@alexcrichton
Copy link
Member

Let's wait for @pcwalton to weigh in. He may wish to include this directly instead of landing separately. #14310 is likely to change many times before landing as it goes through bors.

@richo
Copy link
Contributor Author

richo commented May 22, 2014

I think the only thing I didn't consider here was what to do with to_strbuf. I would assume this should become to_string ?

@richo
Copy link
Contributor Author

richo commented May 22, 2014

#14310 has landed, I'm going to rebase this and include to_string

@alexcrichton
Copy link
Member

to_string may be a little more nuanced. We currently have the ToStr trait with the to_str method, which seems easily confusable with to_string. For now, we may want to just remove to_strbuf entirely (at least that's one possibility).

@huonw
Copy link
Member

huonw commented May 23, 2014

I would somewhat in favour of removing .to_str, or renaming it to .format_to_string or something. In any case, it is now misnamed, since .to_str is not creating a str.

@richo
Copy link
Contributor Author

richo commented May 23, 2014

Yeah, I'm not super excited about having to_str and to_string in the language.

I think my plan is get the new types in (StrBuf -> String) and then fiddle with the internals of to_str{,ing} unless there's strong objection.

@alexcrichton
Copy link
Member

It's all gotta happen eventually! (small incremental steps is fine).

Another contender is to remove format_strbuf.

@lilyball
Copy link
Contributor

I feel like the right solution is to use to_string() everywhere. No to_str(). If the method returns a &str, it should be as_str(). And of course nothing should return a ~str once @pcwalton's patch lands.

@huonw
Copy link
Member

huonw commented May 23, 2014

It's landed.

@lilyball
Copy link
Contributor

Oh wow, when did that happen? I only pulled a few hours ago, and I didn't see bors say anything in #rust-internals. But you're right, it's in master. \o/

@lilyball
Copy link
Contributor

And of course the website hasn't updated with the new docs.

@huonw
Copy link
Member

huonw commented May 23, 2014

Half an hour ago. (I'm inclined to agree with just using the ToStr's .to_str method (preferably with renaming) for the method for going from &str -> String.)

@richo
Copy link
Contributor Author

richo commented May 23, 2014

PR Updated. Stage0 built ok locally but I'm on battery so letting travis deal with testing.

@richo
Copy link
Contributor Author

richo commented May 23, 2014

Sorry, left breaking-change out of the commit message. r?

@richo
Copy link
Contributor Author

richo commented May 23, 2014

Looks like the bors queue is empty, now's my chance to get this in!

r?

/*! normalize.css v3.0.0 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I find it unlikely that any change to this file is correct and I can't tell from github's diff what the change is, could you revert it?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yup, good catch, thanks.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did you revert it? it's still listed here in the diff.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The difference is a trailing newline was added to the file, just like in main.css. Nothing else changed.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok. (I don't see that in Github's diff, did you look locally?)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I checked locally.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cool, thanks. ❤️

@richo
Copy link
Contributor Author

richo commented May 25, 2014

Updated again. I'm building a stage1 now to sanity check, because I resolved the conflicts by hand instead of redoing the patch.

@richo
Copy link
Contributor Author

richo commented May 25, 2014

I'm not sure how but it appears that my changes broke this because those strings are now 49 bytes long?

Oh wait, it includes the content of the file. One sec, fixing.

@huonw
Copy link
Member

huonw commented May 25, 2014

I think the problem is adding trailing newlines to a lot of files, including those ones.

@richo
Copy link
Contributor Author

richo commented May 25, 2014

Yup. Posix does demand that files have trailing newlines. I'm going to update the test cases to reflect that.

@richo
Copy link
Contributor Author

richo commented May 25, 2014

Updated. As an aside, does the full test suite not run on travis? it seemed to pass that builds.

bors added a commit that referenced this pull request May 25, 2014
Converts `StrBuf` to `String` throughout rustc and the standard library.

Tests all pass locally, but usual caveats about platforms that aren't OSX apply since I don't have a test environment handy.

@alexcritchon mentioned that @pcwalton may have a patch incoming that should block this?

closes #14312
@huonw
Copy link
Member

huonw commented May 25, 2014

Yes, our testsuite takes too long to run and so it would be abusing Travis' infrastructure (and probably exceed their time limits). The .travis.yml file lists the targets that are tested.

@bors bors closed this May 25, 2014
@bors bors merged commit 5530745 into rust-lang:master May 25, 2014
@alexcrichton
Copy link
Member

\o/ nice!

@richo
Copy link
Contributor Author

richo commented May 25, 2014

\o/

I'll make some more ground tonight, this one was the big pain to get in
though.

Thanks for your help!
On 24/05/2014 11:26 pm, "Alex Crichton" notifications@github.com wrote:

\o/ nice!


Reply to this email directly or view it on GitHubhttps://github.com//pull/14323#issuecomment-44116342
.

bors added a commit that referenced this pull request May 28, 2014
lnicola pushed a commit to lnicola/rust that referenced this pull request Mar 13, 2023
…Veykril

Fix overlap deduping infinite loop

Fixes: rust-lang#14276
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Rename StrBuf to String
5 participants