1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
/*
* Copyright (C) 2017 ~ 2018 Deepin Technology Co., Ltd.
*
* Author: jouyouyun <jouyouwen717@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* 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 appinfo
import (
"fmt"
"os"
"path/filepath"
"strconv"
"sync"
"github.com/linuxdeepin/go-x11-client"
)
var (
pid int
prog string
hostname string
)
func init() {
pid = os.Getpid()
prog = filepath.Base(os.Args[0])
hostname, _ = os.Hostname()
}
type AppLaunchContext struct {
sync.Mutex
conn *x.Conn
count uint
timestamp uint32
cmdPrefixes []string
cmdSuffixes []string
}
func NewAppLaunchContext(conn *x.Conn) *AppLaunchContext {
return &AppLaunchContext{
conn: conn,
}
}
func (ctx *AppLaunchContext) SetTimestamp(timestamp uint32) {
ctx.timestamp = timestamp
}
func (ctx *AppLaunchContext) GetTimestamp() uint32 {
return ctx.timestamp
}
func (ctx *AppLaunchContext) SetCmdPrefixes(v []string) {
ctx.cmdPrefixes = v
}
func (ctx *AppLaunchContext) GetCmdPrefixes() []string {
return ctx.cmdPrefixes
}
func (ctx *AppLaunchContext) SetCmdSuffixes(v []string) {
ctx.cmdSuffixes = v
}
func (ctx *AppLaunchContext) GetCmdSuffixes() []string {
return ctx.cmdSuffixes
}
func (ctx *AppLaunchContext) GetStartupNotifyId(appInfo AppInfo, files []string) (string, error) {
execBase := filepath.Base(appInfo.GetExecutable())
snId := fmt.Sprintf("%s-%d-%s-%s-%d_TIME%d", prog, pid, hostname, execBase, ctx.count, ctx.timestamp)
ctx.count++
screenStr := strconv.Itoa(ctx.conn.ScreenNumber)
// send new msg
msg := &StartupNotifyMessage{
Type: "new",
KeyValues: map[string]string{
"ID": snId,
"SCREEN": screenStr,
"NAME": appInfo.GetName(),
},
}
startupWMClass := appInfo.GetStartupWMClass()
if startupWMClass != "" {
msg.KeyValues["WMCLASS"] = startupWMClass
}
err := msg.Broadcast(ctx.conn)
if err != nil {
return "", err
}
return snId, nil
}
func (ctx *AppLaunchContext) LaunchFailed(startupNotifyId string) error {
// send remove msg
msg := &StartupNotifyMessage{
Type: "remove",
KeyValues: map[string]string{
"ID": startupNotifyId,
},
}
return msg.Broadcast(ctx.conn)
}
|