forked from nim-lang/Nim
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
96 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
type | ||
ConstPtr*[T] = object | ||
val: ptr T | ||
|
||
proc `=destroy`*[T](p: var ConstPtr[T]) = | ||
if p.val != nil: | ||
`=destroy`(p.val[]) | ||
dealloc(p.val) | ||
p.val = nil | ||
|
||
proc `=`*[T](dest: var ConstPtr[T], src: ConstPtr[T]) {.error.} | ||
|
||
proc `=sink`*[T](dest: var ConstPtr[T], src: ConstPtr[T]) {.inline.} = | ||
if dest.val != nil and dest.val != src.val: | ||
`=destroy`(dest) | ||
dest.val = src.val | ||
|
||
proc newConstPtr*[T](val: sink T): ConstPtr[T] {.inline.} = | ||
result.val = cast[type(result.val)](alloc(sizeof(result.val[]))) | ||
reset(result.val[]) | ||
result.val[] = val | ||
|
||
converter convertConstPtrToObj*[T](p: ConstPtr[T]): lent T = | ||
result = p.val[] | ||
|
||
|
||
#------------------------------------------------------------- | ||
|
||
type | ||
MySeqNonCopyable* = object | ||
len: int | ||
data: ptr UncheckedArray[float] | ||
|
||
proc `=destroy`*(m: var MySeqNonCopyable) {.inline.} = | ||
if m.data != nil: | ||
deallocShared(m.data) | ||
m.data = nil | ||
|
||
proc `=`*(m: var MySeqNonCopyable, m2: MySeqNonCopyable) {.error.} | ||
|
||
proc `=sink`*(m: var MySeqNonCopyable, m2: MySeqNonCopyable) {.inline.} = | ||
if m.data != m2.data: | ||
if m.data != nil: | ||
`=destroy`(m) | ||
m.len = m2.len | ||
m.data = m2.data | ||
|
||
proc len*(m: MySeqNonCopyable): int {.inline.} = m.len | ||
|
||
proc `[]`*(m: MySeqNonCopyable; i: int): float {.inline.} = | ||
m.data[i.int] | ||
|
||
proc `[]=`*(m: var MySeqNonCopyable; i: int, val: float) {.inline.} = | ||
m.data[i.int] = val | ||
|
||
proc setTo(s: var MySeqNonCopyable, val: float) = | ||
for i in 0..<s.len.int: | ||
s.data[i] = val | ||
|
||
proc newMySeq*(size: int, initial_value = 0.0): MySeqNonCopyable = | ||
result.len = size | ||
if size > 0: | ||
result.data = cast[ptr UncheckedArray[float]](createShared(float, size)) | ||
result.setTo(initial_value) | ||
|
||
#---------------------------------------------------------------------- | ||
|
||
|
||
proc test*(x1: int): ConstPtr[MySeqNonCopyable] {.inline.} = # remove inline here to make it work as expected | ||
if x1 == 0: | ||
let x = newMySeq(1, 0.0) | ||
result = newConstPtr(x) | ||
else: | ||
let y = newMySeq(x1, 0.0) | ||
result = newConstPtr(y) | ||
|
||
discard test(10) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
discard """ | ||
action: "compile" | ||
""" | ||
|
||
import const_smart_ptr | ||
|
||
discard test(0) |