Ai
1 Star 0 Fork 1

mysnapcore/mysnapd

forked from tupelo-shen/mysnapd 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
userd.go 2.92 KB
一键复制 编辑 原始数据 按行查看 历史
tupelo-shen 提交于 2022-11-08 21:39 +08:00 . fix: usersession commit
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2017 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 userd
import (
"fmt"
"github.com/godbus/dbus"
"github.com/godbus/dbus/introspect"
"gopkg.in/tomb.v2"
"gitee.com/mysnapcore/mysnapd/dbusutil"
"gitee.com/mysnapcore/mysnapd/logger"
)
type dbusInterface interface {
Interface() string
ObjectPath() dbus.ObjectPath
IntrospectionData() string
}
type Userd struct {
tomb tomb.Tomb
conn *dbus.Conn
dbusIfaces []dbusInterface
}
// userdBusNames contains the list of bus names userd will acquire on
// the session bus. It is unnecessary (and undesirable) to add more
// names here when adding new interfaces to the daemon.
var userdBusNames = []string{
"io.snapcraft.Launcher",
"io.snapcraft.Settings",
}
func (ud *Userd) Init() error {
var err error
ud.conn, err = dbusutil.SessionBusPrivate()
if err != nil {
return err
}
ud.dbusIfaces = []dbusInterface{
&Launcher{ud.conn},
&PrivilegedDesktopLauncher{ud.conn},
&Settings{ud.conn},
}
for _, iface := range ud.dbusIfaces {
// export the interfaces at the godbus API level first to avoid
// the race between being able to handle a call to an interface
// at the object level and the actual well-known object name
// becoming available on the bus
xml := "<node>" + iface.IntrospectionData() + introspect.IntrospectDataString + "</node>"
ud.conn.Export(iface, iface.ObjectPath(), iface.Interface())
ud.conn.Export(introspect.Introspectable(xml), iface.ObjectPath(), "org.freedesktop.DBus.Introspectable")
}
for _, name := range userdBusNames {
// beyond this point the name is available and all handlers must
// have been set up
reply, err := ud.conn.RequestName(name, dbus.NameFlagDoNotQueue)
if err != nil {
return err
}
if reply != dbus.RequestNameReplyPrimaryOwner {
return fmt.Errorf("cannot obtain bus name '%s'", name)
}
}
return nil
}
func (ud *Userd) Start() {
logger.Noticef("Starting snap userd")
ud.tomb.Go(func() error {
// Listen to keep our thread up and running. All DBus bits
// are running in the background
<-ud.tomb.Dying()
ud.conn.Close()
err := ud.tomb.Err()
if err != nil && err != tomb.ErrStillAlive {
return err
}
return nil
})
}
func (ud *Userd) Stop() error {
ud.tomb.Kill(nil)
return ud.tomb.Wait()
}
func (ud *Userd) Dying() <-chan struct{} {
return ud.tomb.Dying()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/mysnapcore/mysnapd.git
git@gitee.com:mysnapcore/mysnapd.git
mysnapcore
mysnapd
mysnapd
v0.1.0

搜索帮助