-
Notifications
You must be signed in to change notification settings - Fork 37
/
module_import.go
46 lines (41 loc) · 1.28 KB
/
module_import.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
package smi
import (
"unsafe"
"github.com/sleepinggenius2/gosmi/smi/internal"
"github.com/sleepinggenius2/gosmi/types"
)
// SmiImport *smiGetFirstImport(SmiModule *smiModulePtr)
func GetFirstImport(smiModulePtr *types.SmiModule) *types.SmiImport {
if smiModulePtr == nil {
return nil
}
modulePtr := (*internal.Module)(unsafe.Pointer(smiModulePtr))
importPtr := modulePtr.Imports.First
if importPtr == nil {
return nil
}
return &importPtr.SmiImport
}
// SmiImport *smiGetNextImport(SmiImport *smiImportPtr)
func GetNextImport(smiImportPtr *types.SmiImport) *types.SmiImport {
if smiImportPtr == nil {
return nil
}
importPtr := (*internal.Import)(unsafe.Pointer(smiImportPtr))
if importPtr.Next == nil {
return nil
}
return &importPtr.Next.SmiImport
}
// int smiIsImported(SmiModule *smiModulePtr, SmiModule *importedModulePtr, char *importedName)
func IsImported(smiModulePtr *types.SmiModule, importedModulePtr *types.SmiModule, importedName string) bool {
if smiModulePtr == nil || importedName == "" {
return false
}
modulePtr := (*internal.Module)(unsafe.Pointer(smiModulePtr))
importPtr := modulePtr.Imports.Get(types.SmiIdentifier(importedName))
if importPtr == nil {
return false
}
return importedModulePtr == nil || importPtr.Module == importedModulePtr.Name
}