aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui/util.go
blob: 0cca0909dbf960806bdc736a90917f90aedab419 (plain) (blame)
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
120
121
122
123
124
125
/* SPDX-License-Identifier: MIT
 *
 * Copyright (C) 2019 WireGuard LLC. All Rights Reserved.
 */

package ui

import (
	"fmt"
	"os"

	"github.com/lxn/walk"
)

type orderedStringSet struct {
	items      []string
	item2index map[string]int
}

func orderedStringSetFromSlice(items []string) *orderedStringSet {
	oss := newOrderedStringSet()
	oss.AddMany(items)
	return oss
}

func newOrderedStringSet() *orderedStringSet {
	return &orderedStringSet{item2index: make(map[string]int)}
}

func (oss *orderedStringSet) Add(item string) bool {
	if _, ok := oss.item2index[item]; ok {
		return false
	}

	oss.item2index[item] = len(oss.items)
	oss.items = append(oss.items, item)
	return true
}

func (oss *orderedStringSet) AddMany(items []string) {
	for _, item := range items {
		oss.Add(item)
	}
}

func (oss *orderedStringSet) UniteWith(other *orderedStringSet) {
	if other == oss {
		return
	}

	oss.AddMany(other.items)
}

func (oss *orderedStringSet) Remove(item string) bool {
	if i, ok := oss.item2index[item]; ok {
		oss.items = append(oss.items[:i], oss.items[i+1:]...)
		delete(oss.item2index, item)
		return true
	}

	return false
}

func (oss *orderedStringSet) Len() int {
	return len(oss.items)
}

func (oss *orderedStringSet) ToSlice() []string {
	return append(([]string)(nil), oss.items...)
}

func (oss *orderedStringSet) Contains(item string) bool {
	_, ok := oss.item2index[item]
	return ok
}

func (oss *orderedStringSet) IsSupersetOf(other *orderedStringSet) bool {
	if oss.Len() < other.Len() {
		return false
	}

	for _, item := range other.items {
		if !oss.Contains(item) {
			return false
		}
	}

	return true
}

func (oss *orderedStringSet) String() string {
	return fmt.Sprintf("%v", oss.items)
}

func writeFileWithOverwriteHandling(owner walk.Form, filePath string, write func(file *os.File) error) bool {
	showError := func(err error) bool {
		if err == nil {
			return false
		}

		walk.MsgBox(owner, "Writing file failed", err.Error(), walk.MsgBoxIconError)

		return true
	}

	file, err := os.OpenFile(filePath, os.O_CREATE|os.O_WRONLY|os.O_EXCL, 0600)
	if err != nil {
		if os.IsExist(err) {
			if walk.DlgCmdNo == walk.MsgBox(owner, "Writing file failed", fmt.Sprintf(`File "%s" already exists.

Do you want to overwrite it?`, filePath), walk.MsgBoxYesNo|walk.MsgBoxDefButton2|walk.MsgBoxIconWarning) {
				return false
			}

			if file, err = os.Create(filePath); err != nil {
				return !showError(err)
			}
		} else {
			return !showError(err)
		}
	}
	defer file.Close()

	return !showError(write(file))
}