github.com/fafucoder/cilium@v1.6.11/daemon/map.go (about)

     1  // Copyright 2018 Authors of Cilium
     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  package main
    16  
    17  import (
    18  	"github.com/cilium/cilium/api/v1/models"
    19  	restapi "github.com/cilium/cilium/api/v1/server/restapi/daemon"
    20  	"github.com/cilium/cilium/pkg/bpf"
    21  
    22  	"github.com/go-openapi/runtime/middleware"
    23  )
    24  
    25  type getMapName struct {
    26  	daemon *Daemon
    27  }
    28  
    29  func NewGetMapNameHandler(d *Daemon) restapi.GetMapNameHandler {
    30  	return &getMapName{daemon: d}
    31  }
    32  
    33  func (h *getMapName) Handle(params restapi.GetMapNameParams) middleware.Responder {
    34  	m := bpf.GetMap(params.Name)
    35  	if m == nil {
    36  		return restapi.NewGetMapNameNotFound()
    37  	}
    38  
    39  	return restapi.NewGetMapNameOK().WithPayload(m.GetModel())
    40  }
    41  
    42  type getMap struct {
    43  	daemon *Daemon
    44  }
    45  
    46  func NewGetMapHandler(d *Daemon) restapi.GetMapHandler {
    47  	return &getMap{daemon: d}
    48  }
    49  
    50  func (h *getMap) Handle(params restapi.GetMapParams) middleware.Responder {
    51  	mapList := &models.BPFMapList{
    52  		Maps: bpf.GetOpenMaps(),
    53  	}
    54  
    55  	return restapi.NewGetMapOK().WithPayload(mapList)
    56  }