Convert an Objective-C method into Swift for NSInputStream (convert bytes into double)
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I have the following code in Objective-C:
- (double)readDouble
{
double value = 0.0;
if ([self read:(uint8_t *)&value maxLength:8] != 8)
{
NSLog(@"***** Couldn't read double");
}
return value;
}
It works. But I don't know how to convert it to Swift. Here is my code:
public func readDouble() -> Double {
var value : Double = 0.0
var num = self.read((uint8_t *)&value, maxLength:8) // got compiling error here!
if num != 8 {
}
}
The error message is:
Cannot invoke '&' with an argument list of type '($T4, maxLength:
IntegerLiteralConvertible)'
Can anybody help? Thanks
The testing data I'm using (1.25):
14 AE 47 E1 7A 14 F4 3F
UPDATE:
A simple c solution, but how to do this in Swift?
double d = 0;
unsigned char buf[sizeof d] = {0};
memcpy(&d, buf, sizeof d);
ios swift nsinputstream
add a comment |
I have the following code in Objective-C:
- (double)readDouble
{
double value = 0.0;
if ([self read:(uint8_t *)&value maxLength:8] != 8)
{
NSLog(@"***** Couldn't read double");
}
return value;
}
It works. But I don't know how to convert it to Swift. Here is my code:
public func readDouble() -> Double {
var value : Double = 0.0
var num = self.read((uint8_t *)&value, maxLength:8) // got compiling error here!
if num != 8 {
}
}
The error message is:
Cannot invoke '&' with an argument list of type '($T4, maxLength:
IntegerLiteralConvertible)'
Can anybody help? Thanks
The testing data I'm using (1.25):
14 AE 47 E1 7A 14 F4 3F
UPDATE:
A simple c solution, but how to do this in Swift?
double d = 0;
unsigned char buf[sizeof d] = {0};
memcpy(&d, buf, sizeof d);
ios swift nsinputstream
add a comment |
I have the following code in Objective-C:
- (double)readDouble
{
double value = 0.0;
if ([self read:(uint8_t *)&value maxLength:8] != 8)
{
NSLog(@"***** Couldn't read double");
}
return value;
}
It works. But I don't know how to convert it to Swift. Here is my code:
public func readDouble() -> Double {
var value : Double = 0.0
var num = self.read((uint8_t *)&value, maxLength:8) // got compiling error here!
if num != 8 {
}
}
The error message is:
Cannot invoke '&' with an argument list of type '($T4, maxLength:
IntegerLiteralConvertible)'
Can anybody help? Thanks
The testing data I'm using (1.25):
14 AE 47 E1 7A 14 F4 3F
UPDATE:
A simple c solution, but how to do this in Swift?
double d = 0;
unsigned char buf[sizeof d] = {0};
memcpy(&d, buf, sizeof d);
ios swift nsinputstream
I have the following code in Objective-C:
- (double)readDouble
{
double value = 0.0;
if ([self read:(uint8_t *)&value maxLength:8] != 8)
{
NSLog(@"***** Couldn't read double");
}
return value;
}
It works. But I don't know how to convert it to Swift. Here is my code:
public func readDouble() -> Double {
var value : Double = 0.0
var num = self.read((uint8_t *)&value, maxLength:8) // got compiling error here!
if num != 8 {
}
}
The error message is:
Cannot invoke '&' with an argument list of type '($T4, maxLength:
IntegerLiteralConvertible)'
Can anybody help? Thanks
The testing data I'm using (1.25):
14 AE 47 E1 7A 14 F4 3F
UPDATE:
A simple c solution, but how to do this in Swift?
double d = 0;
unsigned char buf[sizeof d] = {0};
memcpy(&d, buf, sizeof d);
ios swift nsinputstream
ios swift nsinputstream
edited Jan 3 at 8:03
Martijn Pieters♦
726k14325482349
726k14325482349
asked Sep 15 '14 at 10:09


BagusflyerBagusflyer
5,8211472138
5,8211472138
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
This should work:
let num = withUnsafeMutablePointer(&value) {
self.read(UnsafeMutablePointer($0), maxLength: sizeofValue(value))
}
Explanation: withUnsafeMutablePointer()
calls the closure (block) with the only argument
($0
in shorthand notation) set to the address of value
.
$0
has the type UnsafeMutablePointer<Double>
and read()
expects an
UnsafeMutablePointer<UInt8>
as the first argument, therefore another conversion
is necessary. The return value of the closure is then assigned to num
.
Sorry. It doesn't work. I got "Cannot invoke 'init' with an argument list of type '(UnsafeMutablePointer<T>, maxLength: IntegerLiteralConvertible)'"
– Bagusflyer
Sep 15 '14 at 10:43
@bagusflyer: See updated answer.
– Martin R
Sep 15 '14 at 11:01
OK, I'll try. By the way, I'm not the one why downvote your answer. I'll up vote for you anyway.
– Bagusflyer
Sep 15 '14 at 11:06
But it seems the result is not correct. Where is the result? In value, am I right?
– Bagusflyer
Sep 15 '14 at 11:14
The result is: num = 8,value = 3.31609222784626e-296
– Bagusflyer
Sep 15 '14 at 11:19
|
show 3 more comments
The method above does not work for me, using Swift 2 but I discovered a much more simpler method to do this conversion and vice versa:
func binarytotype <T> (value: [UInt8], _: T.Type) -> T
{
return value.withUnsafeBufferPointer
{
return UnsafePointer<T>($0.baseAddress).memory
}
}
func typetobinary <T> (var value: T) -> [UInt8]
{
return withUnsafePointer(&value)
{
Array(UnsafeBufferPointer(start: UnsafePointer<UInt8>($0), count: sizeof(T)))
}
}
let a: Double = 0.25
let b: [UInt8] = typetobinary(a) // -> [0, 0, 0, 0, 0, 0, 208, 63]
let c = binarytotype(b, Double.self) // -> 0.25
I have tested it with Xcode 7.2 in the playground.
add a comment |
Here is the updated version for Swift 3 beta 6 which is different, thanx to Martin.
func binarytotype <T> (_ value: [UInt8], _ : T.Type) -> T
{
return value.withUnsafeBufferPointer
{
UnsafeRawPointer($0.baseAddress!).load(as: T.self)
}
}
func typetobinary <T> (_ value: T) -> [UInt8]
{
var v = value
let size = MemoryLayout<T>.size
return withUnsafePointer(to: &v)
{
$0.withMemoryRebound(to: UInt8.self, capacity: size)
{
Array(UnsafeBufferPointer(start: $0, count: size))
}
}
}
let dd: Double = 1.23456 // -> 1.23456
let d = typetobinary(dd) // -> [56, 50, 143, 252, 193, 192, 243, 63]
let i = binarytotype(d, Double.self) // -> 1.23456
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f25845574%2fconvert-an-objective-c-method-into-swift-for-nsinputstream-convert-bytes-into-d%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
This should work:
let num = withUnsafeMutablePointer(&value) {
self.read(UnsafeMutablePointer($0), maxLength: sizeofValue(value))
}
Explanation: withUnsafeMutablePointer()
calls the closure (block) with the only argument
($0
in shorthand notation) set to the address of value
.
$0
has the type UnsafeMutablePointer<Double>
and read()
expects an
UnsafeMutablePointer<UInt8>
as the first argument, therefore another conversion
is necessary. The return value of the closure is then assigned to num
.
Sorry. It doesn't work. I got "Cannot invoke 'init' with an argument list of type '(UnsafeMutablePointer<T>, maxLength: IntegerLiteralConvertible)'"
– Bagusflyer
Sep 15 '14 at 10:43
@bagusflyer: See updated answer.
– Martin R
Sep 15 '14 at 11:01
OK, I'll try. By the way, I'm not the one why downvote your answer. I'll up vote for you anyway.
– Bagusflyer
Sep 15 '14 at 11:06
But it seems the result is not correct. Where is the result? In value, am I right?
– Bagusflyer
Sep 15 '14 at 11:14
The result is: num = 8,value = 3.31609222784626e-296
– Bagusflyer
Sep 15 '14 at 11:19
|
show 3 more comments
This should work:
let num = withUnsafeMutablePointer(&value) {
self.read(UnsafeMutablePointer($0), maxLength: sizeofValue(value))
}
Explanation: withUnsafeMutablePointer()
calls the closure (block) with the only argument
($0
in shorthand notation) set to the address of value
.
$0
has the type UnsafeMutablePointer<Double>
and read()
expects an
UnsafeMutablePointer<UInt8>
as the first argument, therefore another conversion
is necessary. The return value of the closure is then assigned to num
.
Sorry. It doesn't work. I got "Cannot invoke 'init' with an argument list of type '(UnsafeMutablePointer<T>, maxLength: IntegerLiteralConvertible)'"
– Bagusflyer
Sep 15 '14 at 10:43
@bagusflyer: See updated answer.
– Martin R
Sep 15 '14 at 11:01
OK, I'll try. By the way, I'm not the one why downvote your answer. I'll up vote for you anyway.
– Bagusflyer
Sep 15 '14 at 11:06
But it seems the result is not correct. Where is the result? In value, am I right?
– Bagusflyer
Sep 15 '14 at 11:14
The result is: num = 8,value = 3.31609222784626e-296
– Bagusflyer
Sep 15 '14 at 11:19
|
show 3 more comments
This should work:
let num = withUnsafeMutablePointer(&value) {
self.read(UnsafeMutablePointer($0), maxLength: sizeofValue(value))
}
Explanation: withUnsafeMutablePointer()
calls the closure (block) with the only argument
($0
in shorthand notation) set to the address of value
.
$0
has the type UnsafeMutablePointer<Double>
and read()
expects an
UnsafeMutablePointer<UInt8>
as the first argument, therefore another conversion
is necessary. The return value of the closure is then assigned to num
.
This should work:
let num = withUnsafeMutablePointer(&value) {
self.read(UnsafeMutablePointer($0), maxLength: sizeofValue(value))
}
Explanation: withUnsafeMutablePointer()
calls the closure (block) with the only argument
($0
in shorthand notation) set to the address of value
.
$0
has the type UnsafeMutablePointer<Double>
and read()
expects an
UnsafeMutablePointer<UInt8>
as the first argument, therefore another conversion
is necessary. The return value of the closure is then assigned to num
.
edited Sep 15 '14 at 11:08
answered Sep 15 '14 at 10:36


Martin RMartin R
406k57900997
406k57900997
Sorry. It doesn't work. I got "Cannot invoke 'init' with an argument list of type '(UnsafeMutablePointer<T>, maxLength: IntegerLiteralConvertible)'"
– Bagusflyer
Sep 15 '14 at 10:43
@bagusflyer: See updated answer.
– Martin R
Sep 15 '14 at 11:01
OK, I'll try. By the way, I'm not the one why downvote your answer. I'll up vote for you anyway.
– Bagusflyer
Sep 15 '14 at 11:06
But it seems the result is not correct. Where is the result? In value, am I right?
– Bagusflyer
Sep 15 '14 at 11:14
The result is: num = 8,value = 3.31609222784626e-296
– Bagusflyer
Sep 15 '14 at 11:19
|
show 3 more comments
Sorry. It doesn't work. I got "Cannot invoke 'init' with an argument list of type '(UnsafeMutablePointer<T>, maxLength: IntegerLiteralConvertible)'"
– Bagusflyer
Sep 15 '14 at 10:43
@bagusflyer: See updated answer.
– Martin R
Sep 15 '14 at 11:01
OK, I'll try. By the way, I'm not the one why downvote your answer. I'll up vote for you anyway.
– Bagusflyer
Sep 15 '14 at 11:06
But it seems the result is not correct. Where is the result? In value, am I right?
– Bagusflyer
Sep 15 '14 at 11:14
The result is: num = 8,value = 3.31609222784626e-296
– Bagusflyer
Sep 15 '14 at 11:19
Sorry. It doesn't work. I got "Cannot invoke 'init' with an argument list of type '(UnsafeMutablePointer<T>, maxLength: IntegerLiteralConvertible)'"
– Bagusflyer
Sep 15 '14 at 10:43
Sorry. It doesn't work. I got "Cannot invoke 'init' with an argument list of type '(UnsafeMutablePointer<T>, maxLength: IntegerLiteralConvertible)'"
– Bagusflyer
Sep 15 '14 at 10:43
@bagusflyer: See updated answer.
– Martin R
Sep 15 '14 at 11:01
@bagusflyer: See updated answer.
– Martin R
Sep 15 '14 at 11:01
OK, I'll try. By the way, I'm not the one why downvote your answer. I'll up vote for you anyway.
– Bagusflyer
Sep 15 '14 at 11:06
OK, I'll try. By the way, I'm not the one why downvote your answer. I'll up vote for you anyway.
– Bagusflyer
Sep 15 '14 at 11:06
But it seems the result is not correct. Where is the result? In value, am I right?
– Bagusflyer
Sep 15 '14 at 11:14
But it seems the result is not correct. Where is the result? In value, am I right?
– Bagusflyer
Sep 15 '14 at 11:14
The result is: num = 8,value = 3.31609222784626e-296
– Bagusflyer
Sep 15 '14 at 11:19
The result is: num = 8,value = 3.31609222784626e-296
– Bagusflyer
Sep 15 '14 at 11:19
|
show 3 more comments
The method above does not work for me, using Swift 2 but I discovered a much more simpler method to do this conversion and vice versa:
func binarytotype <T> (value: [UInt8], _: T.Type) -> T
{
return value.withUnsafeBufferPointer
{
return UnsafePointer<T>($0.baseAddress).memory
}
}
func typetobinary <T> (var value: T) -> [UInt8]
{
return withUnsafePointer(&value)
{
Array(UnsafeBufferPointer(start: UnsafePointer<UInt8>($0), count: sizeof(T)))
}
}
let a: Double = 0.25
let b: [UInt8] = typetobinary(a) // -> [0, 0, 0, 0, 0, 0, 208, 63]
let c = binarytotype(b, Double.self) // -> 0.25
I have tested it with Xcode 7.2 in the playground.
add a comment |
The method above does not work for me, using Swift 2 but I discovered a much more simpler method to do this conversion and vice versa:
func binarytotype <T> (value: [UInt8], _: T.Type) -> T
{
return value.withUnsafeBufferPointer
{
return UnsafePointer<T>($0.baseAddress).memory
}
}
func typetobinary <T> (var value: T) -> [UInt8]
{
return withUnsafePointer(&value)
{
Array(UnsafeBufferPointer(start: UnsafePointer<UInt8>($0), count: sizeof(T)))
}
}
let a: Double = 0.25
let b: [UInt8] = typetobinary(a) // -> [0, 0, 0, 0, 0, 0, 208, 63]
let c = binarytotype(b, Double.self) // -> 0.25
I have tested it with Xcode 7.2 in the playground.
add a comment |
The method above does not work for me, using Swift 2 but I discovered a much more simpler method to do this conversion and vice versa:
func binarytotype <T> (value: [UInt8], _: T.Type) -> T
{
return value.withUnsafeBufferPointer
{
return UnsafePointer<T>($0.baseAddress).memory
}
}
func typetobinary <T> (var value: T) -> [UInt8]
{
return withUnsafePointer(&value)
{
Array(UnsafeBufferPointer(start: UnsafePointer<UInt8>($0), count: sizeof(T)))
}
}
let a: Double = 0.25
let b: [UInt8] = typetobinary(a) // -> [0, 0, 0, 0, 0, 0, 208, 63]
let c = binarytotype(b, Double.self) // -> 0.25
I have tested it with Xcode 7.2 in the playground.
The method above does not work for me, using Swift 2 but I discovered a much more simpler method to do this conversion and vice versa:
func binarytotype <T> (value: [UInt8], _: T.Type) -> T
{
return value.withUnsafeBufferPointer
{
return UnsafePointer<T>($0.baseAddress).memory
}
}
func typetobinary <T> (var value: T) -> [UInt8]
{
return withUnsafePointer(&value)
{
Array(UnsafeBufferPointer(start: UnsafePointer<UInt8>($0), count: sizeof(T)))
}
}
let a: Double = 0.25
let b: [UInt8] = typetobinary(a) // -> [0, 0, 0, 0, 0, 0, 208, 63]
let c = binarytotype(b, Double.self) // -> 0.25
I have tested it with Xcode 7.2 in the playground.
answered Feb 2 '16 at 19:50
j.s.comj.s.com
9491018
9491018
add a comment |
add a comment |
Here is the updated version for Swift 3 beta 6 which is different, thanx to Martin.
func binarytotype <T> (_ value: [UInt8], _ : T.Type) -> T
{
return value.withUnsafeBufferPointer
{
UnsafeRawPointer($0.baseAddress!).load(as: T.self)
}
}
func typetobinary <T> (_ value: T) -> [UInt8]
{
var v = value
let size = MemoryLayout<T>.size
return withUnsafePointer(to: &v)
{
$0.withMemoryRebound(to: UInt8.self, capacity: size)
{
Array(UnsafeBufferPointer(start: $0, count: size))
}
}
}
let dd: Double = 1.23456 // -> 1.23456
let d = typetobinary(dd) // -> [56, 50, 143, 252, 193, 192, 243, 63]
let i = binarytotype(d, Double.self) // -> 1.23456
add a comment |
Here is the updated version for Swift 3 beta 6 which is different, thanx to Martin.
func binarytotype <T> (_ value: [UInt8], _ : T.Type) -> T
{
return value.withUnsafeBufferPointer
{
UnsafeRawPointer($0.baseAddress!).load(as: T.self)
}
}
func typetobinary <T> (_ value: T) -> [UInt8]
{
var v = value
let size = MemoryLayout<T>.size
return withUnsafePointer(to: &v)
{
$0.withMemoryRebound(to: UInt8.self, capacity: size)
{
Array(UnsafeBufferPointer(start: $0, count: size))
}
}
}
let dd: Double = 1.23456 // -> 1.23456
let d = typetobinary(dd) // -> [56, 50, 143, 252, 193, 192, 243, 63]
let i = binarytotype(d, Double.self) // -> 1.23456
add a comment |
Here is the updated version for Swift 3 beta 6 which is different, thanx to Martin.
func binarytotype <T> (_ value: [UInt8], _ : T.Type) -> T
{
return value.withUnsafeBufferPointer
{
UnsafeRawPointer($0.baseAddress!).load(as: T.self)
}
}
func typetobinary <T> (_ value: T) -> [UInt8]
{
var v = value
let size = MemoryLayout<T>.size
return withUnsafePointer(to: &v)
{
$0.withMemoryRebound(to: UInt8.self, capacity: size)
{
Array(UnsafeBufferPointer(start: $0, count: size))
}
}
}
let dd: Double = 1.23456 // -> 1.23456
let d = typetobinary(dd) // -> [56, 50, 143, 252, 193, 192, 243, 63]
let i = binarytotype(d, Double.self) // -> 1.23456
Here is the updated version for Swift 3 beta 6 which is different, thanx to Martin.
func binarytotype <T> (_ value: [UInt8], _ : T.Type) -> T
{
return value.withUnsafeBufferPointer
{
UnsafeRawPointer($0.baseAddress!).load(as: T.self)
}
}
func typetobinary <T> (_ value: T) -> [UInt8]
{
var v = value
let size = MemoryLayout<T>.size
return withUnsafePointer(to: &v)
{
$0.withMemoryRebound(to: UInt8.self, capacity: size)
{
Array(UnsafeBufferPointer(start: $0, count: size))
}
}
}
let dd: Double = 1.23456 // -> 1.23456
let d = typetobinary(dd) // -> [56, 50, 143, 252, 193, 192, 243, 63]
let i = binarytotype(d, Double.self) // -> 1.23456
answered Aug 17 '16 at 19:10
j.s.comj.s.com
9491018
9491018
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f25845574%2fconvert-an-objective-c-method-into-swift-for-nsinputstream-convert-bytes-into-d%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown