mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	* Dropped unused codekit config * Integrated dynamic and static bindata for public * Ignore public bindata * Add a general generate make task * Integrated flexible public assets into web command * Updated vendoring, added all missiong govendor deps * Made the linter happy with the bindata and dynamic code * Moved public bindata definition to modules directory * Ignoring the new bindata path now * Updated to the new public modules import path * Updated public bindata command and drop the new prefix
		
			
				
	
	
		
			50 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package deadline
 | 
						|
 | 
						|
import (
 | 
						|
	"io"
 | 
						|
	"time"
 | 
						|
)
 | 
						|
 | 
						|
type DeadlineReader interface {
 | 
						|
	io.Reader
 | 
						|
	SetReadDeadline(t time.Time) error
 | 
						|
}
 | 
						|
 | 
						|
type DeadlineWriter interface {
 | 
						|
	io.Writer
 | 
						|
	SetWriteDeadline(t time.Time) error
 | 
						|
}
 | 
						|
 | 
						|
type DeadlineReadWriter interface {
 | 
						|
	io.ReadWriter
 | 
						|
	SetReadDeadline(t time.Time) error
 | 
						|
	SetWriteDeadline(t time.Time) error
 | 
						|
}
 | 
						|
 | 
						|
type deadlineReader struct {
 | 
						|
	DeadlineReader
 | 
						|
	timeout time.Duration
 | 
						|
}
 | 
						|
 | 
						|
func (r *deadlineReader) Read(p []byte) (int, error) {
 | 
						|
	r.DeadlineReader.SetReadDeadline(time.Now().Add(r.timeout))
 | 
						|
	return r.DeadlineReader.Read(p)
 | 
						|
}
 | 
						|
 | 
						|
func NewDeadlineReader(r DeadlineReader, timeout time.Duration) io.Reader {
 | 
						|
	return &deadlineReader{DeadlineReader: r, timeout: timeout}
 | 
						|
}
 | 
						|
 | 
						|
type deadlineWriter struct {
 | 
						|
	DeadlineWriter
 | 
						|
	timeout time.Duration
 | 
						|
}
 | 
						|
 | 
						|
func (r *deadlineWriter) Write(p []byte) (int, error) {
 | 
						|
	r.DeadlineWriter.SetWriteDeadline(time.Now().Add(r.timeout))
 | 
						|
	return r.DeadlineWriter.Write(p)
 | 
						|
}
 | 
						|
 | 
						|
func NewDeadlineWriter(r DeadlineWriter, timeout time.Duration) io.Writer {
 | 
						|
	return &deadlineWriter{DeadlineWriter: r, timeout: timeout}
 | 
						|
}
 |