Code Monkey home page Code Monkey logo

Comments (5)

banool avatar banool commented on July 24, 2024 3

6 years later and just reporting that I'm finding myself quite astonished here.

Program:

use url::Url;

fn main() {
    let url1 = Url::parse("http://localhost:5000").unwrap();
    println!("Port: {:?}", url1.port());
    let url2 = Url::parse("http://localhost:80").unwrap();
    println!("Port: {:?}", url2.port());
}

Output:

Port: Some(5000)
Port: None

I think is very unintuitive, I clearly set the port and expect it to be there. Erasing it for 80 is magic.

from rust-url.

banool avatar banool commented on July 24, 2024 1

For people coming along later and looking for a better option, use url.port_or_known_default(), it behaves how you'd actually expect it to behave.

from rust-url.

SimonSapin avatar SimonSapin commented on July 24, 2024

The idea is to do like browsers’s URLUtils.port which is the empty string when the port number is the same as the scheme’s default (80 for HTTP).

There’s a .port_or_default() convenience method, which may be what you’re looking for.

I’ve considered changing "port" to be the current "port or default", and have a "port is default" boolean or something. What do you think?

from rust-url.

thekashifmalik avatar thekashifmalik commented on July 24, 2024

I would defer to the 'Principle of least astonishment' and say that a URL library in isolation should parse all ports equally.

Behaviour like URLUtils.port makes sense to me in a certain environment (like an HTTP browser that has certain common cases), but not in a general URL library. I would certainly encourage the change.

If anything, I would say maybe there should be a method .is_default() -> bool / is_default_for_scheme() -> bool instead of a method that returns an Option<u16> to check for default port values.

from rust-url.

SimonSapin avatar SimonSapin commented on July 24, 2024

I’m very skeptical of this so-called "principle of least astonishment". What’s astonishing to someone might be obvious and make perfect sense to someone else. Everyone has different experience and makes different assumptions.

Regardless, a more important concern for this library is interoperability. Any deviation like this is a potential number of sites that work fine in other browsers but are broken in Servo.

from rust-url.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.