Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases now! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
System Programming Essentials with Go
System Programming Essentials with Go

System Programming Essentials with Go: System calls, networking, efficiency, and security practices with practical projects in Golang

eBook
$22.99 $33.99
Paperback
$41.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Paperback book shipped to your preferred address
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
Table of content icon View table of contents Preview book icon Preview Book

System Programming Essentials with Go

Why Go?

At some point in your programming journey, your programs performed I/O-related tasks such as creating and removing files and directories. They may have orchestrated the creation of new processes and the execution of other programs or even facilitated communication between threads and processes on the same computer and between processes on different computers connected via a network.

When our programs center on using a low-level set of tasks, we categorize them as system programming.

It is alleged that system programming is tedious. But I do not see it this way at all! In fact, it is quite the opposite – an enjoyable and entertaining experience. It is like being a magician. You get to control the operating system and hardware, and you can make things happen that would be impossible in other languages.

In this chapter, we discuss why Go is an excellent fit for building efficient, high-performance system software to support real-world scenarios.

In this chapter...

Choosing Go

There are plenty of languages in the system programming space nowadays: some are well established, such as C and C++; some form a wave of newcomers, such as Zig, Rust, and Odin; and others claim the title of “C/C++ killer,” with their pledges of impressive performance.

Sure, we can use all of them and achieve outstanding results. Still, we could fall into hidden traps such as a steep learning curve, high cognitive load, a lack of community and support, inconsistent APIs with constant breaking changes, and a lack of adoption.

Go’s design philosophy emphasizes simplicity, expressiveness, robustness, and efficiency. Its support for concurrency and strong dependency management, as well as its focus on composition, make it a compelling choice for system programming. Its creators aimed to build a language that provides powerful building blocks without unnecessary complexity, which makes writing, reading, understanding, and maintaining system-level code...

Concurrency and goroutines

One of the most essential features of Go is its concurrency model. Concurrency is the ability to run multiple tasks at the same time. In system programming, executing many tasks in parallel is essential for improving the performance and responsiveness of our programs.

Concurrency

Real-time systems demand precision, with concurrency being a pivotal factor. These systems coordinate tasks with exceptional timing, particularly in scenarios where even milliseconds matter. Concurrency offers significant advantages by increasing throughput (a measure of how many units of information a system can process in a given amount of time) while decreasing task completion times. Real-life instances show how concurrency improves responsiveness, making systems more flexible and tasks more efficient. Moreover, concurrency’s isolation abilities guarantee data integrity by preventing interference.

System programming involves a diverse range of tasks, from CPU-bound...

Interacting with the OS

Go’s approach to system calls is designed to be safe and efficient, especially in the context of its concurrency model.

In Go, system calls are comparatively lower-level in comparison to certain other programming languages. It can be helpful if you need fine-grained control over system resources, but it also means you’re dealing with more low-level details.

Making system calls often requires understanding the underlying operating system APIs and conventions. The side effect is that it can introduce a steeper learning curve if you are new to systems programming or lower-level development.

Not familiar with system calls? Fear not! The book’s second part will explore and experiment with them in detail to cover the main aspects we need to progress in our system programming journey.

Tooling

Go is like a toolbox. It has everything we need to build great software, so we don’t need anything more than its standard tools to create our programs.

Let’s explore the principal tools that facilitate building, testing, running, error-checking, and code formatting.

go build

The go build command is used to compile Go code into an executable binary that you can run.

Let’s see an example.

Assume you have a Go source file named main.go containing the following code:

package main
import "fmt"
func main() {
    fmt.Println("Hello, Go!")
}

You can compile it using the go build command:

go build main.go

This will generate an executable binary named main (or main.exe on Windows). You can then run the binary to see the output:

./main

go test

The go test command is used to run tests on your Go code. It automatically finds test files and runs the associated test functions.

Here’s an...

Cross-platform development with Go

Cross-platform development with Go is a breeze. You can write code running on various operating systems and architectures with ease.

Cross-platform development with Go can be achieved by using the GOOS and GOARCH environment variables. The GOOS environment variable specifies the OS you want to target, and the GOARCH environment variable specifies your target architecture.

For example, assume you have a Go source file named main.go:

package main
import "fmt"
func main() {
    fmt.Println("This program runs in any OS!")
}

To compile code for Linux, you would set the GOOS environment variable to linux and the GOARCH environment variable to amd64:

GOOS=linux GOARCH=amd64 go build

This command will compile the code for Linux.

You can also use the GOOS and GOARCH environment variables to run code on different platforms. For example, to run the code you compiled for Linux on macOS, you would set...

Summary

This chapter provided a comprehensive guide to why Go is a top choice for system programming and insights into Go’s design philosophy, emphasizing simplicity, robustness, and efficiency. We learned about Go’s concurrency model, its approach to interacting with the OS, and how to interact with the tools for cross-platform development. These lessons are helpful as they equip us with the knowledge needed to write, read, and maintain system-level code with Go, enabling improved performance and the ability to work with concurrency.

In the next chapter, we explore the concurrency concepts, refreshing all related concepts and building blocks. It will prepare us for more advanced interactions with OS interfaces, enhancing our ability to create powerful and responsive programs.

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Get a deep understanding of how Go simplifies system-level memory management and concurrency
  • Gain expert guidance on essential topics like file operations, process management, and network programming
  • Learn cross-platform system programming and how to build applications that interact directly with the OS

Description

Alex Rios, a seasoned Go developer and active community builder, shares his 15 years of expertise in designing large-scale systems through this book. It masterfully cuts through complexity, enabling you to build efficient and secure applications with Go's streamlined syntax and powerful concurrency features. In this book, you’ll learn how Go, unlike traditional system programming languages (C/C++), lets you focus on the problem by prioritizing readability and elevating developer experience with features like automatic garbage collection and built-in concurrency primitives, which remove the burden of low-level memory management and intricate synchronization. Through hands-on projects, you'll master core concepts like file I/O, process management, and inter-process communication to automate tasks and interact with your system efficiently. You'll delve into network programming in Go, equipping yourself with the skills to build robust, distributed applications. This book goes beyond the basics by exploring modern practices like logging and tracing for comprehensive application monitoring, and advance to distributed system design using Go to prepare you to tackle complex architectures. By the end of this book, you'll emerge as a confident Go system programmer, ready to craft high-performance, secure applications for the modern world.

Who is this book for?

This book is for software engineers looking to expand their understanding of system programming concepts. Professionals with a coding foundation seeking profound knowledge of system-level operations will also greatly benefit. Additionally, individuals interested in advancing their system programming skills, whether experienced developers or those transitioning to the field, will find this book indispensable.

What you will learn

  • Understand the fundamentals of system programming using Go
  • Grasp the concepts of goroutines, channels, data races, and managing concurrency in Go
  • Manage file operations and inter-process communication (IPC)
  • Handle USB drives and Bluetooth devices and monitor peripheral events for hardware automation
  • Familiarize yourself with the basics of network programming and its application in Go
  • Implement logging, tracing, and other telemetry practices
  • Construct distributed cache and approach distributed systems using Go
Estimated delivery fee Deliver to Ecuador

Standard delivery 10 - 13 business days

$19.95

Premium delivery 3 - 6 business days

$40.95
(Includes tracking information)

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jun 28, 2024
Length: 408 pages
Edition : 1st
Language : English
ISBN-13 : 9781837634132
Category :
Languages :
Tools :

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Paperback book shipped to your preferred address
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
Estimated delivery fee Deliver to Ecuador

Standard delivery 10 - 13 business days

$19.95

Premium delivery 3 - 6 business days

$40.95
(Includes tracking information)

Product Details

Publication date : Jun 28, 2024
Length: 408 pages
Edition : 1st
Language : English
ISBN-13 : 9781837634132
Category :
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 112.97 141.97 29.00 saved
System Programming Essentials with Go
$41.99
Mastering Go
$37.99 $54.99
Go Programming - From Beginner to Professional
$32.99 $44.99
Total $ 112.97 141.97 29.00 saved Stars icon

Table of Contents

22 Chapters
Part 1: Introduction Chevron down icon Chevron up icon
Chapter 1: Why Go? Chevron down icon Chevron up icon
Chapter 2: Refreshing Concurrency and Parallelism Chevron down icon Chevron up icon
Part 2: Interaction with the OS Chevron down icon Chevron up icon
Chapter 3: Understanding System Calls Chevron down icon Chevron up icon
Chapter 4: File and Directory Operations Chevron down icon Chevron up icon
Chapter 5: Working with System Events Chevron down icon Chevron up icon
Chapter 6: Understanding Pipes in Inter-Process Communication Chevron down icon Chevron up icon
Chapter 7: Unix Sockets Chevron down icon Chevron up icon
Part 3: Performance Chevron down icon Chevron up icon
Chapter 8: Memory Management Chevron down icon Chevron up icon
Chapter 9: Analyzing Performance Chevron down icon Chevron up icon
Part 4: Connected Apps Chevron down icon Chevron up icon
Chapter 10: Networking Chevron down icon Chevron up icon
Chapter 11: Telemetry Chevron down icon Chevron up icon
Chapter 12: Distributing Your Apps Chevron down icon Chevron up icon
Part 5: Going Beyond Chevron down icon Chevron up icon
Chapter 13: Capstone Project – Distributed Cache Chevron down icon Chevron up icon
Chapter 14: Effective Coding Practices Chevron down icon Chevron up icon
Chapter 15: Stay Sharp with System Programming Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Full star icon 5
(5 Ratings)
5 star 100%
4 star 0%
3 star 0%
2 star 0%
1 star 0%
Suhaib Sep 09, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
System Programming in Go offers a practical exploration of system programming using a language often neglected in the systems domain. When one thinks of System Programming, go is probably not the first language that comes to mind. Go's concurrency features, garbage collection (as well as other features) make it ideal for applications such as backend web development. Even as a relatively experienced go developer I benefited greatly from this book.
Amazon Verified review Amazon
soni prashil Aug 17, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I was in search of a book where I can learn GO and I come across with this book. I received great in depth learning from this book.I highly recommend this book for GO.
Amazon Verified review Amazon
Vijay Aug 09, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
System Programming Essentials with Go” is a gem for anyone diving into Go. As a software engineer with a background in C++ and Java, I found this book to be a refreshing and enlightening read. The author does an excellent job of explaining complex concepts in a clear and straightforward manner, which really resonates with my preference for a strong foundation of knowledge before coding.The practical examples and hands-on exercises are fantastic. They made me feel more confident in applying what I’ve learned to real-world system programming tasks. I also loved how the book delves into Go’s philosophy and idiomatic practices, deepening my appreciation and understanding of the language.This book has significantly enhanced my programming skills, and I highly recommend it to both experienced developers and beginners eager to learn system programming with Go.
Amazon Verified review Amazon
Rajesh Thiyagarajan Aug 03, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The book’s practical approach, with real-world examples and hands-on projects, makes complex concepts come to life. Its clear structure, starting from basics to advanced topics, ensures a smooth learning curve.The chapters on concurrency and network programming are particularly valuable, addressing critical areas in modern development. The author's passion for Go and insightful tips on idiomatic practices have significantly influenced how I write code.Overall, this book is well-written, comprehensive, and full of practical wisdom. It has expanded my technical skills and enthusiasm for Go. Highly recommended!
Amazon Verified review Amazon
Franc Bozic Jul 31, 2024
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Feefo Verified review Feefo
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is the delivery time and cost of print book? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela
What is custom duty/charge? Chevron down icon Chevron up icon

Customs duty are charges levied on goods when they cross international borders. It is a tax that is imposed on imported goods. These duties are charged by special authorities and bodies created by local governments and are meant to protect local industries, economies, and businesses.

Do I have to pay customs charges for the print book order? Chevron down icon Chevron up icon

The orders shipped to the countries that are listed under EU27 will not bear custom charges. They are paid by Packt as part of the order.

List of EU27 countries: www.gov.uk/eu-eea:

A custom duty or localized taxes may be applicable on the shipment and would be charged by the recipient country outside of the EU27 which should be paid by the customer and these duties are not included in the shipping charges been charged on the order.

How do I know my custom duty charges? Chevron down icon Chevron up icon

The amount of duty payable varies greatly depending on the imported goods, the country of origin and several other factors like the total invoice amount or dimensions like weight, and other such criteria applicable in your country.

For example:

  • If you live in Mexico, and the declared value of your ordered items is over $ 50, for you to receive a package, you will have to pay additional import tax of 19% which will be $ 9.50 to the courier service.
  • Whereas if you live in Turkey, and the declared value of your ordered items is over € 22, for you to receive a package, you will have to pay additional import tax of 18% which will be € 3.96 to the courier service.
How can I cancel my order? Chevron down icon Chevron up icon

Cancellation Policy for Published Printed Books:

You can cancel any order within 1 hour of placing the order. Simply contact customercare@packt.com with your order details or payment transaction id. If your order has already started the shipment process, we will do our best to stop it. However, if it is already on the way to you then when you receive it, you can contact us at customercare@packt.com using the returns and refund process.

Please understand that Packt Publishing cannot provide refunds or cancel any order except for the cases described in our Return Policy (i.e. Packt Publishing agrees to replace your printed book because it arrives damaged or material defect in book), Packt Publishing will not accept returns.

What is your returns and refunds policy? Chevron down icon Chevron up icon

Return Policy:

We want you to be happy with your purchase from Packtpub.com. We will not hassle you with returning print books to us. If the print book you receive from us is incorrect, damaged, doesn't work or is unacceptably late, please contact Customer Relations Team on customercare@packt.com with the order number and issue details as explained below:

  1. If you ordered (eBook, Video or Print Book) incorrectly or accidentally, please contact Customer Relations Team on customercare@packt.com within one hour of placing the order and we will replace/refund you the item cost.
  2. Sadly, if your eBook or Video file is faulty or a fault occurs during the eBook or Video being made available to you, i.e. during download then you should contact Customer Relations Team within 14 days of purchase on customercare@packt.com who will be able to resolve this issue for you.
  3. You will have a choice of replacement or refund of the problem items.(damaged, defective or incorrect)
  4. Once Customer Care Team confirms that you will be refunded, you should receive the refund within 10 to 12 working days.
  5. If you are only requesting a refund of one book from a multiple order, then we will refund you the appropriate single item.
  6. Where the items were shipped under a free shipping offer, there will be no shipping costs to refund.

On the off chance your printed book arrives damaged, with book material defect, contact our Customer Relation Team on customercare@packt.com within 14 days of receipt of the book with appropriate evidence of damage and we will work with you to secure a replacement copy, if necessary. Please note that each printed book you order from us is individually made by Packt's professional book-printing partner which is on a print-on-demand basis.

What tax is charged? Chevron down icon Chevron up icon

Currently, no tax is charged on the purchase of any print book (subject to change based on the laws and regulations). A localized VAT fee is charged only to our European and UK customers on eBooks, Video and subscriptions that they buy. GST is charged to Indian customers for eBooks and video purchases.

What payment methods can I use? Chevron down icon Chevron up icon

You can pay with the following card types:

  1. Visa Debit
  2. Visa Credit
  3. MasterCard
  4. PayPal
What is the delivery time and cost of print books? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela