 d656fa38ca
			
		
	
	d656fa38ca
	
	
	
		
			
			Introduce LogURIGenerator helper function in cio package. It is used in the restart options, like WithBinaryLogURI and WithFileLogURI. And restart.LogPathLabel might be used in production and work well. In order to reduce breaking change, the LogPathLabel is still recognized if new LogURILabel is not set. In next release 1.5, the LogPathLabel will be removed. Signed-off-by: Wei Fu <fuweid89@gmail.com>
		
			
				
	
	
		
			95 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			95 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
|    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 monitor
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"net/url"
 | |
| 	"syscall"
 | |
| 
 | |
| 	"github.com/containerd/containerd"
 | |
| 	"github.com/containerd/containerd/cio"
 | |
| 	"github.com/pkg/errors"
 | |
| 	"github.com/sirupsen/logrus"
 | |
| )
 | |
| 
 | |
| type stopChange struct {
 | |
| 	container containerd.Container
 | |
| }
 | |
| 
 | |
| func (s *stopChange) apply(ctx context.Context, client *containerd.Client) error {
 | |
| 	return killTask(ctx, s.container)
 | |
| }
 | |
| 
 | |
| type startChange struct {
 | |
| 	container containerd.Container
 | |
| 	logURI    string
 | |
| 
 | |
| 	// Deprecated(in release 1.5): but recognized now, prefer to use logURI
 | |
| 	logPath string
 | |
| }
 | |
| 
 | |
| func (s *startChange) apply(ctx context.Context, client *containerd.Client) error {
 | |
| 	log := cio.NullIO
 | |
| 
 | |
| 	if s.logURI != "" {
 | |
| 		uri, err := url.Parse(s.logURI)
 | |
| 		if err != nil {
 | |
| 			return errors.Wrapf(err, "failed to parse %v into url", s.logURI)
 | |
| 		}
 | |
| 		log = cio.LogURI(uri)
 | |
| 	} else if s.logPath != "" {
 | |
| 		log = cio.LogFile(s.logPath)
 | |
| 	}
 | |
| 
 | |
| 	if s.logURI != "" && s.logPath != "" {
 | |
| 		logrus.Warnf("LogPathLabel=%v has been deprecated, using LogURILabel=%v",
 | |
| 			s.logPath, s.logURI)
 | |
| 	}
 | |
| 
 | |
| 	killTask(ctx, s.container)
 | |
| 	task, err := s.container.NewTask(ctx, log)
 | |
| 	if err != nil {
 | |
| 		return err
 | |
| 	}
 | |
| 	return task.Start(ctx)
 | |
| }
 | |
| 
 | |
| func killTask(ctx context.Context, container containerd.Container) error {
 | |
| 	task, err := container.Task(ctx, nil)
 | |
| 	if err == nil {
 | |
| 		wait, err := task.Wait(ctx)
 | |
| 		if err != nil {
 | |
| 			if _, derr := task.Delete(ctx); derr == nil {
 | |
| 				return nil
 | |
| 			}
 | |
| 			return err
 | |
| 		}
 | |
| 		if err := task.Kill(ctx, syscall.SIGKILL, containerd.WithKillAll); err != nil {
 | |
| 			if _, derr := task.Delete(ctx); derr == nil {
 | |
| 				return nil
 | |
| 			}
 | |
| 			return err
 | |
| 		}
 | |
| 		<-wait
 | |
| 		if _, err := task.Delete(ctx); err != nil {
 | |
| 			return err
 | |
| 		}
 | |
| 	}
 | |
| 	return nil
 | |
| }
 |