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

x.websocket: Another try for V docs style of comments :) #7091

Merged
merged 4 commits into from
Dec 4, 2020

Conversation

helto4real
Copy link
Member

Second attempt to comply to V docs style (go docs). #7047

@helto4real helto4real changed the title x.websocket: Another try for go docs style of comments :) x.websocket: Another try for V docs style of comments :) Dec 2, 2020
handler SocketMessageFn // callback function
handler2 SocketMessageFn2 // callback function with reference
is_ref bool // true if has a reference object
ref voidptr // referenced object
Copy link
Member

Choose a reason for hiding this comment

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

@medvednikov are field doc comments behind the field or above? would it be on the same line like [attributes]? then the line can be get really long...

Copy link
Member Author

Choose a reason for hiding this comment

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

Yea interesting question. I could not find clear rules about that. Fmt should handle it preferable

Copy link
Member

@danieldaeschle danieldaeschle left a comment

Choose a reason for hiding this comment

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

try to figure out which comment of private stuff is really necessary.
foo // represents foo is not needed and can be ommitet. if you changed my suggestions i'll take a deeper look again.

@JalonSolov
Copy link
Contributor

You need a global search and replace to change lenght to length.

@helto4real
Copy link
Member Author

You need a global search and replace to change lenght to length.

Fixed... I need to learn how to spell that :)

@helto4real
Copy link
Member Author

d and can b

try to figure out which comment of private stuff is really necessary.
foo // represents foo is not needed and can be ommitet. if you changed my suggestions i'll take a deeper look again.

If you want to help me review the planned refactor moving from x module to net module I will go through naming of naming. Specifically private functions and make them clearer. Many of them are from the original code. Better names I can remove alot of those comments as well for private functions.

@danieldaeschle
Copy link
Member

i think everyone here can help, i haven't used the websocket module once.

@danieldaeschle
Copy link
Member

maybe we can make renaming in an extra PR with an issue which collects all naming issues.

@helto4real
Copy link
Member Author

maybe we can make renaming in an extra PR with an issue which collects all naming issues.

Made issue and assigned myself #7098.

pub fn (mut ws Client) on_close(fun SocketCloseFn) {
ws.close_callbacks << CloseEventHandler{
handler: fun
}
}

// on_close_ref, register a callback on closed socket and provide a reference
// on_close_ref registers a callback on closed socket and provides a reference object
Copy link
Contributor

Choose a reason for hiding this comment

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

From a user perspective I'm a little unsure what the "reference object" is - and what it does?
It's mentioned quite a few times throughout the code.
My guess is that it's a way for the user to provide her or his own context, right?
Maybe it could be explained in detail on one of the structs?

@@ -4,7 +4,7 @@ import net
import time
import sync

// socket_read reads into the provided buffer with its length
// socket_read reads from socket into the provided buffer
Copy link
Contributor

Choose a reason for hiding this comment

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

from the socket

fn (mut s Server) handle_server_handshake(mut c Client) ?(string, &ServerClient) {
msg := c.read_handshake_str() ?
handshake_response, client := s.parse_client_handshake(msg, mut c) ?
unsafe {msg.free()}
return handshake_response, client
}

// parse_client_handshake parses handshake result
// parse_client_handshake parses result from handshake process
Copy link
Contributor

Choose a reason for hiding this comment

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

parses the result

@@ -35,15 +33,15 @@ fn (mut ws Client) handshake() ? {
unsafe {handshake_bytes.free()}
}

// handle_server_handshake manage websocket server handshake
// handle_server_handshake manages websocket server handshake process
Copy link
Contributor

Choose a reason for hiding this comment

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

manages the websocket

handler SocketCloseFn // callback function
handler2 SocketCloseFn2 // callback function with reference
is_ref bool // true if has a reference object
ref voidptr // referenced object
Copy link
Contributor

@larpon larpon Dec 3, 2020

Choose a reason for hiding this comment

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

See my other comment about what the referenced object actually is

@@ -52,7 +50,7 @@ pub fn (mut s Server) set_ping_interval(seconds int) {
s.ping_interval = seconds
}

// listen, start listen to incoming connections
// listen start listen and process to incoming connections from websocket clients
Copy link
Contributor

@larpon larpon Dec 3, 2020

Choose a reason for hiding this comment

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

// listen starts listening and process incoming connections from websocket clients

@@ -67,8 +65,9 @@ pub fn (mut s Server) listen() ? {
s.logger.info('websocket server: end listen on port $s.port')
}

// Close server (not implemented)
// Close closes server (not implemented yet)
Copy link
Contributor

Choose a reason for hiding this comment

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

closes the server

@@ -105,7 +104,7 @@ fn (mut s Server) handle_ping() {
}
}

// serve_client accepts incoming connection and setup the websocket handshake
// serve_client accepts incoming connection and sets up the callbacks
Copy link
Contributor

Choose a reason for hiding this comment

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

accepts the incoming

@@ -159,7 +158,7 @@ fn (mut s Server) setup_callbacks(mut sc ServerClient) {
}, sc)
}

// accept_new_client creates a new client instance for client connects to socket
// accept_new_client creates a new client instance for client that connects to the socket
Copy link
Contributor

Choose a reason for hiding this comment

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

for the client that

@@ -181,7 +180,7 @@ fn (mut s Server) set_state(state State) {
}
}

// free, manual free memory of Server instance
// free manages manual free of memory for Server instance
Copy link
Contributor

Choose a reason for hiding this comment

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

// free frees all memory allocated by the Server instance

@larpon
Copy link
Contributor

larpon commented Dec 3, 2020

Sorry to grammer-slam you @helto4real - your work is much appreciated! 😅
I think you might have become somewhat of a guinea pig for us to find out the way documentation should be written, hang in there!

@helto4real
Copy link
Member Author

Sorry to gramma-slam you @helto4real - your work is much appreciated! 😅
I think you've might have become somewhat of a guinea pig for us to find out the way documentation should be written, hang in there!

No worries, I was thinking the same. This is why I took action to make it better. Lets make this close to how the quality bar of docs should be. I am greatful since English is not my native language obviously ;) It’s the final result that counts!

@spytheman
Copy link
Member

I think that is going to be one of the most commented PRs in this repository 😄 .

@JalonSolov
Copy link
Contributor

JalonSolov commented Dec 3, 2020

Heh. I think it's at the point where it should probably be merged, and any lingering issues can be cleaned up after the x/websocket -> net/websocket move.

@medvednikov medvednikov marked this pull request as ready for review December 4, 2020 00:51
@medvednikov medvednikov merged commit d12f5f7 into vlang:master Dec 4, 2020
@helto4real helto4real deleted the websocket_improved_docs branch December 9, 2020 11:25
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.

6 participants