85 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// +build !windows,!linux
 | 
						|
 | 
						|
/*
 | 
						|
   Copyright The containerd Authors.
 | 
						|
 | 
						|
   Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
   you may not use this file except in compliance with the License.
 | 
						|
   You may obtain a copy of the License at
 | 
						|
 | 
						|
       http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
 | 
						|
   Unless required by applicable law or agreed to in writing, software
 | 
						|
   distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
   See the License for the specific language governing permissions and
 | 
						|
   limitations under the License.
 | 
						|
*/
 | 
						|
 | 
						|
package shim
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"io"
 | 
						|
	"sync"
 | 
						|
	"syscall"
 | 
						|
 | 
						|
	"github.com/containerd/console"
 | 
						|
	"github.com/containerd/fifo"
 | 
						|
)
 | 
						|
 | 
						|
type unixPlatform struct {
 | 
						|
}
 | 
						|
 | 
						|
func (p *unixPlatform) CopyConsole(ctx context.Context, console console.Console, stdin, stdout, stderr string, wg, cwg *sync.WaitGroup) (console.Console, error) {
 | 
						|
	if stdin != "" {
 | 
						|
		in, err := fifo.OpenFifo(ctx, stdin, syscall.O_RDONLY, 0)
 | 
						|
		if err != nil {
 | 
						|
			return nil, err
 | 
						|
		}
 | 
						|
		cwg.Add(1)
 | 
						|
		go func() {
 | 
						|
			cwg.Done()
 | 
						|
			p := bufPool.Get().(*[]byte)
 | 
						|
			defer bufPool.Put(p)
 | 
						|
 | 
						|
			io.CopyBuffer(console, in, *p)
 | 
						|
		}()
 | 
						|
	}
 | 
						|
	outw, err := fifo.OpenFifo(ctx, stdout, syscall.O_WRONLY, 0)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	outr, err := fifo.OpenFifo(ctx, stdout, syscall.O_RDONLY, 0)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	wg.Add(1)
 | 
						|
	cwg.Add(1)
 | 
						|
	go func() {
 | 
						|
		cwg.Done()
 | 
						|
		p := bufPool.Get().(*[]byte)
 | 
						|
		defer bufPool.Put(p)
 | 
						|
 | 
						|
		io.CopyBuffer(outw, console, *p)
 | 
						|
		console.Close()
 | 
						|
		outr.Close()
 | 
						|
		outw.Close()
 | 
						|
		wg.Done()
 | 
						|
	}()
 | 
						|
	return console, nil
 | 
						|
}
 | 
						|
 | 
						|
func (p *unixPlatform) ShutdownConsole(ctx context.Context, cons console.Console) error {
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (p *unixPlatform) Close() error {
 | 
						|
	return nil
 | 
						|
}
 | 
						|
 | 
						|
func (s *Service) initPlatform() error {
 | 
						|
	s.platform = &unixPlatform{}
 | 
						|
	return nil
 | 
						|
}
 |