-
Notifications
You must be signed in to change notification settings - Fork 5
/
api.go
56 lines (41 loc) · 2 KB
/
api.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
package v8
import (
"context"
"github.com/v8platform/errors"
"github.com/v8platform/runner"
"strings"
)
// Run выполняет запуск команды пакетного режима 1С.Предприятие
// where - место выполнения команды
// what - команда покетного режима
// opts - дополнительные опции запуска
func Run(where runner.Infobase, what runner.Command, opts ...interface{}) error {
return runner.Run(where, what, opts...)
}
// Background выполняет запуск команды пакетного режима 1С.Предприятие в контексте
// ctx - контекст выполнения команды
// where - место выполнения команды
// what - команда покетного режима
// opts - дополнительные опции запуска
// Подробные примеры см. v8.Run
func Background(ctx context.Context, where runner.Infobase, what runner.Command, opts ...interface{}) (runner.Process, error) {
return runner.Background(ctx, where, what, opts...)
}
// CreateInfobase выполняет создаение новой информационной базы по переданным параметрам
func CreateInfobase(create runner.Command, opts ...interface{}) (*Infobase, error) {
if create.Command() != runner.CreateInfobase {
return nil, errors.Check.New("command must be <CreateInfobase>")
}
err := Run(nil, create, opts...)
if err != nil {
return nil, err
}
connectionStringValues := create.Values()
connectionString := strings.Join(connectionStringValues, ";")
return ParseConnectionString(connectionString)
}
// CreateTempInfobase выполняет создаение новой временной информационной базы
func CreateTempInfobase(opts ...interface{}) (*Infobase, error) {
create := CreateFileInfobase(NewTempDir("", "v8_temp_ib"))
return CreateInfobase(create, opts...)
}