mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	* update github.com/PuerkitoBio/goquery * update github.com/alecthomas/chroma * update github.com/blevesearch/bleve/v2 * update github.com/caddyserver/certmagic * update github.com/go-enry/go-enry/v2 * update github.com/go-git/go-billy/v5 * update github.com/go-git/go-git/v5 * update github.com/go-redis/redis/v8 * update github.com/go-testfixtures/testfixtures/v3 * update github.com/jaytaylor/html2text * update github.com/json-iterator/go * update github.com/klauspost/compress * update github.com/markbates/goth * update github.com/mattn/go-isatty * update github.com/mholt/archiver/v3 * update github.com/microcosm-cc/bluemonday * update github.com/minio/minio-go/v7 * update github.com/prometheus/client_golang * update github.com/unrolled/render * update github.com/xanzy/go-gitlab * update github.com/yuin/goldmark * update github.com/yuin/goldmark-highlighting Co-authored-by: techknowlogick <techknowlogick@gitea.io>
		
			
				
	
	
		
			86 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
		
			Vendored
		
	
	
	
| // +build plan9
 | |
| 
 | |
| package osfs
 | |
| 
 | |
| import (
 | |
| 	"io"
 | |
| 	"os"
 | |
| 	"path/filepath"
 | |
| 	"syscall"
 | |
| )
 | |
| 
 | |
| func (f *file) Lock() error {
 | |
| 	// Plan 9 uses a mode bit instead of explicit lock/unlock syscalls.
 | |
| 	//
 | |
| 	// Per http://man.cat-v.org/plan_9/5/stat: “Exclusive use files may be open
 | |
| 	// for I/O by only one fid at a time across all clients of the server. If a
 | |
| 	// second open is attempted, it draws an error.”
 | |
| 	//
 | |
| 	// There is no obvious way to implement this function using the exclusive use bit.
 | |
| 	// See https://golang.org/src/cmd/go/internal/lockedfile/lockedfile_plan9.go
 | |
| 	// for how file locking is done by the go tool on Plan 9.
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func (f *file) Unlock() error {
 | |
| 	return nil
 | |
| }
 | |
| 
 | |
| func rename(from, to string) error {
 | |
| 	// If from and to are in different directories, copy the file
 | |
| 	// since Plan 9 does not support cross-directory rename.
 | |
| 	if filepath.Dir(from) != filepath.Dir(to) {
 | |
| 		fi, err := os.Stat(from)
 | |
| 		if err != nil {
 | |
| 			return &os.LinkError{"rename", from, to, err}
 | |
| 		}
 | |
| 		if fi.Mode().IsDir() {
 | |
| 			return &os.LinkError{"rename", from, to, syscall.EISDIR}
 | |
| 		}
 | |
| 		fromFile, err := os.Open(from)
 | |
| 		if err != nil {
 | |
| 			return &os.LinkError{"rename", from, to, err}
 | |
| 		}
 | |
| 		toFile, err := os.OpenFile(to, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, fi.Mode())
 | |
| 		if err != nil {
 | |
| 			return &os.LinkError{"rename", from, to, err}
 | |
| 		}
 | |
| 		_, err = io.Copy(toFile, fromFile)
 | |
| 		if err != nil {
 | |
| 			return &os.LinkError{"rename", from, to, err}
 | |
| 		}
 | |
| 
 | |
| 		// Copy mtime and mode from original file.
 | |
| 		// We need only one syscall if we avoid os.Chmod and os.Chtimes.
 | |
| 		dir := fi.Sys().(*syscall.Dir)
 | |
| 		var d syscall.Dir
 | |
| 		d.Null()
 | |
| 		d.Mtime = dir.Mtime
 | |
| 		d.Mode = dir.Mode
 | |
| 		if err = dirwstat(to, &d); err != nil {
 | |
| 			return &os.LinkError{"rename", from, to, err}
 | |
| 		}
 | |
| 
 | |
| 		// Remove original file.
 | |
| 		err = os.Remove(from)
 | |
| 		if err != nil {
 | |
| 			return &os.LinkError{"rename", from, to, err}
 | |
| 		}
 | |
| 		return nil
 | |
| 	}
 | |
| 	return os.Rename(from, to)
 | |
| }
 | |
| 
 | |
| func dirwstat(name string, d *syscall.Dir) error {
 | |
| 	var buf [syscall.STATFIXLEN]byte
 | |
| 
 | |
| 	n, err := d.Marshal(buf[:])
 | |
| 	if err != nil {
 | |
| 		return &os.PathError{"dirwstat", name, err}
 | |
| 	}
 | |
| 	if err = syscall.Wstat(name, buf[:n]); err != nil {
 | |
| 		return &os.PathError{"dirwstat", name, err}
 | |
| 	}
 | |
| 	return nil
 | |
| }
 |