Home Backend Development Golang golang uses so method

golang uses so method

May 10, 2023 am 09:26 AM

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;
}
Copy after login

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
Copy after login

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)
}
Copy after login

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 of this Website
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

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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Go language pack import: What is the difference between underscore and without underscore? Go language pack import: What is the difference between underscore and without underscore? Mar 03, 2025 pm 05:17 PM

This article explains Go's package import mechanisms: named imports (e.g., import &quot;fmt&quot;) and blank imports (e.g., import _ &quot;fmt&quot;). Named imports make package contents accessible, while blank imports only execute t

How to implement short-term information transfer between pages in the Beego framework? How to implement short-term information transfer between pages in the Beego framework? Mar 03, 2025 pm 05:22 PM

This article explains Beego's NewFlash() function for inter-page data transfer in web applications. It focuses on using NewFlash() to display temporary messages (success, error, warning) between controllers, leveraging the session mechanism. Limita

How to convert MySQL query result List into a custom structure slice in Go language? How to convert MySQL query result List into a custom structure slice in Go language? Mar 03, 2025 pm 05:18 PM

This article details efficient conversion of MySQL query results into Go struct slices. It emphasizes using database/sql's Scan method for optimal performance, avoiding manual parsing. Best practices for struct field mapping using db tags and robus

How do I write mock objects and stubs for testing in Go? How do I write mock objects and stubs for testing in Go? Mar 10, 2025 pm 05:38 PM

This article demonstrates creating mocks and stubs in Go for unit testing. It emphasizes using interfaces, provides examples of mock implementations, and discusses best practices like keeping mocks focused and using assertion libraries. The articl

How can I define custom type constraints for generics in Go? How can I define custom type constraints for generics in Go? Mar 10, 2025 pm 03:20 PM

This article explores Go's custom type constraints for generics. It details how interfaces define minimum type requirements for generic functions, improving type safety and code reusability. The article also discusses limitations and best practices

How to write files in Go language conveniently? How to write files in Go language conveniently? Mar 03, 2025 pm 05:15 PM

This article details efficient file writing in Go, comparing os.WriteFile (suitable for small files) with os.OpenFile and buffered writes (optimal for large files). It emphasizes robust error handling, using defer, and checking for specific errors.

How do you write unit tests in Go? How do you write unit tests in Go? Mar 21, 2025 pm 06:34 PM

The article discusses writing unit tests in Go, covering best practices, mocking techniques, and tools for efficient test management.

How can I use tracing tools to understand the execution flow of my Go applications? How can I use tracing tools to understand the execution flow of my Go applications? Mar 10, 2025 pm 05:36 PM

This article explores using tracing tools to analyze Go application execution flow. It discusses manual and automatic instrumentation techniques, comparing tools like Jaeger, Zipkin, and OpenTelemetry, and highlighting effective data visualization

See all articles