Distribution/Color Map of file size

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

Distribution/Color Map of file size

BriceG

Hi,

yesterday I heard someone from my team talking about a tool for visualizing quickly file size in your system.

I was wondering if there is anything done with Roassal for that? I looked at the current version of Roassal in Moose 6.0 but I didnt find anything. 

If there is one could someone help me otherwise should it not be nice to have some? 


Thanks for your answer.


Regards,


--------------
Brice Govin
PhD student in RMoD research team at INRIA Lille
Software Engineer at THALES AIR SYSTEMS Rungis
ENSTA-Bretagne ENSI2014
64 chemin des boeufs 91220 PALAISEAU


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Distribution/Color Map of file size

Blondeau Vincent

Hi,

 

This script from Alexandre?

b := RTMondrian new.

 

b shape rectangle

            if: [ :aFile | aFile path basename beginsWith: '.' ] color: Color red.

b nodes: FileLocator documents allChildren.

b edges connectFrom: #parent.

b normalizer

            normalizeSize: #size using: #sqrt.

b layout tree.

b

 

Cheers,

Vincent

 

De : [hidden email] [mailto:[hidden email]] De la part de Brice GOVIN
Envoyé : jeudi 30 juillet 2015 14:51
À : [hidden email]
Objet : [Moose-dev] Distribution/Color Map of file size

 

Hi,

yesterday I heard someone from my team talking about a tool for visualizing quickly file size in your system.

I was wondering if there is anything done with Roassal for that? I looked at the current version of Roassal in Moose 6.0 but I didnt find anything. 

If there is one could someone help me otherwise should it not be nice to have some? 

 

Thanks for your answer.

 

Regards,

 

--------------

Brice Govin
PhD student in RMoD research team at INRIA Lille
Software Engineer at THALES AIR SYSTEMS Rungis
ENSTA-Bretagne ENSI2014
64 chemin des boeufs 91220 PALAISEAU




Ce message et les pièces jointes sont confidentiels et réservés à l'usage exclusif de ses destinataires. Il peut également être protégé par le secret professionnel. Si vous recevez ce message par erreur, merci d'en avertir immédiatement l'expéditeur et de le détruire. L'intégrité du message ne pouvant être assurée sur Internet, la responsabilité de Worldline ne pourra être recherchée quant au contenu de ce message. Bien que les meilleurs efforts soient faits pour maintenir cette transmission exempte de tout virus, l'expéditeur ne donne aucune garantie à cet égard et sa responsabilité ne saurait être recherchée pour tout dommage résultant d'un virus transmis.

This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Worldline liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Distribution/Color Map of file size

abergel
In reply to this post by BriceG
Hi Brice!

Currently we have no examples about this. 
I have slightly modified the script I’ve sent yesterday.

-=-=-=-=-=-=-=-=-=-=-=-=
path := '/Users/alexandrebergel/Documents'.
allFilesUnderPath := path asFileReference allChildren.
b := RTMondrian new.
 
b shape circle
color: Color gray trans;
         if: [ :aFile | aFile path basename beginsWith: '.' ] color: Color red trans.
b nodes: allFilesUnderPath.
b edges connectFrom: #parent.
b normalizer
            normalizeSize: #size min: 10 max: 150 using: #sqrt.
b layout cluster.
b
-=-=-=-=-=-=-=-=-=-=-=-=

You can try to replace “cluster” by “tree”. You can also click on each circle to enjoy the option offered by GTInspector
-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.



On Jul 30, 2015, at 9:51 AM, Brice GOVIN <[hidden email]> wrote:

Hi,
yesterday I heard someone from my team talking about a tool for visualizing quickly file size in your system.
I was wondering if there is anything done with Roassal for that? I looked at the current version of Roassal in Moose 6.0 but I didnt find anything. 
If there is one could someone help me otherwise should it not be nice to have some? 

Thanks for your answer.

Regards,

--------------
Brice Govin 
PhD student in RMoD research team at INRIA Lille 
Software Engineer at THALES AIR SYSTEMS Rungis
ENSTA-Bretagne ENSI2014
64 chemin des boeufs 91220 PALAISEAU

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Distribution/Color Map of file size

BriceG
Nice! thank you Alexandre. Sorry it seems the automatic sorting of my mailbox failed so I didn’t see your script…
I’ll use it as a basis for what I want to do =)

regards,
--------------
Brice Govin 
PhD student in RMoD research team at INRIA Lille 
Software Engineer at THALES AIR SYSTEMS Rungis
ENSTA-Bretagne ENSI2014
64 chemin des boeufs 91220 PALAISEAU

On 30 Jul 2015, at 15:31, Alexandre Bergel <[hidden email]> wrote:

Hi Brice!

Currently we have no examples about this. 
I have slightly modified the script I’ve sent yesterday.

-=-=-=-=-=-=-=-=-=-=-=-=
path := '/Users/alexandrebergel/Documents'.
allFilesUnderPath := path asFileReference allChildren.
b := RTMondrian new.
 
b shape circle
color: Color gray trans;
         if: [ :aFile | aFile path basename beginsWith: '.' ] color: Color red trans.
b nodes: allFilesUnderPath.
b edges connectFrom: #parent.
b normalizer
            normalizeSize: #size min: 10 max: 150 using: #sqrt.
b layout cluster.
b
-=-=-=-=-=-=-=-=-=-=-=-=

You can try to replace “cluster” by “tree”. You can also click on each circle to enjoy the option offered by GTInspector
<Screen Shot 2015-07-30 at 10.30.08 AM.png>
-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.



On Jul 30, 2015, at 9:51 AM, Brice GOVIN <[hidden email]> wrote:

Hi,
yesterday I heard someone from my team talking about a tool for visualizing quickly file size in your system.
I was wondering if there is anything done with Roassal for that? I looked at the current version of Roassal in Moose 6.0 but I didnt find anything. 
If there is one could someone help me otherwise should it not be nice to have some? 

Thanks for your answer.

Regards,

--------------
Brice Govin 
PhD student in RMoD research team at INRIA Lille 
Software Engineer at THALES AIR SYSTEMS Rungis
ENSTA-Bretagne ENSI2014
64 chemin des boeufs 91220 PALAISEAU

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Distribution/Color Map of file size

abergel
Okay!

Alexandre
-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.



On Jul 30, 2015, at 10:56 AM, Brice GOVIN <[hidden email]> wrote:

Nice! thank you Alexandre. Sorry it seems the automatic sorting of my mailbox failed so I didn’t see your script…
I’ll use it as a basis for what I want to do =)

regards,
--------------
Brice Govin 
PhD student in RMoD research team at INRIA Lille 
Software Engineer at THALES AIR SYSTEMS Rungis
ENSTA-Bretagne ENSI2014
64 chemin des boeufs 91220 PALAISEAU

On 30 Jul 2015, at 15:31, Alexandre Bergel <[hidden email]> wrote:

Hi Brice!

Currently we have no examples about this. 
I have slightly modified the script I’ve sent yesterday.

-=-=-=-=-=-=-=-=-=-=-=-=
path := '/Users/alexandrebergel/Documents'.
allFilesUnderPath := path asFileReference allChildren.
b := RTMondrian new.
 
b shape circle
color: Color gray trans;
         if: [ :aFile | aFile path basename beginsWith: '.' ] color: Color red trans.
b nodes: allFilesUnderPath.
b edges connectFrom: #parent.
b normalizer
            normalizeSize: #size min: 10 max: 150 using: #sqrt.
b layout cluster.
b
-=-=-=-=-=-=-=-=-=-=-=-=

You can try to replace “cluster” by “tree”. You can also click on each circle to enjoy the option offered by GTInspector
<Screen Shot 2015-07-30 at 10.30.08 AM.png>
-- 
_,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:
Alexandre Bergel  http://www.bergel.eu
^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;._,.;:~^~:;.



On Jul 30, 2015, at 9:51 AM, Brice GOVIN <[hidden email]> wrote:

Hi,
yesterday I heard someone from my team talking about a tool for visualizing quickly file size in your system.
I was wondering if there is anything done with Roassal for that? I looked at the current version of Roassal in Moose 6.0 but I didnt find anything. 
If there is one could someone help me otherwise should it not be nice to have some? 

Thanks for your answer.

Regards,

--------------
Brice Govin 
PhD student in RMoD research team at INRIA Lille 
Software Engineer at THALES AIR SYSTEMS Rungis
ENSTA-Bretagne ENSI2014
64 chemin des boeufs 91220 PALAISEAU

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev