@@ -50,8 +50,7 @@ import (
50
50
51
51
const (
52
52
runhcsBinary = "runhcs"
53
- runhcsVersion = "0.0.1"
54
- runhcsDebugLegacy = "--debug" // TODO: JTERRY75 remove when all cmd's are complete in go-runhcs
53
+ runhcsShimVersion = "0.0.1"
55
54
)
56
55
57
56
var (
@@ -201,41 +200,9 @@ func (s *service) State(ctx context.Context, r *taskAPI.StateRequest) (*taskAPI.
201
200
return nil , err
202
201
}
203
202
204
- cmd := exec .Command (runhcsBinary , runhcsDebugLegacy , "state" , p .id )
205
- sout := getBuffer ()
206
- defer putBuffer (sout )
207
-
208
- cmd .Stdout = sout
209
- _ , stateErr := runCmd (ctx , cmd )
210
- if stateErr != nil {
211
- return nil , stateErr
212
- }
213
-
214
- // TODO: JTERRY75 merge this with runhcs declaration
215
- type containerState struct {
216
- // Version is the OCI version for the container
217
- Version string `json:"ociVersion"`
218
- // ID is the container ID
219
- ID string `json:"id"`
220
- // InitProcessPid is the init process id in the parent namespace
221
- InitProcessPid int `json:"pid"`
222
- // Status is the current status of the container, running, paused, ...
223
- Status string `json:"status"`
224
- // Bundle is the path on the filesystem to the bundle
225
- Bundle string `json:"bundle"`
226
- // Rootfs is a path to a directory containing the container's root filesystem.
227
- Rootfs string `json:"rootfs"`
228
- // Created is the unix timestamp for the creation time of the container in UTC
229
- Created time.Time `json:"created"`
230
- // Annotations is the user defined annotations added to the config.
231
- Annotations map [string ]string `json:"annotations,omitempty"`
232
- // The owner of the state directory (the owner of the container).
233
- Owner string `json:"owner"`
234
- }
235
-
236
- var cs containerState
237
- if err := json .NewDecoder (sout ).Decode (& cs ); err != nil {
238
- log .G (ctx ).WithError (err ).Debugf ("failed to decode runhcs state output: %s" , sout .Bytes ())
203
+ rhcs := newRunhcs (p .bundle )
204
+ cs , err := rhcs .State (ctx , p .id )
205
+ if err != nil {
239
206
return nil , err
240
207
}
241
208
@@ -551,13 +518,14 @@ func (s *service) Pids(ctx context.Context, r *taskAPI.PidsRequest) (*taskAPI.Pi
551
518
// Pause the container
552
519
func (s * service ) Pause (ctx context.Context , r * taskAPI.PauseRequest ) (* ptypes.Empty , error ) {
553
520
// TODO: Validate that 'id' is actually a valid parent container ID
554
- if _ , err := s .getProcess (r .ID , "" ); err != nil {
521
+ var p * process
522
+ var err error
523
+ if p , err = s .getProcess (r .ID , "" ); err != nil {
555
524
return nil , err
556
525
}
557
526
558
- cmd := exec .Command (runhcsBinary , runhcsDebugLegacy , "pause" , r .ID )
559
- _ , err := runCmd (ctx , cmd )
560
- if err != nil {
527
+ rhcs := newRunhcs (p .bundle )
528
+ if err = rhcs .Pause (ctx , p .id ); err != nil {
561
529
return nil , err
562
530
}
563
531
@@ -567,13 +535,14 @@ func (s *service) Pause(ctx context.Context, r *taskAPI.PauseRequest) (*ptypes.E
567
535
// Resume the container
568
536
func (s * service ) Resume (ctx context.Context , r * taskAPI.ResumeRequest ) (* ptypes.Empty , error ) {
569
537
// TODO: Validate that 'id' is actually a valid parent container ID
570
- if _ , err := s .getProcess (r .ID , "" ); err != nil {
538
+ var p * process
539
+ var err error
540
+ if p , err = s .getProcess (r .ID , "" ); err != nil {
571
541
return nil , err
572
542
}
573
543
574
- cmd := exec .Command (runhcsBinary , runhcsDebugLegacy , "resume" , r .ID )
575
- _ , err := runCmd (ctx , cmd )
576
- if err != nil {
544
+ rhcs := newRunhcs (p .bundle )
545
+ if err = rhcs .Resume (ctx , p .id ); err != nil {
577
546
return nil , err
578
547
}
579
548
@@ -599,7 +568,7 @@ func (s *service) Kill(ctx context.Context, r *taskAPI.KillRequest) (*ptypes.Emp
599
568
// TODO: JTERRY75 runhcs support for r.All?
600
569
rhcs := newRunhcs (p .bundle )
601
570
if err = rhcs .Kill (ctx , p .id , strconv .FormatUint (uint64 (r .Signal ), 10 )); err != nil {
602
- if ! strings .Contains (err .Error (), "container is not running " ) {
571
+ if ! strings .Contains (err .Error (), "container is stopped " ) {
603
572
return nil , err
604
573
}
605
574
}
@@ -698,18 +667,12 @@ func (s *service) ResizePty(ctx context.Context, r *taskAPI.ResizePtyRequest) (*
698
667
return nil , err
699
668
}
700
669
701
- cmd := exec .Command (
702
- runhcsBinary ,
703
- runhcsDebugLegacy ,
704
- "resize-tty" ,
705
- p .cid ,
706
- "-p" ,
707
- strconv .FormatUint (uint64 (p .pid ), 10 ),
708
- strconv .FormatUint (uint64 (r .Width ), 10 ),
709
- strconv .FormatUint (uint64 (r .Height ), 10 ))
710
-
711
- _ , err = runCmd (ctx , cmd )
712
- if err != nil {
670
+ pid := int (p .pid )
671
+ opts := runhcs.ResizeTTYOpts {
672
+ Pid : & pid ,
673
+ }
674
+ rhcs := newRunhcs (p .bundle )
675
+ if err = rhcs .ResizeTTY (ctx , p .cid , uint16 (r .Width ), uint16 (r .Height ), & opts ); err != nil {
713
676
return nil , err
714
677
}
715
678
@@ -756,7 +719,7 @@ func (s *service) Connect(ctx context.Context, r *taskAPI.ConnectRequest) (*task
756
719
return & taskAPI.ConnectResponse {
757
720
ShimPid : uint32 (os .Getpid ()),
758
721
TaskPid : s .processes [s .id ].pid ,
759
- Version : runhcsVersion ,
722
+ Version : runhcsShimVersion ,
760
723
}, nil
761
724
}
762
725
0 commit comments