Pharo-users
By thread
pharo-users@lists.pharo.org
By month
Messages by month
- ----- 2026 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
September 2016
- 74 participants
- 584 messages
Re: [Pharo-users] Profiling
by Vitor Medina Cruz
Ok, my mistake was not take in account that DO has a MUCH faster link than
the the one I have at home... :/ Those ten I/O calls traffics more than
5Mb, so you are right Sven :)
Ben: I tried to change the Delay Scheduler, but the problem is that there
is actually too much I/O wait.There was also no difference between running
on Windows or Linux platform.
On Thu, Sep 8, 2016 at 2:48 PM, Vitor Medina Cruz <vitormcruz(a)gmail.com>
wrote:
> Why not ? You are doing (lot's of) network I/O. It is normal that your
>> image code has to wait from time to time for data to come in from the
>> network. By definition that is slow (in CPU terms). The Digital Ocean
>> instance is probably faster in that respect.
>>
>
> But only the wait time corresponds to 73% (~13 seconds in no CPU time) of
> the entire procedure, which is taking ~18 seconds total. In the remote
> server the same procedure takes only ~6 seconds, supposing it still takes
> 73% in waiting it would give us ~4 seconds in wait time. I think 4 seconds
> to 13 seconds of difference for wait time is too much, it is not? The
> maximum I/O calls I am doing is ten. It is like it takes more than one
> second waiting for response, which does not seems right. I will do
> additional tests.
>
>
>> Also, having the IDE UI with lot's of tools open might influence things.
>> Best do some more experiments. But benchmarking is very tricky.
>
>
> Yes, I will try doing different stuff here!
>
> Thanks!
> Vitor
>
>
> On Thu, Sep 8, 2016 at 9:09 AM, Sven Van Caekenberghe <sven(a)stfx.eu>
> wrote:
>
>>
>> > On 08 Sep 2016, at 14:01, Vitor Medina Cruz <vitormcruz(a)gmail.com>
>> wrote:
>> >
>> > Thanks for the answers!
>> >
>> > If this is time spent on I/O it is really strange. I am consuming the
>> Twitter API and it don't get so much time like this to get a response.
>> Besides, while those profiles were made at a Windows 10 local machine, the
>> same code on a Pharo 5 (get.pharo.org) deployed on a linux deploy on
>> Digital Ocean takes ~6 seconds, which means that a lot less time is spent
>> on I/O. Isn't that Strange? I will try to spin up a local linux machine
>> with both a headfull and headless Pharo to see if this time changes.
>> >
>> > Is there a way to profile a remote image? I would like to see what is
>> happening in the Digital Ocean deploy. Maybe put the headless Pharo there
>> in profiling mode?
>> >
>> > Ben: this is a heavy json parser procedure, I would expect to NeoJson
>> to take some time. Perhaps there is a way to optimize this, but what catch
>> my attention was the huge amount of time spent on the idleProcess. Been
>> that I/O wait, it shouldn't be like this.
>>
>> Why not ? You are doing (lot's of) network I/O. It is normal that your
>> image code has to wait from time to time for data to come in from the
>> network. By definition that is slow (in CPU terms). The Digital Ocean
>> instance is probably faster in that respect.
>>
>> Also, having the IDE UI with lot's of tools open might influence things.
>> Best do some more experiments. But benchmarking is very tricky.
>>
>> > Thanks,
>> > Vitor
>> >
>> > On Thu, Sep 8, 2016 at 4:42 AM, Clément Bera <bera.clement(a)gmail.com>
>> wrote:
>> >
>> >
>> > On Thu, Sep 8, 2016 at 3:44 AM, Vitor Medina Cruz <vitormcruz(a)gmail.com>
>> wrote:
>> > Hello,
>> >
>> > While profiling some I/O code that takes ~20 seconds to execute under
>> my local image, the report says that about ~13 seconds is waste on
>> OtherProcesses -> ProcessorScheduler class>>idleProcess. I could not
>> understand what this idleProcess do by looking at the code. First I thought
>> this could be time waiting the I/O operation to terminate, but that don't
>> make much sense because I have the same code on a Digital Ocean Doplet and
>> it takes ~6 seconds to execute.
>> >
>> > Can someone help me understand what does this time on idleProcess means?
>> >
>> > The VM is not event-driven. Hence when all the processes are suspended
>> or terminated, the VM falls back to the idle process. The idle process
>> waits for 1ms, checks if any event has occurred and/or if a process can
>> restart, and if not waits for 1 more ms to check again. That's kind of dumb
>> but it works and we need both time and funds to make the VM event-driven
>> (in the latter case the VM restarts directly when an event happens, instead
>> of checking at the next ms).
>> >
>> > Basically the idle process profiled time is the time where Pharo has
>> nothing to do because all processes are terminated or suspended. You can
>> say that it is the time spent in I/O operations + the time before Pharo
>> notices the I/O operation is terminated, which can be up to 1ms.
>> >
>> >
>> >
>> > The full report is:
>> >
>> > - 18407 tallies, 18605 msec.
>> >
>> > **Tree**
>> > --------------------------------
>> > Process: (40s) Morphic UI Process: nil
>> > --------------------------------
>> > 25.1% {4663ms} UndefinedObject>>DoIt
>> > 25.1% {4663ms} TweetsServiceRestConsumer(Twee
>> tsService)>>hashesTop:usingLastTweetsUpTo:fromHandler:
>> > 25.0% {4656ms} TweetsServiceRestConsumer>>fet
>> chLastTweetsUpTo:fromHandler:
>> > 14.3% {2653ms} OAuthProvider>>httpGet:
>> > |14.3% {2653ms} ZnOAuth1Service>>httpGet:using:
>> > | 14.3% {2653ms} ZnOAuth1Service>>executeRequest:token:
>> > | 14.3% {2653ms} ZnOAuth1Service>>executeReques
>> t:token:followRedirects:
>> > | 14.2% {2646ms} ZnClient>>execute
>> > | 14.2% {2646ms} ZnClient>>withProgressDo:
>> > | 14.2% {2646ms} ZnSignalProgress
>> class(DynamicVariable class)>>value:during:
>> > | 14.2% {2646ms} ZnSignalProgress(DynamicVariab
>> le)>>value:during:
>> > | 14.2% {2646ms} BlockClosure>>ensure:
>> > | 14.2% {2646ms} ZnSignalProgress(DynamicVariab
>> le)>>value:during:
>> > | 14.2% {2646ms} ZnClient>>withProgressDo:
>> > | 14.2% {2646ms} ZnClient>>execute
>> > | 14.2% {2646ms}
>> ZnClient>>executeWithTimeout
>> > | 14.2% {2646ms} ZnClient>>withTimeoutDo:
>> > | 14.2% {2646ms} ZnConnectionTimeout
>> class(DynamicVariable class)>>value:during:
>> > | 14.2% {2646ms}
>> ZnConnectionTimeout(DynamicVariable)>>value:during:
>> > | 14.2% {2646ms}
>> BlockClosure>>ensure:
>> > | 14.2% {2646ms}
>> ZnConnectionTimeout(DynamicVariable)>>value:during:
>> > | 14.2% {2646ms}
>> ZnClient>>withTimeoutDo:
>> > | 14.2% {2646ms}
>> ZnClient>>executeWithTimeout
>> > | 14.2% {2646ms}
>> BlockClosure>>on:do:
>> > | 14.2% {2646ms}
>> ZnClient>>executeWithTimeout
>> > | 14.2% {2646ms}
>> ZnClient>>executeWithRetriesRemaining:
>> > | 14.2% {2644ms}
>> BlockClosure>>on:do:
>> > | 14.2% {2644ms}
>> ZnClient>>executeWithRetriesRemaining:
>> > | 14.2% {2644ms}
>> ZnClient>>executeWithRedirectsRemaining:
>> > | 14.2%
>> {2641ms} ZnClient>>getConnectionAndExecute
>> > | 13.8%
>> {2569ms} BlockClosure>>ensure:
>> > | 13.8%
>> {2569ms} ZnClient>>getConnectionAndExecute
>> > | 13.8%
>> {2569ms} ZnClient>>executeRequestResponse
>> > |
>> 13.8% {2569ms} ZnClient>>readResponse
>> > |
>> 13.8% {2569ms} ZnResponse class(ZnMessage class)>>readFrom:
>> > |
>> 13.8% {2569ms} ZnResponse(ZnMessage)>>readFrom:
>> > |
>> 13.8% {2559ms} ZnResponse>>readEntityFrom:
>> > |
>> 13.8% {2559ms} ZnResponse(ZnMessage)>>readEntityFrom:
>> > |
>> 13.8% {2559ms} ZnEntityReader>>readEntity
>> > |
>> 13.8% {2559ms} ZnEntityReader>>readEntityFromStream
>> > |
>> 13.7% {2555ms} ZnEntityReader>>readFrom:usingType:andLength:
>> > |
>> 13.7% {2555ms} ZnEntity class>>readFrom:usingType:andLength:
>> > |
>> 13.7% {2555ms} ZnStringEntity>>readFrom:
>> > |
>> 13.7% {2550ms} BlockClosure>>on:do:
>> > |
>> 13.7% {2550ms} ZnStringEntity>>readFrom:
>> > |
>> 13.7% {2550ms} ZnUTF8Encoder>>readInto:starti
>> ngAt:count:fromStream:
>> > |
>> 13.7% {2550ms} ZnUTF8Encoder>>optimizedReadIn
>> to:startingAt:count:fromStream:
>> > |
>> 13.7% {2550ms} ZnLimitedReadStream>>readInto:
>> startingAt:count:
>> > |
>> 13.7% {2547ms} ZdcSecureSocketStream(ZdcOptim
>> izedSocketStream)>>readInto:startingAt:count:
>> > |
>> 13.7% {2547ms} ZdcSecureSocketStream(ZdcSimpl
>> eSocketStream)>>fillReadBuffer
>> > |
>> 9.0% {1669ms} ZdcSecureSocketStream(ZdcSimpl
>> eSocketStream)>>fillReadBuffer
>> > |
>> |5.8% {1076ms}
>> ZdcSecureSocketStream(ZdcSimpleSocketStream)>>fillReadBuffer
>> > |
>> | |3.6% {671ms}
>> ZdcSecureSocketStream(ZdcSimpleSocketStream)>>fillReadBuffer
>> > |
>> | | |1.8% {337ms}
>> ZdcSecureSocketStream(ZdcSimpleSocketStream)>>fillReadBuffer
>> > |
>> | | | |1.2% {225ms} BlockClosure>>on:do:
>> > |
>> | | | | 1.2% {225ms}
>> ZdcSecureSocketStream(ZdcSimpleSocketStream)>>fillReadBuffer
>> > |
>> | | | | 1.2% {225ms}
>> ZdcSecureSocketStream(ZdcAbstractSocketStream)>>socketWaitForData
>> > |
>> | | | | 1.2% {225ms}
>> Socket>>waitForDataFor:
>> > |
>> | | | | 1.2% {225ms}
>> Socket>>waitForDataFor:ifClosed:ifTimedOut:
>> > |
>> | | | | 1.2% {225ms}
>> Semaphore>>waitTimeoutMSecs:
>> > |
>> | | | | 1.2% {225ms}
>> DelayWaitTimeout>>wait
>> > |
>> | | | | 1.2% {225ms}
>> BlockClosure>>ensure:
>> > |
>> | | | | 1.2% {225ms}
>> DelayWaitTimeout>>wait
>> > |
>> | | | | 1.1% {196ms}
>> DelayWaitTimeout(Delay)>>unschedule
>> > |
>> | | | | 1.1% {196ms}
>> DelayExperimentalSpinScheduler>>unschedule:
>> > |
>> | | |1.8% {335ms} BlockClosure>>on:do:
>> > |
>> | | | 1.8% {335ms}
>> ZdcSecureSocketStream(ZdcSimpleSocketStream)>>fillReadBuffer
>> > |
>> | | | 1.8% {335ms}
>> ZdcSecureSocketStream(ZdcAbstractSocketStream)>>socketWaitForData
>> > |
>> | | | 1.8% {335ms}
>> Socket>>waitForDataFor:
>> > |
>> | | | 1.8% {335ms}
>> Socket>>waitForDataFor:ifClosed:ifTimedOut:
>> > |
>> | | | 1.8% {335ms}
>> Semaphore>>waitTimeoutMSecs:
>> > |
>> | | | 1.8% {335ms}
>> DelayWaitTimeout>>wait
>> > |
>> | | | 1.8% {335ms}
>> BlockClosure>>ensure:
>> > |
>> | | | 1.8% {335ms}
>> DelayWaitTimeout>>wait
>> > |
>> | | | 1.5% {273ms}
>> DelayWaitTimeout(Delay)>>unschedule
>> > |
>> | | | 1.5% {273ms}
>> DelayExperimentalSpinScheduler>>unschedule:
>> > |
>> | |2.2% {405ms} BlockClosure>>on:do:
>> > |
>> | | 2.2% {405ms}
>> ZdcSecureSocketStream(ZdcSimpleSocketStream)>>fillReadBuffer
>> > |
>> | | 2.2% {405ms}
>> ZdcSecureSocketStream(ZdcAbstractSocketStream)>>socketWaitForData
>> > |
>> | | 2.2% {405ms}
>> Socket>>waitForDataFor:
>> > |
>> | | 2.2% {405ms}
>> Socket>>waitForDataFor:ifClosed:ifTimedOut:
>> > |
>> | | 2.2% {405ms}
>> Semaphore>>waitTimeoutMSecs:
>> > |
>> | | 2.2% {405ms}
>> DelayWaitTimeout>>wait
>> > |
>> | | 2.2% {405ms}
>> BlockClosure>>ensure:
>> > |
>> | | 2.2% {405ms}
>> DelayWaitTimeout>>wait
>> > |
>> | | 1.7% {314ms}
>> DelayWaitTimeout(Delay)>>unschedule
>> > |
>> | | 1.7% {314ms}
>> DelayExperimentalSpinScheduler>>unschedule:
>> > |
>> |3.2% {592ms} BlockClosure>>on:do:
>> > |
>> | 3.2% {592ms}
>> ZdcSecureSocketStream(ZdcSimpleSocketStream)>>fillReadBuffer
>> > |
>> | 3.2% {592ms}
>> ZdcSecureSocketStream(ZdcAbstractSocketStream)>>socketWaitForData
>> > |
>> | 3.2% {592ms} Socket>>waitForDataFor:
>> > |
>> | 3.2% {592ms}
>> Socket>>waitForDataFor:ifClosed:ifTimedOut:
>> > |
>> | 3.2% {592ms}
>> Semaphore>>waitTimeoutMSecs:
>> > |
>> | 3.2% {592ms}
>> DelayWaitTimeout>>wait
>> > |
>> | 3.2% {592ms}
>> BlockClosure>>ensure:
>> > |
>> | 3.2% {592ms}
>> DelayWaitTimeout>>wait
>> > |
>> | 2.3% {429ms}
>> DelayWaitTimeout(Delay)>>unschedule
>> > |
>> | 2.3% {429ms}
>> DelayExperimentalSpinScheduler>>unschedule:
>> > |
>> 4.7% {876ms} BlockClosure>>on:do:
>> > |
>> 4.7% {876ms} ZdcSecureSocketStream(ZdcSimpl
>> eSocketStream)>>fillReadBuffer
>> > |
>> 4.7% {876ms}
>> ZdcSecureSocketStream(ZdcAbstractSocketStream)>>socketWaitForData
>> > |
>> 4.7% {876ms} Socket>>waitForDataFor:
>> > |
>> 4.7% {876ms}
>> Socket>>waitForDataFor:ifClosed:ifTimedOut:
>> > |
>> 4.7% {876ms}
>> Semaphore>>waitTimeoutMSecs:
>> > |
>> 4.7% {876ms}
>> DelayWaitTimeout>>wait
>> > |
>> 4.7% {876ms}
>> BlockClosure>>ensure:
>> > |
>> 4.7% {876ms}
>> DelayWaitTimeout>>wait
>> > |
>> 2.9% {532ms}
>> DelayWaitTimeout(Delay)>>unschedule
>> > |
>> |2.9% {532ms}
>> DelayExperimentalSpinScheduler>>unschedule:
>> > |
>> 1.4% {268ms} primitives
>> > 10.8% {2002ms} NeoJSONObject class>>fromString:
>> > 10.8% {2002ms} NeoJSONReader>>next
>> > 10.8% {2002ms} NeoJSONReader>>parseValue
>> > 10.8% {2002ms} NeoJSONReader>>parseList
>> > 10.8% {2002ms} Array class(SequenceableCollection
>> class)>>streamContents:
>> > 10.8% {2002ms} Array class(SequenceableCollection
>> class)>>new:streamContents:
>> > 10.8% {2002ms} NeoJSONReader>>parseList
>> > 10.8% {2002ms} NeoJSONReader>>parseListElementsDo:
>> > 10.8% {2002ms} NeoJSONReader>>parseListDo:
>> > 10.8% {2002ms} NeoJSONReader>>parseListElemen
>> tsDo:
>> > 10.8% {2002ms} NeoJSONReader>>parseValue
>> > 10.8% {2002ms} NeoJSONReader>>parseMap
>> > 10.8% {2002ms}
>> NeoJSONReader>>parseMapKeysAndValuesDo:
>> > 10.8% {2002ms}
>> NeoJSONReader>>parseMapKeysDo:
>> > 10.8% {2002ms}
>> NeoJSONReader>>parseMapDo:
>> > 10.7% {1994ms}
>> NeoJSONReader>>parseMapKeysDo:
>> > 9.6% {1785ms}
>> NeoJSONReader>>parseMapKeysAndValuesDo:
>> > |9.2% {1717ms}
>> NeoJSONReader>>parseValue
>> > | 8.6% {1600ms}
>> NeoJSONReader>>parseMap
>> > | 8.6% {1600ms}
>> NeoJSONReader>>parseMapKeysAndValuesDo:
>> > | 8.6% {1600ms}
>> NeoJSONReader>>parseMapKeysDo:
>> > | 8.6% {1600ms}
>> NeoJSONReader>>parseMapDo:
>> > | 8.5% {1577ms}
>> NeoJSONReader>>parseMapKeysDo:
>> > | 6.4% {1187ms}
>> NeoJSONReader>>parseMapKeysAndValuesDo:
>> > | |5.6% {1041ms}
>> NeoJSONReader>>parseValue
>> > | | 3.8% {708ms}
>> NeoJSONReader>>parseList
>> > | | 3.8%
>> {706ms} Array class(SequenceableCollection class)>>streamContents:
>> > | | 3.8%
>> {706ms} Array class(SequenceableCollection class)>>new:streamContents:
>> > | | 3.7%
>> {693ms} NeoJSONReader>>parseList
>> > | | 3.7%
>> {693ms} NeoJSONReader>>parseListElementsDo:
>> > | |
>> 3.7% {693ms} NeoJSONReader>>parseListDo:
>> > | |
>> 3.7% {689ms} NeoJSONReader>>parseListElementsDo:
>> > | |
>> 3.7% {689ms} NeoJSONReader>>parseValue
>> > | |
>> 3.7% {687ms} NeoJSONReader>>parseMap
>> > | |
>> 3.7% {687ms} NeoJSONReader>>parseMapKeysAndValuesDo:
>> > | |
>> 3.7% {687ms} NeoJSONReader>>parseMapKeysDo:
>> > | |
>> 3.7% {687ms} NeoJSONReader>>parseMapDo:
>> > | |
>> 3.6% {672ms} NeoJSONReader>>parseMapKeysDo:
>> > | |
>> 3.0% {550ms} NeoJSONReader>>parseMapKeysAndValuesDo:
>> > | |
>> 2.6% {486ms} NeoJSONReader>>parseValue
>> > | |
>> 1.5% {285ms} NeoJSONReader>>parseMap
>> > | |
>> 1.5% {285ms} NeoJSONReader>>parseMapKeysAndValuesDo:
>> > | |
>> 1.5% {285ms} NeoJSONReader>>parseMapKeysDo:
>> > | |
>> 1.5% {285ms} NeoJSONReader>>parseMapDo:
>> > | |
>> 1.5% {285ms} NeoJSONReader>>parseMapKeysDo:
>> > | |
>> 1.4% {252ms} NeoJSONReader>>parseMapKeysAnd
>> ValuesDo:
>> > | |
>> 1.3% {236ms} NeoJSONReader>>parseValue
>> > | |
>> 1.0% {193ms} NeoJSONReader>>parseMap
>> > | |
>> 1.0% {193ms} NeoJSONReader>>parseMapKeysAnd
>> ValuesDo:
>> > | |
>> 1.0% {193ms}
>> NeoJSONReader>>parseMapKeysDo:
>> > | |
>> 1.0% {188ms} NeoJSONReader>>parseMapDo:
>> > | 1.9% {347ms}
>> NeoJSONReader>>parsePropertyName
>> > | 1.1% {196ms}
>> NeoJSONReader>>parseValue
>> > | 1.0% {189ms}
>> NeoJSONReader>>parseString
>> > 1.0% {189ms}
>> NeoJSONReader>>parsePropertyName
>> > --------------------------------
>> > Process: other processes
>> > --------------------------------
>> > 73.2% {13628ms} ProcessorScheduler class>>startUp
>> > |73.2% {13628ms} ProcessorScheduler class>>idleProcess
>> > 1.4% {259ms} WeakArray class>>restartFinalizationProcess
>> > 1.4% {259ms} WeakArray class>>finalizationProcess
>> > 1.4% {257ms} primitives
>> > **Leaves**
>> > 73.3% {13631ms} ProcessorScheduler class>>idleProcess
>> > 10.0% {1861ms} DelayExperimentalSpinScheduler>>unschedule:
>> > 3.1% {581ms} DelayWaitTimeout>>wait
>> > 1.4% {257ms} WeakArray class>>finalizationProcess
>> > 1.0% {191ms} WeakSet>>scanFor:
>> >
>> > **Memory**
>> > old +16,777,216 bytes
>> > young -17,303,480 bytes
>> > used -526,264 bytes
>> > free +17,303,480 bytes
>> >
>> > **GCs**
>> > full 1 totalling 247ms (1.0% uptime), avg
>> 247.0ms
>> > incr 127 totalling 199ms (1.0% uptime), avg 2.0ms
>> > tenures 480,033 (avg 0 GCs/tenure)
>> > root table 0 overflows
>> >
>> >
>> > Thanks in advance,
>> > Vitor
>> >
>> >
>>
>>
>>
>
Sept. 10, 2016
[ANN] Dr. Geo release 16.10a
by Hilaire
Dear Pharo fellows,
I am proud to announce release 16.10a of Dr. Geo.
It comes with the usual bug fixes and a new French programming API for
French speaking kids: programmed sketch can be written in French Smalltalk!
Read more at http://www.drgeo.eu/news/drgeo1610release
Hilaire
--
Dr. Geo
http://drgeo.eu
Sept. 10, 2016
Porting TalkFFI / LibClang to Pharo 5 UFFI
by Ben Coman
Looks like I've been reinventing the wheel making an FFI interface to
libclang. I just bumped into Ciprian's TalkFFI which provides a
NativeBoost interface to libclang (and was used to create libgit2 bindings)
* https://rochiamaya.wordpress.com/2013/07/30/create-bindings-with-talkffi/
* http://smalltalkhub.com/#!/~CipT/TalkFFI
* http://smalltalkhub.com/#!/~CipT/LibClang
But it is NativeBoost based and the Configuration loads AsmJit and
NativeBoost packages, which seems to lock up while "Initializing
Nativeboost." What is involved in porting TalkFFI to Pharo 5.0 UFFI?
For a start, these can be manually load no problem...
LibClang-FFI-Types-CiprianTeodorov.2
LibClang-Tests-CiprianTeodorov.5
LibClang-Examples-CiprianTeodorov.2
but loading LibClang-FFI-Binding-CiprianTeodorov.1
reports "This package depends on the following classes:
CLLibraryMap
CLExternalLibraryWrapper
You must resolve these dependencies before you will be able to load these
definitions:
CXIndexH"
which I found these in TalkFFI-Runtime-CiprianTeodorov.7, but loading this
reports "This package depends on the following classes:
NBExternalLibraryWrapper
You must resolve these dependencies before you will be able to load these
definitions:
CLExternalLibraryWrapper
which I see is in Pharo 4.0 and not Pharo 5.0. So what is the replacement
for NBExternalLibraryWrapper?
What are the other general patterns for porting NativeBoost apps to UFFI?
cheers -ben
Sept. 10, 2016
Re: [Pharo-users] Adopting someone else's image
by Siemen Baader
Thanks. I found out that I had two unrelated problems. Spotter was one and
not critical, and the reason I had errors with Monticello was that I had
made the mistake to rename the .image file, so it didn't match the changes
file anymore.
Siemen
--
View this message in context: http://forum.world.st/Adopting-someone-else-s-image-tp4914933p4915049.html
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.
Sept. 10, 2016
Re: [Pharo-users] arrays with FFI structs
by Esteban Lorenzano
With UFFI, what youâll do for âbeing OOâ is to:
1) extend FFIExternalStructure
2) then use your class adding methods that use the structure into it (using âselfâ as argument).
For example:
FFIExternalStructure subclass: #MyStruct.
MyStruct>>#method1: arg
^ self ffiCall: #(int function1(self, arg1))
(and example of this can be found on AthensCairoMatrix in image).
cheers,
Esteban
ps: in Pharo5, you may want to update to latest UFFI (not *needed* but better⦠I need to make a new Pharo5 build with updated versions)
> On 10 Sep 2016, at 04:41, Ben Coman <btc(a)openinworld.com> wrote:
>
> On Sat, Sep 10, 2016 at 8:47 AM, Pierce Ng <pierce(a)samadhiweb.com> wrote:
>> On Sat, Sep 10, 2016 at 01:11:18AM +0800, Ben Coman wrote:
>>> Are arrays within structs handled? I have a C type declaration...
>>
>> Ben,
>>
>> Is it possible to write C functions to manipulate these structures, build these
>> functions into a shared library, and call the functions from Pharo?
>
> Maybe. Particularly since my next challenge is to use a callback. My
> usage is parsing the VM platform C files as a one-shot import to
> analyse from Pharo, so doing most of the legwork in C and returning
> just the final result to Pharo may be fine. However at the moment my
> goal is as much about learning to use FFI, so I'll push in that
> direction as long as I can.
>
>> More "object oriented", heh.
>
> Actually "clang" is OO being written in C++. But I understand the C++
> name mangling makes life difficult for our FFI. "libclang" is the
> plain-C wrapper interface of "clang", which also is advertised as more
> stable, with clang advertised as often changing. Apparently libclang
> can't access all of clang's features, but I think it will be a while
> before I reach the point of discovering the impact of that, and it may
> well be outside my requirements.
>
> cheers -ben
>
>> Of course I've only just had a cursory glance at
>> libclang while typing this reply and don't know what your usage is.
>>
>> Pierce
>>
>
Sept. 10, 2016
Re: [Pharo-users] Cryptography packages
by Esteban Lorenzano
http://www.squeaksource.com/Cryptography.html <http://www.squeaksource.com/Cryptography.html>
some of the algorithms present there are already in the image, but others donât :)
Esteban
> On 10 Sep 2016, at 04:03, Esteban A. Maringolo <emaringolo(a)gmail.com> wrote:
>
> Hi there,
>
> What are the most maintaned/popular cryptography package for Pharo?
>
> Regards!
>
> Esteban A. Maringolo
Sept. 10, 2016
Re: [Pharo-users] arrays with FFI structs
by Ben Coman
On Sat, Sep 10, 2016 at 8:47 AM, Pierce Ng <pierce(a)samadhiweb.com> wrote:
> On Sat, Sep 10, 2016 at 01:11:18AM +0800, Ben Coman wrote:
>> Are arrays within structs handled? I have a C type declaration...
>
> Ben,
>
> Is it possible to write C functions to manipulate these structures, build these
> functions into a shared library, and call the functions from Pharo?
Maybe. Particularly since my next challenge is to use a callback. My
usage is parsing the VM platform C files as a one-shot import to
analyse from Pharo, so doing most of the legwork in C and returning
just the final result to Pharo may be fine. However at the moment my
goal is as much about learning to use FFI, so I'll push in that
direction as long as I can.
> More "object oriented", heh.
Actually "clang" is OO being written in C++. But I understand the C++
name mangling makes life difficult for our FFI. "libclang" is the
plain-C wrapper interface of "clang", which also is advertised as more
stable, with clang advertised as often changing. Apparently libclang
can't access all of clang's features, but I think it will be a while
before I reach the point of discovering the impact of that, and it may
well be outside my requirements.
cheers -ben
> Of course I've only just had a cursory glance at
> libclang while typing this reply and don't know what your usage is.
>
> Pierce
>
Sept. 10, 2016
Cryptography packages
by Esteban A. Maringolo
Hi there,
What are the most maintaned/popular cryptography package for Pharo?
Regards!
Esteban A. Maringolo
Sept. 10, 2016
Re: [Pharo-users] arrays with FFI structs
by Pierce Ng
On Sat, Sep 10, 2016 at 01:11:18AM +0800, Ben Coman wrote:
> Are arrays within structs handled? I have a C type declaration...
Ben,
Is it possible to write C functions to manipulate these structures, build these
functions into a shared library, and call the functions from Pharo? More
"object oriented", heh. Of course I've only just had a cursory glance at
libclang while typing this reply and don't know what your usage is.
Pierce
Sept. 10, 2016
Re: [Pharo-users] [SCREENCAST] Creating GUIs with Pharo
by Dimitris Chloupis
good thing you did not
Sorry guys but that was a spectacular failure, the recording started fine,
Twitch decided to stop broadcasting after 3 minutes , the software I use
which is by the way recommended by Twitch was saying that it was streaming,
then it did not let me close the stream had to exit it and when i went back
to twitch i realised that of the 1 hour 20 minutes me talking to the
monitor it recorded only the first 3.
A spectacular failure :D
I think I will go back to 10 min youtube tutorial, its far safer :D
A huge apology to people who could not watch the broadcast, if I manage to
find the video file, assuming that software bothered to record it I will
publish it but its most likely all my effort went to waste.
Oh well, that's life I guess.
On Fri, Sep 9, 2016 at 9:45 PM Esteban Lorenzano <estebanlm(a)gmail.com>
wrote:
> I will not be able to attend :(
>
> (Iâm in a train now⦠but as a regular observation⦠I think a Friday 21h is
> not the best moment :P)
>
> Esteban
>
> On 09 Sep 2016, at 20:30, Dimitris Chloupis <kilon.alios(a)gmail.com> wrote:
>
> Just a friendly reminder the screencast will begin in 30 minutes.
>
> https://www.twitch.tv/kilonalios
>
>
>
> On Fri, Sep 9, 2016 at 2:09 PM Dimitris Chloupis <kilon.alios(a)gmail.com>
> wrote:
>
>> Sure no problem , I am always online with Discord, so even if one does
>> not attend he can ask me to show him on a next screencast. I will try to
>> make one screencast per month. 50 per year , one or half hour long
>> depending on the subject and how much I know. For those that prefer the
>> mailing list you can use this thread for discussion.
>> On Fri, 9 Sep 2016 at 13:07, Ben Coman <btc(a)openinworld.com> wrote:
>>
>>> Sounds interesting but its 3am for me, so probably I wont attend. I
>>> look forward to watch it later.
>>>
>>> cheers -ben
>>>
>>> On Fri, Sep 9, 2016 at 5:39 PM, Dimitris Chloupis <kilon.alios(a)gmail.com>
>>> wrote:
>>> > So as I promised tonight I will share a live screencast about creating
>>> GUIs
>>> > with Pharo, that includes UIManager , Morphic and a bit of Spec. The
>>> focus
>>> > will be mainly Morphic that I am more familiar with.
>>> >
>>> > The place is my twitch channel
>>> >
>>> > https://www.twitch.tv/kilonalios
>>> >
>>> > You dont need an account to watch but if you want to chat with me live
>>> > during the screencast you do. I will be checking Discord chat as well.
>>> >
>>> > The time is 22:00 local time (Athens, Greece) which is 20:00 GMT
>>> (including
>>> > +1 hour summer time) which is 19:00 UTC (no +1 hour summer time)
>>> > there is also a countdown here
>>> >
>>> >
>>> https://www.timeanddate.com/countdown/launch?iso=20160909T22&p0=26&msg=%5BS…
>>> >
>>> > After the screencast I will be in the Discord channel for questions and
>>> > ideas , you can get an invite here
>>> >
>>> > https://discord.gg/F6nAd
>>> >
>>> > If you are unable to attend , Twitch makes screencasts available
>>> online to
>>> > watch any time its convenient for you
>>> >
>>> > See you then, have fun :)
>>> >
>>> >
>>>
>>>
>
Sept. 9, 2016