...

Source file src/github.com/chaos-mesh/chaos-mesh/pkg/chaosdaemon/time_server_darwin.go

Documentation: github.com/chaos-mesh/chaos-mesh/pkg/chaosdaemon

     1  // Copyright 2022 Chaos Mesh Authors.
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  // http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  //
    15  
    16  // Since TimeChaos is not unimplemented in darwin os. This file is only used for debugging, for example if your editor has gopls activated automatically.
    17  
    18  package chaosdaemon
    19  
    20  import (
    21  	"context"
    22  
    23  	"github.com/go-logr/logr"
    24  	"github.com/golang/protobuf/ptypes/empty"
    25  
    26  	pb "github.com/chaos-mesh/chaos-mesh/pkg/chaosdaemon/pb"
    27  	"github.com/chaos-mesh/chaos-mesh/pkg/chaosdaemon/tasks"
    28  )
    29  
    30  type TimeChaosServer struct {
    31  	podContainerNameProcessMap tasks.PodContainerNameProcessMap
    32  	manager                    tasks.TaskManager
    33  
    34  	nameLocker tasks.LockMap[tasks.PodContainerName]
    35  	logger     logr.Logger
    36  }
    37  
    38  func (s *TimeChaosServer) SetPodContainerNameProcess(idName tasks.PodContainerName, sysID tasks.SysPID) {
    39  }
    40  
    41  func (s *TimeChaosServer) DelPodContainerNameProcess(idName tasks.PodContainerName) {
    42  }
    43  
    44  func (s *TimeChaosServer) SetTimeOffset(uid tasks.TaskID, id tasks.PodContainerName, config interface{}) error {
    45  	return nil
    46  }
    47  
    48  func (s *DaemonServer) SetTimeOffset(ctx context.Context, req *pb.TimeRequest) (*empty.Empty, error) {
    49  	return &empty.Empty{}, nil
    50  }
    51  
    52  func (s *DaemonServer) RecoverTimeOffset(ctx context.Context, req *pb.TimeRequest) (*empty.Empty, error) {
    53  	return &empty.Empty{}, nil
    54  }
    55