- Go Programming Blueprints(Second Edition)
- Mat Ryer
- 372字
- 2021-07-08 10:40:01
Summary
In this chapter, we developed a complete concurrent chat application and our own simple package to trace the flow of our programs to help us better understand what is going on under the hood.
We used the net/http
package to quickly build what turned out to be a very powerful concurrent HTTP web server. In one particular case, we then upgraded the connection to open a web socket between the client and server. This means that we can easily and quickly communicate messages to the user's web browser without having to write messy polling code. We explored how templates are useful to separate the code from the content as well as to allow us to inject data into our template source, which let us make the host address configurable. Command-line flags helped us give simple configuration control to the people hosting our application while also letting us specify sensible defaults.
Our chat application made use of Go's powerful concurrency capabilities that allowed us to write clear threaded code in just a few lines of idiomatic Go. By controlling the coming and going of clients through channels, we were able to set synchronization points in our code that prevented us from corrupting memory by attempting to modify the same objects at the same time.
We learned how interfaces such as http.Handler
and our own trace.Tracer
interface allow us to provide disparate implementations without having to touch the code that makes use of them, and in some cases, without having to expose even the name of the implementation to our users. We saw how just by adding a ServeHTTP
method to our room
type, we turned our custom room concept into a valid HTTP handler object, which managed our web socket connections.
We aren't actually very far away from being able to properly release our application, except for one major oversight: you cannot see who sent each message. We have no concept of users or even usernames, and for a real chat application, this is not acceptable.
In the next chapter, we will add the names of the people responding to their messages in order to make them feel like they are having a real conversation with other humans.
- Cocos2d Cross-Platform Game Development Cookbook(Second Edition)
- Mobile Application Development:JavaScript Frameworks
- 國際大學(xué)生程序設(shè)計競賽中山大學(xué)內(nèi)部選拔真題解(二)
- 軟件項目管理(第2版)
- PyTorch自動駕駛視覺感知算法實戰(zhàn)
- Linux核心技術(shù)從小白到大牛
- Python程序設(shè)計(第3版)
- iOS開發(fā)實戰(zhàn):從零基礎(chǔ)到App Store上架
- 網(wǎng)頁設(shè)計與制作教程(HTML+CSS+JavaScript)(第2版)
- Linux網(wǎng)絡(luò)程序設(shè)計:基于龍芯平臺
- Expert Data Visualization
- C語言程序設(shè)計
- Qt5 C++ GUI Programming Cookbook
- 深入理解BootLoader
- MySQL 8從零開始學(xué)(視頻教學(xué)版)