| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- // Copyright 2015 The Go Authors. All rights reserved.
- // Use of this source code is governed by a BSD-style
- // license that can be found in the LICENSE file.
- package main
- import (
- "errors"
- "fmt"
- "io"
- "os/exec"
- "path/filepath"
- "strconv"
- "strings"
- "text/template"
- "golang.org/x/sync/errgroup"
- "golang.org/x/tools/go/packages"
- )
- func goAppleBind(gobind string, pkgs []*packages.Package, targets []targetInfo) error {
- var name string
- var title string
- if buildO == "" {
- name = pkgs[0].Name
- title = strings.Title(name)
- buildO = title + ".xcframework"
- } else {
- if !strings.HasSuffix(buildO, ".xcframework") {
- return fmt.Errorf("static framework name %q missing .xcframework suffix", buildO)
- }
- base := filepath.Base(buildO)
- name = base[:len(base)-len(".xcframework")]
- title = strings.Title(name)
- }
- if err := removeAll(buildO); err != nil {
- return err
- }
- outDirsForPlatform := map[string]string{}
- for _, t := range targets {
- outDirsForPlatform[t.platform] = filepath.Join(tmpdir, t.platform)
- }
- // Run the gobind command for each platform
- var gobindWG errgroup.Group
- for platform, outDir := range outDirsForPlatform {
- platform := platform
- outDir := outDir
- gobindWG.Go(func() error {
- // Catalyst support requires iOS 13+
- v, _ := strconv.ParseFloat(buildIOSVersion, 64)
- if platform == "maccatalyst" && v < 13.0 {
- return errors.New("catalyst requires -iosversion=13 or higher")
- }
- // Run gobind once per platform to generate the bindings
- cmd := exec.Command(
- gobind,
- "-lang=go,objc",
- "-outdir="+outDir,
- )
- cmd.Env = append(cmd.Env, "GOOS="+platformOS(platform))
- cmd.Env = append(cmd.Env, "CGO_ENABLED=1")
- tags := append(buildTags[:], platformTags(platform)...)
- cmd.Args = append(cmd.Args, "-tags="+strings.Join(tags, ","))
- if bindPrefix != "" {
- cmd.Args = append(cmd.Args, "-prefix="+bindPrefix)
- }
- for _, p := range pkgs {
- cmd.Args = append(cmd.Args, p.PkgPath)
- }
- if err := runCmd(cmd); err != nil {
- return err
- }
- return nil
- })
- }
- if err := gobindWG.Wait(); err != nil {
- return err
- }
- modulesUsed, err := areGoModulesUsed()
- if err != nil {
- return err
- }
- // Build archive files.
- var buildWG errgroup.Group
- for _, t := range targets {
- t := t
- buildWG.Go(func() error {
- outDir := outDirsForPlatform[t.platform]
- outSrcDir := filepath.Join(outDir, "src")
- if modulesUsed {
- // Copy the source directory for each architecture for concurrent building.
- newOutSrcDir := filepath.Join(outDir, "src-"+t.arch)
- if !buildN {
- if err := doCopyAll(newOutSrcDir, outSrcDir); err != nil {
- return err
- }
- }
- outSrcDir = newOutSrcDir
- }
- // Copy the environment variables to make this function concurrent-safe.
- env := make([]string, len(appleEnv[t.String()]))
- copy(env, appleEnv[t.String()])
- // Add the generated packages to GOPATH for reverse bindings.
- gopath := fmt.Sprintf("GOPATH=%s%c%s", outDir, filepath.ListSeparator, goEnv("GOPATH"))
- env = append(env, gopath)
- // Run `go mod tidy` to force to create go.sum.
- // Without go.sum, `go build` fails as of Go 1.16.
- if modulesUsed {
- if err := writeGoMod(outSrcDir, t.platform, t.arch); err != nil {
- return err
- }
- if err := goModTidyAt(outSrcDir, env); err != nil {
- return err
- }
- }
- if err := goAppleBindArchive(appleArchiveFilepath(name, t), env, outSrcDir); err != nil {
- return fmt.Errorf("%s/%s: %v", t.platform, t.arch, err)
- }
- return nil
- })
- }
- if err := buildWG.Wait(); err != nil {
- return err
- }
- var frameworkDirs []string
- frameworkArchCount := map[string]int{}
- for _, t := range targets {
- outDir := outDirsForPlatform[t.platform]
- gobindDir := filepath.Join(outDir, "src", "gobind")
- env := appleEnv[t.String()][:]
- sdk := getenv(env, "DARWIN_SDK")
- frameworkDir := filepath.Join(tmpdir, t.platform, sdk, title+".framework")
- frameworkDirs = append(frameworkDirs, frameworkDir)
- frameworkArchCount[frameworkDir] = frameworkArchCount[frameworkDir] + 1
- versionsDir := filepath.Join(frameworkDir, "Versions")
- versionsADir := filepath.Join(versionsDir, "A")
- titlePath := filepath.Join(versionsADir, title)
- if frameworkArchCount[frameworkDir] > 1 {
- // Not the first static lib, attach to a fat library and skip create headers
- fatCmd := exec.Command(
- "xcrun",
- "lipo", appleArchiveFilepath(name, t), titlePath, "-create", "-output", titlePath,
- )
- if err := runCmd(fatCmd); err != nil {
- return err
- }
- continue
- }
- versionsAHeadersDir := filepath.Join(versionsADir, "Headers")
- if err := mkdir(versionsAHeadersDir); err != nil {
- return err
- }
- if err := symlink("A", filepath.Join(versionsDir, "Current")); err != nil {
- return err
- }
- if err := symlink("Versions/Current/Headers", filepath.Join(frameworkDir, "Headers")); err != nil {
- return err
- }
- if err := symlink(filepath.Join("Versions/Current", title), filepath.Join(frameworkDir, title)); err != nil {
- return err
- }
- lipoCmd := exec.Command(
- "xcrun",
- "lipo", appleArchiveFilepath(name, t), "-create", "-o", titlePath,
- )
- if err := runCmd(lipoCmd); err != nil {
- return err
- }
- fileBases := make([]string, len(pkgs)+1)
- for i, pkg := range pkgs {
- fileBases[i] = bindPrefix + strings.Title(pkg.Name)
- }
- fileBases[len(fileBases)-1] = "Universe"
- // Copy header file next to output archive.
- var headerFiles []string
- if len(fileBases) == 1 {
- headerFiles = append(headerFiles, title+".h")
- err := copyFile(
- filepath.Join(versionsAHeadersDir, title+".h"),
- filepath.Join(gobindDir, bindPrefix+title+".objc.h"),
- )
- if err != nil {
- return err
- }
- } else {
- for _, fileBase := range fileBases {
- headerFiles = append(headerFiles, fileBase+".objc.h")
- err := copyFile(
- filepath.Join(versionsAHeadersDir, fileBase+".objc.h"),
- filepath.Join(gobindDir, fileBase+".objc.h"),
- )
- if err != nil {
- return err
- }
- }
- err := copyFile(
- filepath.Join(versionsAHeadersDir, "ref.h"),
- filepath.Join(gobindDir, "ref.h"),
- )
- if err != nil {
- return err
- }
- headerFiles = append(headerFiles, title+".h")
- err = writeFile(filepath.Join(versionsAHeadersDir, title+".h"), func(w io.Writer) error {
- return appleBindHeaderTmpl.Execute(w, map[string]interface{}{
- "pkgs": pkgs, "title": title, "bases": fileBases,
- })
- })
- if err != nil {
- return err
- }
- }
- if err := mkdir(filepath.Join(versionsADir, "Resources")); err != nil {
- return err
- }
- if err := symlink("Versions/Current/Resources", filepath.Join(frameworkDir, "Resources")); err != nil {
- return err
- }
- err = writeFile(filepath.Join(frameworkDir, "Resources", "Info.plist"), func(w io.Writer) error {
- _, err := w.Write([]byte(appleBindInfoPlist))
- return err
- })
- if err != nil {
- return err
- }
- var mmVals = struct {
- Module string
- Headers []string
- }{
- Module: title,
- Headers: headerFiles,
- }
- err = writeFile(filepath.Join(versionsADir, "Modules", "module.modulemap"), func(w io.Writer) error {
- return appleModuleMapTmpl.Execute(w, mmVals)
- })
- if err != nil {
- return err
- }
- err = symlink(filepath.Join("Versions/Current/Modules"), filepath.Join(frameworkDir, "Modules"))
- if err != nil {
- return err
- }
- }
- // Finally combine all frameworks to an XCFramework
- xcframeworkArgs := []string{"-create-xcframework"}
- for _, dir := range frameworkDirs {
- xcframeworkArgs = append(xcframeworkArgs, "-framework", dir)
- }
- xcframeworkArgs = append(xcframeworkArgs, "-output", buildO)
- cmd := exec.Command("xcodebuild", xcframeworkArgs...)
- err = runCmd(cmd)
- return err
- }
- const appleBindInfoPlist = `<?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
- <plist version="1.0">
- <dict>
- </dict>
- </plist>
- `
- var appleModuleMapTmpl = template.Must(template.New("iosmmap").Parse(`framework module "{{.Module}}" {
- header "ref.h"
- {{range .Headers}} header "{{.}}"
- {{end}}
- export *
- }`))
- func appleArchiveFilepath(name string, t targetInfo) string {
- return filepath.Join(tmpdir, name+"-"+t.platform+"-"+t.arch+".a")
- }
- func goAppleBindArchive(out string, env []string, gosrc string) error {
- return goBuildAt(gosrc, "./gobind", env, "-buildmode=c-archive", "-o", out)
- }
- var appleBindHeaderTmpl = template.Must(template.New("apple.h").Parse(`
- // Objective-C API for talking to the following Go packages
- //
- {{range .pkgs}}// {{.PkgPath}}
- {{end}}//
- // File is generated by gomobile bind. Do not edit.
- #ifndef __{{.title}}_FRAMEWORK_H__
- #define __{{.title}}_FRAMEWORK_H__
- {{range .bases}}#include "{{.}}.objc.h"
- {{end}}
- #endif
- `))
|