| 
									
										
										
										
											2024-08-23 15:15:35 +00:00
										 |  |  | // GoToSocial | 
					
						
							|  |  |  | // Copyright (C) GoToSocial Authors admin@gotosocial.org | 
					
						
							|  |  |  | // SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  | // it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  | // (at your option) any later version. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | // GNU Affero General Public License for more details. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  | // along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-02-03 12:42:06 +00:00
										 |  |  | //go:build !nowasmffmpeg && !nowasm | 
					
						
							| 
									
										
										
										
											2024-10-14 09:59:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-08-23 15:15:35 +00:00
										 |  |  | package ffmpeg | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"context" | 
					
						
							|  |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2025-02-06 12:44:40 +00:00
										 |  |  | 	"runtime" | 
					
						
							| 
									
										
										
										
											2024-11-06 13:38:13 +00:00
										 |  |  | 	"sync/atomic" | 
					
						
							|  |  |  | 	"unsafe" | 
					
						
							| 
									
										
										
										
											2024-08-23 15:15:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-04-26 15:34:10 +02:00
										 |  |  | 	"code.superseriousbusiness.org/gotosocial/internal/log" | 
					
						
							| 
									
										
										
										
											2024-11-06 13:38:13 +00:00
										 |  |  | 	"codeberg.org/gruf/go-ffmpreg/embed" | 
					
						
							| 
									
										
										
										
											2024-10-06 20:53:03 +00:00
										 |  |  | 	"codeberg.org/gruf/go-ffmpreg/wasm" | 
					
						
							| 
									
										
										
										
											2024-08-23 15:15:35 +00:00
										 |  |  | 	"github.com/tetratelabs/wazero" | 
					
						
							| 
									
										
										
										
											2025-02-06 12:44:40 +00:00
										 |  |  | 	"golang.org/x/sys/cpu" | 
					
						
							| 
									
										
										
										
											2024-08-23 15:15:35 +00:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-06 13:38:13 +00:00
										 |  |  | // ffmpreg is a concurrency-safe pointer | 
					
						
							|  |  |  | // to our necessary WebAssembly runtime | 
					
						
							|  |  |  | // and compiled ffmpreg module instance. | 
					
						
							|  |  |  | var ffmpreg atomic.Pointer[struct { | 
					
						
							|  |  |  | 	run wazero.Runtime | 
					
						
							|  |  |  | 	mod wazero.CompiledModule | 
					
						
							|  |  |  | }] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // initWASM safely prepares new WebAssembly runtime | 
					
						
							|  |  |  | // and compiles ffmpreg module instance, if the global | 
					
						
							|  |  |  | // pointer has not been already. else, is a no-op. | 
					
						
							|  |  |  | func initWASM(ctx context.Context) error { | 
					
						
							|  |  |  | 	if ffmpreg.Load() != nil { | 
					
						
							| 
									
										
										
										
											2024-08-23 15:15:35 +00:00
										 |  |  | 		return nil | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-02-06 12:44:40 +00:00
										 |  |  | 	var cfg wazero.RuntimeConfig | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-10 17:21:56 +00:00
										 |  |  | 	// Allocate new runtime config, letting | 
					
						
							|  |  |  | 	// wazero determine compiler / interpreter. | 
					
						
							|  |  |  | 	cfg = wazero.NewRuntimeConfig() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Though still perform a check of CPU features at | 
					
						
							|  |  |  | 	// runtime to warn about slow interpreter performance. | 
					
						
							|  |  |  | 	if reason, supported := compilerSupported(); !supported { | 
					
						
							|  |  |  | 		log.Warn(ctx, "!!! WAZERO COMPILER MAY NOT BE AVAILABLE !!!"+ | 
					
						
							|  |  |  | 			" Reason: "+reason+"."+ | 
					
						
							|  |  |  | 			" Wazero will likely fall back to interpreter mode,"+ | 
					
						
							|  |  |  | 			" resulting in poor performance for media processing (and SQLite, if in use)."+ | 
					
						
							|  |  |  | 			" For more info and possible workarounds, please check:"+ | 
					
						
							|  |  |  | 			" https://docs.gotosocial.org/en/latest/getting_started/releases/#supported-platforms", | 
					
						
							|  |  |  | 		) | 
					
						
							| 
									
										
										
										
											2025-02-06 12:44:40 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2024-08-23 15:15:35 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if dir := os.Getenv("GTS_WAZERO_COMPILATION_CACHE"); dir != "" { | 
					
						
							|  |  |  | 		// Use on-filesystem compilation cache given by env. | 
					
						
							| 
									
										
										
										
											2024-10-28 10:55:48 +00:00
										 |  |  | 		cache, err := wazero.NewCompilationCacheWithDir(dir) | 
					
						
							| 
									
										
										
										
											2024-08-23 15:15:35 +00:00
										 |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-28 10:55:48 +00:00
										 |  |  | 		// Update runtime config with cache. | 
					
						
							|  |  |  | 		cfg = cfg.WithCompilationCache(cache) | 
					
						
							| 
									
										
										
										
											2024-08-23 15:15:35 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-06 13:38:13 +00:00
										 |  |  | 	var ( | 
					
						
							|  |  |  | 		run wazero.Runtime | 
					
						
							|  |  |  | 		mod wazero.CompiledModule | 
					
						
							|  |  |  | 		err error | 
					
						
							|  |  |  | 		set bool | 
					
						
							|  |  |  | 	) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	defer func() { | 
					
						
							|  |  |  | 		if err == nil && set { | 
					
						
							|  |  |  | 			// Drop binary. | 
					
						
							|  |  |  | 			embed.B = nil | 
					
						
							|  |  |  | 			return | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Close module. | 
					
						
							|  |  |  | 		if !isNil(mod) { | 
					
						
							|  |  |  | 			mod.Close(ctx) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// Close runtime. | 
					
						
							|  |  |  | 		if !isNil(run) { | 
					
						
							|  |  |  | 			run.Close(ctx) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-28 10:55:48 +00:00
										 |  |  | 	// Initialize new runtime from config. | 
					
						
							| 
									
										
										
										
											2024-11-06 13:38:13 +00:00
										 |  |  | 	run, err = wasm.NewRuntime(ctx, cfg) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Compile ffmpreg WebAssembly into memory. | 
					
						
							|  |  |  | 	mod, err = run.CompileModule(ctx, embed.B) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Try set global WASM runtime and module, | 
					
						
							|  |  |  | 	// or if beaten to it defer will handle close. | 
					
						
							|  |  |  | 	set = ffmpreg.CompareAndSwap(nil, &struct { | 
					
						
							|  |  |  | 		run wazero.Runtime | 
					
						
							|  |  |  | 		mod wazero.CompiledModule | 
					
						
							|  |  |  | 	}{ | 
					
						
							|  |  |  | 		run: run, | 
					
						
							|  |  |  | 		mod: mod, | 
					
						
							|  |  |  | 	}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-03-10 17:21:56 +00:00
										 |  |  | func compilerSupported() (string, bool) { | 
					
						
							| 
									
										
										
										
											2025-02-06 12:44:40 +00:00
										 |  |  | 	switch runtime.GOOS { | 
					
						
							|  |  |  | 	case "linux", "android", | 
					
						
							|  |  |  | 		"windows", "darwin", | 
					
						
							|  |  |  | 		"freebsd", "netbsd", "dragonfly", | 
					
						
							|  |  |  | 		"solaris", "illumos": | 
					
						
							|  |  |  | 		break | 
					
						
							|  |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2025-03-10 17:21:56 +00:00
										 |  |  | 		return "unsupported OS", false | 
					
						
							| 
									
										
										
										
											2025-02-06 12:44:40 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	switch runtime.GOARCH { | 
					
						
							|  |  |  | 	case "amd64": | 
					
						
							| 
									
										
										
										
											2025-03-10 17:21:56 +00:00
										 |  |  | 		// NOTE: wazero in the future may decouple the | 
					
						
							|  |  |  | 		// requirement of simd (sse4_1) from requirements | 
					
						
							|  |  |  | 		// for compiler support in the future, but even | 
					
						
							|  |  |  | 		// still our module go-ffmpreg makes use of them. | 
					
						
							|  |  |  | 		return "amd64 SSE4.1 required", cpu.X86.HasSSE41 | 
					
						
							| 
									
										
										
										
											2025-02-06 12:44:40 +00:00
										 |  |  | 	case "arm64": | 
					
						
							| 
									
										
										
										
											2025-03-10 17:21:56 +00:00
										 |  |  | 		// NOTE: this particular check may change if we | 
					
						
							|  |  |  | 		// later update go-ffmpreg to a version that makes | 
					
						
							|  |  |  | 		// use of threads, i.e. v7.x.x. in that case we would | 
					
						
							|  |  |  | 		// need to check for cpu.ARM64.HasATOMICS. | 
					
						
							|  |  |  | 		return "", true | 
					
						
							| 
									
										
										
										
											2025-02-06 12:44:40 +00:00
										 |  |  | 	default: | 
					
						
							| 
									
										
										
										
											2025-03-10 17:21:56 +00:00
										 |  |  | 		return "unsupported ARCH", false | 
					
						
							| 
									
										
										
										
											2025-02-06 12:44:40 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-11-06 13:38:13 +00:00
										 |  |  | // isNil will safely check if 'v' is nil without | 
					
						
							|  |  |  | // dealing with weird Go interface nil bullshit. | 
					
						
							|  |  |  | func isNil(i interface{}) bool { | 
					
						
							|  |  |  | 	type eface struct{ Type, Data unsafe.Pointer } | 
					
						
							|  |  |  | 	return (*eface)(unsafe.Pointer(&i)).Data == nil | 
					
						
							| 
									
										
										
										
											2024-08-23 15:15:35 +00:00
										 |  |  | } |