-
Notifications
You must be signed in to change notification settings - Fork 4
/
imageprovider.go
144 lines (120 loc) · 3.89 KB
/
imageprovider.go
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/*
* GML - Go QML
*
* The MIT License (MIT)
*
* Copyright (c) 2019 Roland Singer <roland.singer[at]desertbit.com>
* Copyright (c) 2019 Sebastian Borchers <sebastian[at]desertbit.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package gml
// #include <gml.h>
//
// extern void gml_image_provider_request_go_slot(void* goPtr, gml_image_response img_resp, char* id, gml_image img);
// static void gml_image_provider_init() {
// gml_image_provider_request_cb_register(gml_image_provider_request_go_slot);
// }
import "C"
import (
"fmt"
"runtime"
"unsafe"
"github.com/desertbit/gml/pointer"
)
type AspectRatioMode int
const (
IgnoreAspectRatio AspectRatioMode = C.GML_IGNORE_ASPECT_RATIO
KeepAspectRatio AspectRatioMode = C.GML_KEEP_ASPECT_RATIO
KeepAspectRatioByExpanding AspectRatioMode = C.GML_KEEP_ASPECT_RATIO_BY_EXPANDING
)
type TransformationMode int
const (
FastTransformation TransformationMode = C.GML_FAST_TRANSFORMATION
SmoothTransformation TransformationMode = C.GML_SMOOTH_TRANSFORMATION
)
func init() {
C.gml_image_provider_init()
}
type ImageProviderCallback func(id string, img *Image) error
type ImageProvider struct {
freed bool
ptr C.gml_image_provider
goPtr unsafe.Pointer
callback ImageProviderCallback
}
func NewImageProvider(
aspectRatioMode AspectRatioMode,
transformMode TransformationMode,
callback ImageProviderCallback,
) *ImageProvider {
ip := &ImageProvider{
callback: callback,
}
ip.goPtr = pointer.Save(ip)
ip.ptr = C.gml_image_provider_new(ip.goPtr, C.int(aspectRatioMode), C.int(transformMode))
// Always free the C++ value.
runtime.SetFinalizer(ip, freeImageProvider)
// Check if something failed.
// This should never happen. Otherwise this signalizes a fatal error.
if ip.ptr == nil {
panic(fmt.Errorf("failed to create gml imageprovider: C pointer is nil"))
}
return ip
}
func freeImageProvider(ip *ImageProvider) {
if ip.freed {
return
}
ip.freed = true
C.gml_image_provider_free(ip.ptr)
pointer.Unref(ip.goPtr)
}
func (ip *ImageProvider) Free() {
freeImageProvider(ip)
}
//#####################//
//### Exported to C ###//
//#####################//
//export gml_image_provider_request_go_slot
func gml_image_provider_request_go_slot(
goPtr unsafe.Pointer,
imgResp C.gml_image_response,
idc *C.char,
imgC C.gml_image,
) {
ip := (pointer.Restore(goPtr)).(*ImageProvider)
id := C.GoString(idc)
img := newImage(imgC, false) // Don't free the image. We are not the owner of the pointer.
// Run in a new goroutine.
go func() {
var errStr string
// Call the callback.
err := ip.callback(id, img)
if err != nil {
errStr = err.Error()
}
// Convert the go string to a C string.
errStrC := C.CString(errStr)
defer C.free(unsafe.Pointer(errStrC))
// Emit the finished signal on the image response.
// Must always be triggered!
C.gml_image_response_emit_finished(imgResp, errStrC)
}()
}