search
HomeBackend DevelopmentGolanggolang uses so method

Golang (also known as Go) is a programming language developed by Google, mainly for network applications and distributed systems. It has the advantages of efficient memory management and excellent concurrency performance, so it is favored by more and more developers. In Golang, we can use so files to implement library functions in languages ​​such as C, thereby improving our Golang programming and improving code reusability and flexibility. This article will discuss how to use the so method in Golang based on actual cases.

1. What is an so file?

so file, the full name is Shared Object File (Shared Object File), also known as Dynamic Linking Library (Dynamic Linking Library), is a reusable Locate the target file, which can be shared and called by different programs. In the Linux system, the dynamic link library is an important component. Various system libraries and applications can be provided in the form of so files, thereby facilitating the development and maintenance of applications. In C language, we can use the gcc command to compile the .c file into a .so file, and then link it to our application for use. In Golang, we can also use the cgo method to link the .so file to our program for calling.

2. Examples of using so files in Golang

Below we take the md5 calculation of Golang through so files as an example. The specific steps are as follows:

  1. Write C Language code, generate .so file

We first write an md5.c file to calculate the md5 value:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <openssl/md5.h>

char* md5(char* str){
    MD5_CTX md5;
    MD5_Init(&md5);
    MD5_Update(&md5, str, strlen(str));
    unsigned char md[16];
    MD5_Final(md, &md5);

    char* result = (char*)malloc(sizeof(char) * 33);
    memset(result, '', sizeof(result));
    int i = 0;
    for(i = 0; i < 16; i++){
        sprintf(result + i * 2, "%02x", md[i]);
    }

    return result;
}

In this C language code, we use OpenSSL MD5 algorithm in the library to calculate md5 value. It should be noted that since Golang needs to use the cgo method to call C language, we need to add "// #include ", where "C:\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\include" is the header of the OpenSSL library in our MinGW compiler file path.

Next, we use the gcc command to compile md5.c into a .so file:

gcc -shared -o libmd5.so md5.c -fPIC -I /usr/local/opt/openssl/include -L /usr/local/opt/openssl/lib -lcrypto

In the above command,

  • -shared specifies to generate a shared object file;
  • -o specifies the output dynamic link library file name;
  • md5.c is our source code file;
  • -fPIC specifies that the generated code snippet position is irrelevant, and Can be shared among multiple applications;
  • -I /usr/local/opt/openssl/include and -L /usr/local/opt/openssl/lib specify the path to the OpenSSL library file;
  • -lcrypto specifies the link encryption library file.
  1. Write Golang code

Next, we write a main.go file to call the md5 function in the .so file. The specific code is as follows:

package main

/*
#cgo LDFLAGS: -L./ -lmd5
#include <stdlib.h>

//引入C语言中的md5函数
char* md5(char* str);

//封装C语言函数,以便在Go中使用
char* c_md5(char* str){
    return md5(str);
}
*/
import "C"
import (
    "fmt"
    "unsafe"
)

func main() {
    str := "hello world"
    cstr := C.CString(str)
    defer C.free(unsafe.Pointer(cstr))

    md5 := C.GoString(C.c_md5(cstr))
    fmt.Println(md5)
}

In this Golang code, we use the cgo method to link the md5 function in C language with the Golang code, and call the md5 function of C language through Go language to calculate the md5 value of the string. It should be noted that first we used the comment "// #cgo LDFLAGS: -L./ -lmd5" to specify the path and name of the .so file, so that the Go language can correctly link the .so file during compilation;

Secondly, we declare the C language in the Go language through the two comments "//Introducing the md5 function in the C language" and "//Encapsulating the C language function for use in Go" md5 function, and encapsulates the C language function c_md5, so that we can easily call C language functions in Go language;

Finally, we convert the characters into C strings through the C.CString() function , and use C.GoString() at the end to convert the C string back to the string type in the Go language. It should also be noted that we need to manually call the C.free() function to release memory after using the C.CString() function to convert the string into C language characters to avoid memory leaks.

3. Summary

Through this simple case, we learned how to use the so method in Golang to improve our programming efficiency by linking C language library files. It should be noted that when using so files, we must pay attention to the paths of each file and the compiler and library versions. Especially on Mac OS systems, we may encounter version and support problems, so that in actual applications, Encountered some difficulties and problems. However, we believe that with the joint efforts of all developers, these problems will be solved step by step, and Golang's development efficiency will become higher and higher.

The above is the detailed content of golang uses so method. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Golang vs. Python: The Pros and ConsGolang vs. Python: The Pros and ConsApr 21, 2025 am 12:17 AM

Golangisidealforbuildingscalablesystemsduetoitsefficiencyandconcurrency,whilePythonexcelsinquickscriptinganddataanalysisduetoitssimplicityandvastecosystem.Golang'sdesignencouragesclean,readablecodeanditsgoroutinesenableefficientconcurrentoperations,t

Golang and C  : Concurrency vs. Raw SpeedGolang and C : Concurrency vs. Raw SpeedApr 21, 2025 am 12:16 AM

Golang is better than C in concurrency, while C is better than Golang in raw speed. 1) Golang achieves efficient concurrency through goroutine and channel, which is suitable for handling a large number of concurrent tasks. 2)C Through compiler optimization and standard library, it provides high performance close to hardware, suitable for applications that require extreme optimization.

Why Use Golang? Benefits and Advantages ExplainedWhy Use Golang? Benefits and Advantages ExplainedApr 21, 2025 am 12:15 AM

Reasons for choosing Golang include: 1) high concurrency performance, 2) static type system, 3) garbage collection mechanism, 4) rich standard libraries and ecosystems, which make it an ideal choice for developing efficient and reliable software.

Golang vs. C  : Performance and Speed ComparisonGolang vs. C : Performance and Speed ComparisonApr 21, 2025 am 12:13 AM

Golang is suitable for rapid development and concurrent scenarios, and C is suitable for scenarios where extreme performance and low-level control are required. 1) Golang improves performance through garbage collection and concurrency mechanisms, and is suitable for high-concurrency Web service development. 2) C achieves the ultimate performance through manual memory management and compiler optimization, and is suitable for embedded system development.

Is Golang Faster Than C  ? Exploring the LimitsIs Golang Faster Than C ? Exploring the LimitsApr 20, 2025 am 12:19 AM

Golang performs better in compilation time and concurrent processing, while C has more advantages in running speed and memory management. 1.Golang has fast compilation speed and is suitable for rapid development. 2.C runs fast and is suitable for performance-critical applications. 3. Golang is simple and efficient in concurrent processing, suitable for concurrent programming. 4.C Manual memory management provides higher performance, but increases development complexity.

Golang: From Web Services to System ProgrammingGolang: From Web Services to System ProgrammingApr 20, 2025 am 12:18 AM

Golang's application in web services and system programming is mainly reflected in its simplicity, efficiency and concurrency. 1) In web services, Golang supports the creation of high-performance web applications and APIs through powerful HTTP libraries and concurrent processing capabilities. 2) In system programming, Golang uses features close to hardware and compatibility with C language to be suitable for operating system development and embedded systems.

Golang vs. C  : Benchmarks and Real-World PerformanceGolang vs. C : Benchmarks and Real-World PerformanceApr 20, 2025 am 12:18 AM

Golang and C have their own advantages and disadvantages in performance comparison: 1. Golang is suitable for high concurrency and rapid development, but garbage collection may affect performance; 2.C provides higher performance and hardware control, but has high development complexity. When making a choice, you need to consider project requirements and team skills in a comprehensive way.

Golang vs. Python: A Comparative AnalysisGolang vs. Python: A Comparative AnalysisApr 20, 2025 am 12:17 AM

Golang is suitable for high-performance and concurrent programming scenarios, while Python is suitable for rapid development and data processing. 1.Golang emphasizes simplicity and efficiency, and is suitable for back-end services and microservices. 2. Python is known for its concise syntax and rich libraries, suitable for data science and machine learning.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools