e0e362d700
SDK Tests / changes (push) Successful in 2m29s
Real E2E Tests / changes (push) Successful in 2m29s
Deploy Docs Pages / build (push) Has been cancelled
Deploy Docs Pages / deploy (push) Has been cancelled
Real E2E Tests / JavaScript E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / Python E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / Java E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / C# E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / Go E2E (docker bridge) (push) Has been cancelled
Real E2E Tests / Real E2E CI (push) Has been cancelled
SDK Tests / SDK CI (push) Has been cancelled
SDK Tests / CLI Tests (push) Has been cancelled
SDK Tests / Python SDK Quality (code-interpreter) (push) Has been cancelled
SDK Tests / Python SDK Quality (sandbox) (push) Has been cancelled
SDK Tests / Python SDK Tests (code-interpreter) (push) Has been cancelled
SDK Tests / JavaScript SDK Quality And Tests (code-interpreter) (push) Has been cancelled
SDK Tests / JavaScript SDK Quality And Tests (sandbox) (push) Has been cancelled
SDK Tests / Python SDK Tests (sandbox) (push) Has been cancelled
SDK Tests / CLI Quality (push) Has been cancelled
SDK Tests / Kotlin SDK Quality And Tests (sandbox) (push) Has been cancelled
SDK Tests / Kotlin SDK Quality And Tests (code-interpreter) (push) Has been cancelled
SDK Tests / C# SDK Quality And Tests (code-interpreter) (push) Has been cancelled
SDK Tests / C# SDK Quality And Tests (sandbox) (push) Has been cancelled
SDK Tests / Go SDK Quality And Tests (push) Has been cancelled
97 lines
4.0 KiB
Go
97 lines
4.0 KiB
Go
// Copyright 2025 Alibaba Group Holding Ltd.
|
|
//
|
|
// 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.
|
|
|
|
//go:build windows
|
|
// +build windows
|
|
|
|
package runtime
|
|
|
|
import (
|
|
"errors"
|
|
"io"
|
|
"time"
|
|
)
|
|
|
|
// ptySession is an opaque stub on Windows (real type in pty_session.go, !windows).
|
|
// All methods the controller layer calls must be present here so Windows cross-compilation succeeds.
|
|
type ptySession struct{}
|
|
|
|
// PTYSession is the public interface for an interactive PTY/pipe session.
|
|
// The concrete implementation (*ptySession) is unexported; callers outside
|
|
// this package must use this interface.
|
|
type PTYSession interface {
|
|
LockWS() bool
|
|
UnlockWS()
|
|
TakeoverWS(timeout time.Duration) bool
|
|
SetEvictHandler(fn func()) uint64
|
|
ClearEvictHandler(gen uint64)
|
|
IsRunning() bool
|
|
IsPTY() bool
|
|
ExitCode() int
|
|
Done() <-chan struct{}
|
|
StartPTY() error
|
|
StartPipe() error
|
|
WriteStdin(p []byte) (int, error)
|
|
AttachOutput() (io.Reader, io.Reader, func())
|
|
AttachOutputWithSnapshot(since int64) (io.Reader, io.Reader, func(), []byte, int64)
|
|
SendSignal(name string)
|
|
ResizePTY(cols, rows uint16) error
|
|
}
|
|
|
|
var errPTYSessionNotSupported = errors.New("pty session is not supported on windows")
|
|
|
|
// IsPTYSessionSupported reports whether PTY sessions are supported on this platform.
|
|
func IsPTYSessionSupported() bool { return false }
|
|
|
|
// NewPTYSessionID returns a new unique session ID (Windows stub).
|
|
func NewPTYSessionID() string { return "" }
|
|
|
|
// CreatePTYSession is not supported on Windows.
|
|
func (c *Controller) CreatePTYSession(id, cwd, command string) (PTYSession, error) { return nil, nil } //nolint:revive
|
|
|
|
// GetPTYSession is not supported on Windows.
|
|
func (c *Controller) GetPTYSession(id string) PTYSession { return nil } //nolint:revive
|
|
|
|
// DeletePTYSession is not supported on Windows.
|
|
func (c *Controller) DeletePTYSession(id string) error { //nolint:revive
|
|
return errPTYSessionNotSupported
|
|
}
|
|
|
|
// GetPTYSessionStatus is not supported on Windows.
|
|
func (c *Controller) GetPTYSessionStatus(id string) (bool, int64, error) { //nolint:revive
|
|
return false, 0, errPTYSessionNotSupported
|
|
}
|
|
|
|
// Method stubs so the controller layer can call them without build-tag guards.
|
|
|
|
func (s *ptySession) LockWS() bool { return false }
|
|
func (s *ptySession) UnlockWS() {}
|
|
func (s *ptySession) TakeoverWS(_ time.Duration) bool { return false }
|
|
func (s *ptySession) SetEvictHandler(_ func()) uint64 { return 0 }
|
|
func (s *ptySession) ClearEvictHandler(_ uint64) {}
|
|
func (s *ptySession) IsRunning() bool { return false }
|
|
func (s *ptySession) IsPTY() bool { return false }
|
|
func (s *ptySession) ExitCode() int { return -1 }
|
|
func (s *ptySession) Done() <-chan struct{} { return nil }
|
|
func (s *ptySession) ReplayBuffer() *replayBuffer { return nil }
|
|
func (s *ptySession) StartPTY() error { return errPTYSessionNotSupported }
|
|
func (s *ptySession) StartPipe() error { return errPTYSessionNotSupported }
|
|
func (s *ptySession) WriteStdin(_ []byte) (int, error) { return 0, errPTYSessionNotSupported }
|
|
func (s *ptySession) AttachOutput() (io.Reader, io.Reader, func()) { return nil, nil, func() {} }
|
|
func (s *ptySession) AttachOutputWithSnapshot(_ int64) (io.Reader, io.Reader, func(), []byte, int64) {
|
|
return nil, nil, func() {}, nil, 0
|
|
}
|
|
func (s *ptySession) SendSignal(_ string) {}
|
|
func (s *ptySession) ResizePTY(_, _ uint16) error { return nil }
|