Is fileout on the change sorter working in Pharo 70?
Hi I'm trying to rescue some of my work (that I cannot save in MC nor in Iceberg because the system does not see it - super funny). I can browse the change using the changesorter when I do fileout the system tells me that the file it saved but I cannot find it on my disc. Apparently none of the fileout is working in the changesorter. :( Stef
* Stephane Ducasse <stepharo.self@gmail.com> [171108 21:29]:
Hi
I'm trying to rescue some of my work (that I cannot save in MC nor in Iceberg because the system does not see it - super funny).
I can browse the change using the changesorter when I do fileout the system tells me that the file it saved but I cannot find it on my disc. Apparently none of the fileout is working in the changesorter. :(
I have successfully filed out code with epicea but not changesorter. HTH, Christian -- May you be peaceful, may you live in safety, may you be free from suffering, and may you live with ease.
Ah thanks we should fix this. On Wed, Nov 8, 2017 at 9:31 PM, Christian Kellermann <ckeen@pestilenz.org> wrote:
* Stephane Ducasse <stepharo.self@gmail.com> [171108 21:29]:
Hi
I'm trying to rescue some of my work (that I cannot save in MC nor in Iceberg because the system does not see it - super funny).
I can browse the change using the changesorter when I do fileout the system tells me that the file it saved but I cannot find it on my disc. Apparently none of the fileout is working in the changesorter. :(
I have successfully filed out code with epicea but not changesorter.
HTH,
Christian
-- May you be peaceful, may you live in safety, may you be free from suffering, and may you live with ease.
It looks like the problem is here but I cannot find it. CodeExporter>> writeSourceCodeFrom: aStream baseName: baseName isSt: stOrCsFlag | extension fileName outputStream | self halt. extension := stOrCsFlag ifTrue: ['.st'] ifFalse: ['.cs']. fileName := baseName, extension. fileName := FileSystem disk checkName: fileName fixErrors: true. outputStream := (File named: fileName) writeStream. (ZnCrPortableWriteStream on: (ZnCharacterWriteStream on: outputStream encoding: 'utf8')) nextPutAll: aStream contents. outputStream close. self inform: 'Filed out to: ', String cr, fileName. On Wed, Nov 8, 2017 at 9:38 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
Ah thanks we should fix this.
On Wed, Nov 8, 2017 at 9:31 PM, Christian Kellermann <ckeen@pestilenz.org> wrote:
* Stephane Ducasse <stepharo.self@gmail.com> [171108 21:29]:
Hi
I'm trying to rescue some of my work (that I cannot save in MC nor in Iceberg because the system does not see it - super funny).
I can browse the change using the changesorter when I do fileout the system tells me that the file it saved but I cannot find it on my disc. Apparently none of the fileout is working in the changesorter. :(
I have successfully filed out code with epicea but not changesorter.
HTH,
Christian
-- May you be peaceful, may you live in safety, may you be free from suffering, and may you live with ease.
I tried it and the file-out looks to work as expected for me. I guess that your troubles can be related to a working directory location. Can you check your working directory path (FileSystem workingDirectory)? -- Pavel 2017-11-08 21:53 GMT+01:00 Stephane Ducasse <stepharo.self@gmail.com>:
It looks like the problem is here but I cannot find it.
CodeExporter>> writeSourceCodeFrom: aStream baseName: baseName isSt: stOrCsFlag
| extension fileName outputStream | self halt. extension := stOrCsFlag ifTrue: ['.st'] ifFalse: ['.cs']. fileName := baseName, extension. fileName := FileSystem disk checkName: fileName fixErrors: true. outputStream := (File named: fileName) writeStream. (ZnCrPortableWriteStream on: (ZnCharacterWriteStream on: outputStream encoding: 'utf8')) nextPutAll: aStream contents.
outputStream close.
self inform: 'Filed out to: ', String cr, fileName.
On Wed, Nov 8, 2017 at 9:38 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
Ah thanks we should fix this.
On Wed, Nov 8, 2017 at 9:31 PM, Christian Kellermann <ckeen@pestilenz.org> wrote:
* Stephane Ducasse <stepharo.self@gmail.com> [171108 21:29]:
Hi
I'm trying to rescue some of my work (that I cannot save in MC nor in Iceberg because the system does not see it - super funny).
I can browse the change using the changesorter when I do fileout the system tells me that the file it saved but I cannot find it on my disc. Apparently none of the fileout is working in the changesorter. :(
I have successfully filed out code with epicea but not changesorter.
HTH,
Christian
-- May you be peaceful, may you live in safety, may you be free from suffering, and may you live with ease.
https://pharo.fogbugz.com/f/cases/20658/Fileouting-code-from-the-changesorte... On Wed, Nov 8, 2017 at 9:53 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
It looks like the problem is here but I cannot find it.
CodeExporter>> writeSourceCodeFrom: aStream baseName: baseName isSt: stOrCsFlag
| extension fileName outputStream | self halt. extension := stOrCsFlag ifTrue: ['.st'] ifFalse: ['.cs']. fileName := baseName, extension. fileName := FileSystem disk checkName: fileName fixErrors: true. outputStream := (File named: fileName) writeStream. (ZnCrPortableWriteStream on: (ZnCharacterWriteStream on: outputStream encoding: 'utf8')) nextPutAll: aStream contents.
outputStream close.
self inform: 'Filed out to: ', String cr, fileName.
On Wed, Nov 8, 2017 at 9:38 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
Ah thanks we should fix this.
On Wed, Nov 8, 2017 at 9:31 PM, Christian Kellermann <ckeen@pestilenz.org> wrote:
* Stephane Ducasse <stepharo.self@gmail.com> [171108 21:29]:
Hi
I'm trying to rescue some of my work (that I cannot save in MC nor in Iceberg because the system does not see it - super funny).
I can browse the change using the changesorter when I do fileout the system tells me that the file it saved but I cannot find it on my disc. Apparently none of the fileout is working in the changesorter. :(
I have successfully filed out code with epicea but not changesorter.
HTH,
Christian
-- May you be peaceful, may you live in safety, may you be free from suffering, and may you live with ease.
File @ /Users/ducasse/Documents/Pharo/vms/70-x86/Pharo.app/Contents/MacOS Stef On Wed, Nov 8, 2017 at 10:03 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
https://pharo.fogbugz.com/f/cases/20658/Fileouting-code-from-the-changesorte...
On Wed, Nov 8, 2017 at 9:53 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
It looks like the problem is here but I cannot find it.
CodeExporter>> writeSourceCodeFrom: aStream baseName: baseName isSt: stOrCsFlag
| extension fileName outputStream | self halt. extension := stOrCsFlag ifTrue: ['.st'] ifFalse: ['.cs']. fileName := baseName, extension. fileName := FileSystem disk checkName: fileName fixErrors: true. outputStream := (File named: fileName) writeStream. (ZnCrPortableWriteStream on: (ZnCharacterWriteStream on: outputStream encoding: 'utf8')) nextPutAll: aStream contents.
outputStream close.
self inform: 'Filed out to: ', String cr, fileName.
On Wed, Nov 8, 2017 at 9:38 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
Ah thanks we should fix this.
On Wed, Nov 8, 2017 at 9:31 PM, Christian Kellermann <ckeen@pestilenz.org> wrote:
* Stephane Ducasse <stepharo.self@gmail.com> [171108 21:29]:
Hi
I'm trying to rescue some of my work (that I cannot save in MC nor in Iceberg because the system does not see it - super funny).
I can browse the change using the changesorter when I do fileout the system tells me that the file it saved but I cannot find it on my disc. Apparently none of the fileout is working in the changesorter. :(
I have successfully filed out code with epicea but not changesorter.
HTH,
Christian
-- May you be peaceful, may you live in safety, may you be free from suffering, and may you live with ease.
Ok you are right I could then find them there. This is quite annoying and this is probably related to the launcher On Wed, Nov 8, 2017 at 10:03 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
File @ /Users/ducasse/Documents/Pharo/vms/70-x86/Pharo.app/Contents/MacOS
Stef
On Wed, Nov 8, 2017 at 10:03 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
https://pharo.fogbugz.com/f/cases/20658/Fileouting-code-from-the-changesorte...
On Wed, Nov 8, 2017 at 9:53 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
It looks like the problem is here but I cannot find it.
CodeExporter>> writeSourceCodeFrom: aStream baseName: baseName isSt: stOrCsFlag
| extension fileName outputStream | self halt. extension := stOrCsFlag ifTrue: ['.st'] ifFalse: ['.cs']. fileName := baseName, extension. fileName := FileSystem disk checkName: fileName fixErrors: true. outputStream := (File named: fileName) writeStream. (ZnCrPortableWriteStream on: (ZnCharacterWriteStream on: outputStream encoding: 'utf8')) nextPutAll: aStream contents.
outputStream close.
self inform: 'Filed out to: ', String cr, fileName.
On Wed, Nov 8, 2017 at 9:38 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
Ah thanks we should fix this.
On Wed, Nov 8, 2017 at 9:31 PM, Christian Kellermann <ckeen@pestilenz.org> wrote:
* Stephane Ducasse <stepharo.self@gmail.com> [171108 21:29]:
Hi
I'm trying to rescue some of my work (that I cannot save in MC nor in Iceberg because the system does not see it - super funny).
I can browse the change using the changesorter when I do fileout the system tells me that the file it saved but I cannot find it on my disc. Apparently none of the fileout is working in the changesorter. :(
I have successfully filed out code with epicea but not changesorter.
HTH,
Christian
-- May you be peaceful, may you live in safety, may you be free from suffering, and may you live with ease.
I try to understand why I could not find it by myself and when I look at writeSourceCodeFrom: aStream baseName: baseName isSt: stOrCsFlag | extension fileName outputStream | self halt. extension := stOrCsFlag ifTrue: ['.st'] ifFalse: ['.cs']. fileName := baseName, extension. fileName := FileSystem disk checkName: fileName fixErrors: true. outputStream := (File named: fileName) writeStream. (ZnCrPortableWriteStream on: (ZnCharacterWriteStream on: outputStream encoding: 'utf8')) nextPutAll: aStream contents. outputStream close. self inform: 'Filed out to: ', String cr, fileName. I do not understand why File does not understand fullName. So going to bed because I got too many bugs this evening. and I'm doing an overflow. Stef On Wed, Nov 8, 2017 at 10:05 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
Ok you are right I could then find them there. This is quite annoying and this is probably related to the launcher
On Wed, Nov 8, 2017 at 10:03 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
File @ /Users/ducasse/Documents/Pharo/vms/70-x86/Pharo.app/Contents/MacOS
Stef
On Wed, Nov 8, 2017 at 10:03 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
https://pharo.fogbugz.com/f/cases/20658/Fileouting-code-from-the-changesorte...
On Wed, Nov 8, 2017 at 9:53 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
It looks like the problem is here but I cannot find it.
CodeExporter>> writeSourceCodeFrom: aStream baseName: baseName isSt: stOrCsFlag
| extension fileName outputStream | self halt. extension := stOrCsFlag ifTrue: ['.st'] ifFalse: ['.cs']. fileName := baseName, extension. fileName := FileSystem disk checkName: fileName fixErrors: true. outputStream := (File named: fileName) writeStream. (ZnCrPortableWriteStream on: (ZnCharacterWriteStream on: outputStream encoding: 'utf8')) nextPutAll: aStream contents.
outputStream close.
self inform: 'Filed out to: ', String cr, fileName.
On Wed, Nov 8, 2017 at 9:38 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
Ah thanks we should fix this.
On Wed, Nov 8, 2017 at 9:31 PM, Christian Kellermann <ckeen@pestilenz.org> wrote:
* Stephane Ducasse <stepharo.self@gmail.com> [171108 21:29]:
Hi
I'm trying to rescue some of my work (that I cannot save in MC nor in Iceberg because the system does not see it - super funny).
I can browse the change using the changesorter when I do fileout the system tells me that the file it saved but I cannot find it on my disc. Apparently none of the fileout is working in the changesorter. :(
I have successfully filed out code with epicea but not changesorter.
HTH,
Christian
-- May you be peaceful, may you live in safety, may you be free from suffering, and may you live with ease.
On 08-11-17 22:03, Stephane Ducasse wrote:
File @ /Users/ducasse/Documents/Pharo/vms/70-x86/Pharo.app/Contents/MacOS
Yes, this is looks like one of the problems I have with PharoLauncher directories. It is unclear to me what is kept with the vm and what with the image. I asked about it in users Stephan
Question: what is the behaviour you expected? to have the fileouted .st file in your home? in your desktop? On Wed, Nov 8, 2017 at 10:29 PM, stephan <stephan@stack.nl> wrote:
On 08-11-17 22:03, Stephane Ducasse wrote:
File @ /Users/ducasse/Documents/Pharo/vms/70-x86/Pharo.app/Contents/MacOS
Yes, this is looks like one of the problems I have with PharoLauncher directories. It is unclear to me what is kept with the vm and what with the image. I asked about it in users
Stephan
-- Guille Polito Research Engineer Centre de Recherche en Informatique, Signal et Automatique de Lille CRIStAL - UMR 9189 French National Center for Scientific Research - *http://www.cnrs.fr <http://www.cnrs.fr>* *Web:* *http://guillep.github.io* <http://guillep.github.io> *Phone: *+33 06 52 70 66 13
Hi Stef & Stephan, On 8 November 2017 at 22:29, stephan <stephan@stack.nl> wrote:
On 08-11-17 22:03, Stephane Ducasse wrote:
File @ /Users/ducasse/Documents/Pharo/vms/70-x86/Pharo.app/Contents/MacOS
Yes, this is looks like one of the problems I have with PharoLauncher directories. It is unclear to me what is kept with the vm and what with the image. I asked about it in users
Stephan
Could this be one of the side effects of issue #5723, which changed the definition of the workingDirectory from the image location to the OS (shell) working directory (despite the small issue number, it was only merged around 12 Oct 2017)? I don't use PharoLauncher, but assuming it is the result of #5723, it would probably make sense to modify the launcher to set the working directory to the image directory before launching pharo. Cheers, Alistair
Yes definitively. Stef On Sat, Nov 11, 2017 at 4:27 PM, Alistair Grant <akgrant0710@gmail.com> wrote:
Hi Stef & Stephan,
On 8 November 2017 at 22:29, stephan <stephan@stack.nl> wrote:
On 08-11-17 22:03, Stephane Ducasse wrote:
File @ /Users/ducasse/Documents/Pharo/vms/70-x86/Pharo.app/Contents/MacOS
Yes, this is looks like one of the problems I have with PharoLauncher directories. It is unclear to me what is kept with the vm and what with the image. I asked about it in users
Stephan
Could this be one of the side effects of issue #5723, which changed the definition of the workingDirectory from the image location to the OS (shell) working directory (despite the small issue number, it was only merged around 12 Oct 2017)?
I don't use PharoLauncher, but assuming it is the result of #5723, it would probably make sense to modify the launcher to set the working directory to the image directory before launching pharo.
Cheers, Alistair
Hi 2017-11-08 21:53 GMT+01:00 Stephane Ducasse <stepharo.self@gmail.com>:
It looks like the problem is here but I cannot find it.
CodeExporter>> writeSourceCodeFrom: aStream baseName: baseName isSt: stOrCsFlag
| extension fileName outputStream | self halt. extension := stOrCsFlag ifTrue: ['.st'] ifFalse: ['.cs']. fileName := baseName, extension. fileName := FileSystem disk checkName: fileName fixErrors: true. outputStream := (File named: fileName) writeStream. (ZnCrPortableWriteStream on: (ZnCharacterWriteStream on: outputStream encoding: 'utf8')) nextPutAll: aStream contents.
outputStream close.
self inform: 'Filed out to: ', String cr, fileName.
Try rewrite code to FileSystem. I think we should never use File directly: extension := stOrCsFlag ifTrue: ['st'] ifFalse: ['cs']. FileLocator home / baseName , extension writeStreamDo: [:s | (ZnCrPortableWriteStream on: (ZnCharacterWriteStream on: s encoding: 'utf8')) nextPutAll: aStream contents]. We should choose what to use instead of #home in that case. I wondering does File is actually used by FileSystem? Should not we remove it from system?
On Wed, Nov 8, 2017 at 9:38 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
Ah thanks we should fix this.
On Wed, Nov 8, 2017 at 9:31 PM, Christian Kellermann <ckeen@pestilenz.org> wrote:
* Stephane Ducasse <stepharo.self@gmail.com> [171108 21:29]:
Hi
I'm trying to rescue some of my work (that I cannot save in MC nor in Iceberg because the system does not see it - super funny).
I can browse the change using the changesorter when I do fileout the system tells me that the file it saved but I cannot find it on my disc. Apparently none of the fileout is working in the changesorter. :(
I have successfully filed out code with epicea but not changesorter.
HTH,
Christian
-- May you be peaceful, may you live in safety, may you be free from suffering, and may you live with ease.
On Thu, Nov 9, 2017 at 10:35 AM, Denis Kudriashov <dionisiydk@gmail.com> wrote:
Hi
2017-11-08 21:53 GMT+01:00 Stephane Ducasse <stepharo.self@gmail.com>:
It looks like the problem is here but I cannot find it.
CodeExporter>> writeSourceCodeFrom: aStream baseName: baseName isSt: stOrCsFlag
| extension fileName outputStream | self halt. extension := stOrCsFlag ifTrue: ['.st'] ifFalse: ['.cs']. fileName := baseName, extension. fileName := FileSystem disk checkName: fileName fixErrors: true. outputStream := (File named: fileName) writeStream. (ZnCrPortableWriteStream on: (ZnCharacterWriteStream on: outputStream encoding: 'utf8')) nextPutAll: aStream contents.
outputStream close.
self inform: 'Filed out to: ', String cr, fileName.
Try rewrite code to FileSystem. I think we should never use File directly:
extension := stOrCsFlag ifTrue: ['st'] ifFalse: ['cs']. FileLocator home / baseName , extension writeStreamDo: [:s |
(ZnCrPortableWriteStream on: (ZnCharacterWriteStream
on: s
encoding: 'utf8')) nextPutAll: aStream contents].
We should choose what to use instead of #home in that case.
I just discussed a point with Denis, just replicating it here. We should not **blindly** rewrite everything to use FileSystem. Because that may break dependencies in the system. For example, CodeExporter is used by Monticello. Should monticello depend on FileSystem or not? I'm not saying monticello should or should not depend on it. Just saying that we should ask ourselves the question :)
I wondering does File is actually used by FileSystem?
It will ;)
Should not we remove it from system?
No! File is exactly the low level File representation, that FileSystem should use.
On Wed, Nov 8, 2017 at 9:38 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
Ah thanks we should fix this.
On Wed, Nov 8, 2017 at 9:31 PM, Christian Kellermann <ckeen@pestilenz.org> wrote:
* Stephane Ducasse <stepharo.self@gmail.com> [171108 21:29]:
Hi
I'm trying to rescue some of my work (that I cannot save in MC nor in Iceberg because the system does not see it - super funny).
I can browse the change using the changesorter when I do fileout the system tells me that the file it saved but I cannot find it on my disc. Apparently none of the fileout is working in the changesorter. :(
I have successfully filed out code with epicea but not changesorter.
HTH,
Christian
-- May you be peaceful, may you live in safety, may you be free from suffering, and may you live with ease.
-- Guille Polito Research Engineer Centre de Recherche en Informatique, Signal et Automatique de Lille CRIStAL - UMR 9189 French National Center for Scientific Research - *http://www.cnrs.fr <http://www.cnrs.fr>* *Web:* *http://guillep.github.io* <http://guillep.github.io> *Phone: *+33 06 52 70 66 13
Tx guille. We should probably improve the class comment of File to express that this is the low level layer. Stef On Thu, Nov 9, 2017 at 10:50 AM, Guillermo Polito <guillermopolito@gmail.com
wrote:
On Thu, Nov 9, 2017 at 10:35 AM, Denis Kudriashov <dionisiydk@gmail.com> wrote:
Hi
2017-11-08 21:53 GMT+01:00 Stephane Ducasse <stepharo.self@gmail.com>:
It looks like the problem is here but I cannot find it.
CodeExporter>> writeSourceCodeFrom: aStream baseName: baseName isSt: stOrCsFlag
| extension fileName outputStream | self halt. extension := stOrCsFlag ifTrue: ['.st'] ifFalse: ['.cs']. fileName := baseName, extension. fileName := FileSystem disk checkName: fileName fixErrors: true. outputStream := (File named: fileName) writeStream. (ZnCrPortableWriteStream on: (ZnCharacterWriteStream on: outputStream encoding: 'utf8')) nextPutAll: aStream contents.
outputStream close.
self inform: 'Filed out to: ', String cr, fileName.
Try rewrite code to FileSystem. I think we should never use File directly:
extension := stOrCsFlag ifTrue: ['st'] ifFalse: ['cs']. FileLocator home / baseName , extension writeStreamDo: [:s |
(ZnCrPortableWriteStream on: (ZnCharacterWriteStream
on: s
encoding: 'utf8')) nextPutAll: aStream contents].
We should choose what to use instead of #home in that case.
I just discussed a point with Denis, just replicating it here.
We should not **blindly** rewrite everything to use FileSystem. Because that may break dependencies in the system. For example, CodeExporter is used by Monticello.
Should monticello depend on FileSystem or not?
I'm not saying monticello should or should not depend on it. Just saying that we should ask ourselves the question :)
I wondering does File is actually used by FileSystem?
It will ;)
Should not we remove it from system?
No! File is exactly the low level File representation, that FileSystem should use.
On Wed, Nov 8, 2017 at 9:38 PM, Stephane Ducasse <stepharo.self@gmail.com> wrote:
Ah thanks we should fix this.
On Wed, Nov 8, 2017 at 9:31 PM, Christian Kellermann <ckeen@pestilenz.org> wrote:
* Stephane Ducasse <stepharo.self@gmail.com> [171108 21:29]:
Hi
I'm trying to rescue some of my work (that I cannot save in MC nor in Iceberg because the system does not see it - super funny).
I can browse the change using the changesorter when I do fileout the system tells me that the file it saved but I cannot find it on my disc. Apparently none of the fileout is working in the changesorter. :(
I have successfully filed out code with epicea but not changesorter.
HTH,
Christian
-- May you be peaceful, may you live in safety, may you be free from suffering, and may you live with ease.
--
Guille Polito
Research Engineer
Centre de Recherche en Informatique, Signal et Automatique de Lille
CRIStAL - UMR 9189
French National Center for Scientific Research - *http://www.cnrs.fr <http://www.cnrs.fr>*
*Web:* *http://guillep.github.io* <http://guillep.github.io>
*Phone: *+33 06 52 70 66 13 <+33%206%2052%2070%2066%2013>
participants (7)
-
Alistair Grant -
Christian Kellermann -
Denis Kudriashov -
Guillermo Polito -
Pavel Krivanek -
stephan -
Stephane Ducasse