Ai
1 Star 0 Fork 1

mysnapcore/mysnapd

forked from tupelo-shen/mysnapd 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
api_connections.go 8.36 KB
一键复制 编辑 原始数据 按行查看 历史
tupelo-shen 提交于 2022-11-08 22:56 +08:00 . fix: daemon commit
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2019 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package daemon
import (
"errors"
"net/http"
"sort"
"gitee.com/mysnapcore/mysnapd/interfaces"
"gitee.com/mysnapcore/mysnapd/overlord/auth"
"gitee.com/mysnapcore/mysnapd/overlord/ifacestate"
"gitee.com/mysnapcore/mysnapd/overlord/snapstate"
"gitee.com/mysnapcore/mysnapd/overlord/state"
)
var connectionsCmd = &Command{
Path: "/v2/connections",
GET: getConnections,
ReadAccess: openAccess{},
}
type collectFilter struct {
snapName string
ifaceName string
connected bool
}
func (c *collectFilter) plugOrConnectedSlotMatches(plug *interfaces.PlugRef, connectedSlots []interfaces.SlotRef) bool {
for _, slot := range connectedSlots {
if c.slotOrConnectedPlugMatches(&slot, nil) {
return true
}
}
if c.snapName != "" && plug.Snap != c.snapName {
return false
}
return true
}
func (c *collectFilter) slotOrConnectedPlugMatches(slot *interfaces.SlotRef, connectedPlugs []interfaces.PlugRef) bool {
for _, plug := range connectedPlugs {
if c.plugOrConnectedSlotMatches(&plug, nil) {
return true
}
}
if c.snapName != "" && slot.Snap != c.snapName {
return false
}
return true
}
func (c *collectFilter) ifaceMatches(ifaceName string) bool {
if c.ifaceName != "" && c.ifaceName != ifaceName {
return false
}
return true
}
type bySlotRef []interfaces.SlotRef
func (b bySlotRef) Len() int { return len(b) }
func (b bySlotRef) Swap(i, j int) { b[i], b[j] = b[j], b[i] }
func (b bySlotRef) Less(i, j int) bool {
return b[i].SortsBefore(b[j])
}
type byPlugRef []interfaces.PlugRef
func (b byPlugRef) Len() int { return len(b) }
func (b byPlugRef) Swap(i, j int) { b[i], b[j] = b[j], b[i] }
func (b byPlugRef) Less(i, j int) bool {
return b[i].SortsBefore(b[j])
}
// mergeAttrs merges attributes from 2 disjoint sets of static and dynamic slot or
// plug attributes into a single map.
func mergeAttrs(one map[string]interface{}, other map[string]interface{}) map[string]interface{} {
merged := make(map[string]interface{}, len(one)+len(other))
for k, v := range one {
merged[k] = v
}
for k, v := range other {
merged[k] = v
}
return merged
}
func collectConnections(ifaceMgr *ifacestate.InterfaceManager, filter collectFilter) (*connectionsJSON, error) {
repo := ifaceMgr.Repository()
ifaces := repo.Interfaces()
var connsjson connectionsJSON
var connStates map[string]ifacestate.ConnectionState
plugConns := map[string][]interfaces.SlotRef{}
slotConns := map[string][]interfaces.PlugRef{}
var err error
connStates, err = ifaceMgr.ConnectionStates()
if err != nil {
return nil, err
}
connsjson.Established = make([]connectionJSON, 0, len(connStates))
connsjson.Plugs = make([]*plugJSON, 0, len(ifaces.Plugs))
connsjson.Slots = make([]*slotJSON, 0, len(ifaces.Slots))
for crefStr, cstate := range connStates {
if cstate.Undesired && filter.connected {
continue
}
if cstate.HotplugGone {
// XXX: hotplug connection - the device and slot are gone
continue
}
cref, err := interfaces.ParseConnRef(crefStr)
if err != nil {
return nil, err
}
// plug or slot not in the repository, e.g. cref is referring to an
// inactive revision of the snap; this can happen when the new revision
// doesn't have given plug/slot anymore (but the connection state is
// kept in case of revert).
// XXX: if we decide to show such connections with special tags, then
// this needs to be tweaked together with collectFilter definition and
// connectionJSON output.
if repo.Plug(cref.PlugRef.Snap, cref.PlugRef.Name) == nil || repo.Slot(cref.SlotRef.Snap, cref.SlotRef.Name) == nil {
continue
}
if !filter.plugOrConnectedSlotMatches(&cref.PlugRef, nil) && !filter.slotOrConnectedPlugMatches(&cref.SlotRef, nil) {
continue
}
if !filter.ifaceMatches(cstate.Interface) {
continue
}
plugRef := interfaces.PlugRef{Snap: cref.PlugRef.Snap, Name: cref.PlugRef.Name}
slotRef := interfaces.SlotRef{Snap: cref.SlotRef.Snap, Name: cref.SlotRef.Name}
plugID := plugRef.String()
slotID := slotRef.String()
cj := connectionJSON{
Slot: slotRef,
Plug: plugRef,
Manual: !cstate.Auto,
Gadget: cstate.ByGadget,
Interface: cstate.Interface,
PlugAttrs: mergeAttrs(cstate.StaticPlugAttrs, cstate.DynamicPlugAttrs),
SlotAttrs: mergeAttrs(cstate.StaticSlotAttrs, cstate.DynamicSlotAttrs),
}
if cstate.Undesired {
// explicitly disconnected are always manual
cj.Manual = true
connsjson.Undesired = append(connsjson.Undesired, cj)
} else {
plugConns[plugID] = append(plugConns[plugID], slotRef)
slotConns[slotID] = append(slotConns[slotID], plugRef)
connsjson.Established = append(connsjson.Established, cj)
}
}
for _, plug := range ifaces.Plugs {
plugRef := interfaces.PlugRef{Snap: plug.Snap.InstanceName(), Name: plug.Name}
connectedSlots, connected := plugConns[plugRef.String()]
if !connected && filter.connected {
continue
}
if !filter.ifaceMatches(plug.Interface) || !filter.plugOrConnectedSlotMatches(&plugRef, connectedSlots) {
continue
}
var apps []string
for _, app := range plug.Apps {
apps = append(apps, app.Name)
}
sort.Sort(bySlotRef(connectedSlots))
pj := &plugJSON{
Snap: plugRef.Snap,
Name: plugRef.Name,
Interface: plug.Interface,
Attrs: plug.Attrs,
Apps: apps,
Label: plug.Label,
Connections: connectedSlots,
}
connsjson.Plugs = append(connsjson.Plugs, pj)
}
for _, slot := range ifaces.Slots {
slotRef := interfaces.SlotRef{Snap: slot.Snap.InstanceName(), Name: slot.Name}
connectedPlugs, connected := slotConns[slotRef.String()]
if !connected && filter.connected {
continue
}
if !filter.ifaceMatches(slot.Interface) || !filter.slotOrConnectedPlugMatches(&slotRef, connectedPlugs) {
continue
}
var apps []string
for _, app := range slot.Apps {
apps = append(apps, app.Name)
}
sort.Sort(byPlugRef(connectedPlugs))
sj := &slotJSON{
Snap: slotRef.Snap,
Name: slotRef.Name,
Interface: slot.Interface,
Attrs: slot.Attrs,
Apps: apps,
Label: slot.Label,
Connections: connectedPlugs,
}
connsjson.Slots = append(connsjson.Slots, sj)
}
return &connsjson, nil
}
type byCrefConnJSON []connectionJSON
func (b byCrefConnJSON) Len() int { return len(b) }
func (b byCrefConnJSON) Swap(i, j int) { b[i], b[j] = b[j], b[i] }
func (b byCrefConnJSON) Less(i, j int) bool {
icj := b[i]
jcj := b[j]
iCref := interfaces.ConnRef{PlugRef: icj.Plug, SlotRef: icj.Slot}
jCref := interfaces.ConnRef{PlugRef: jcj.Plug, SlotRef: jcj.Slot}
sortsBefore := iCref.SortsBefore(&jCref)
return sortsBefore
}
func checkSnapInstalled(st *state.State, name string) error {
st.Lock()
defer st.Unlock()
var snapst snapstate.SnapState
return snapstate.Get(st, name, &snapst)
}
func getConnections(c *Command, r *http.Request, user *auth.UserState) Response {
query := r.URL.Query()
snapName := query.Get("snap")
ifaceName := query.Get("interface")
qselect := query.Get("select")
if qselect != "all" && qselect != "" {
return BadRequest("unsupported select qualifier")
}
onlyConnected := qselect == ""
snapName = ifacestate.RemapSnapFromRequest(snapName)
if snapName != "" {
if err := checkSnapInstalled(c.d.overlord.State(), snapName); err != nil {
if errors.Is(err, state.ErrNoState) {
return SnapNotFound(snapName, err)
}
return InternalError("cannot access snap state: %v", err)
}
}
connsjson, err := collectConnections(c.d.overlord.InterfaceManager(), collectFilter{
snapName: snapName,
ifaceName: ifaceName,
connected: onlyConnected,
})
if err != nil {
return InternalError("collecting connection information failed: %v", err)
}
sort.Sort(byCrefConnJSON(connsjson.Established))
sort.Sort(byCrefConnJSON(connsjson.Undesired))
return SyncResponse(connsjson)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mysnapcore/mysnapd.git
git@gitee.com:mysnapcore/mysnapd.git
mysnapcore
mysnapd
mysnapd
v0.1.0

搜索帮助