vote up 5 vote down star
1

I want to get the size of a file on disk in megabytes. Using the -s operator gives me the size in bytes, but I'm going to assume that then diving this by a magic number is a bad idea:

my $size_in_mb = (-s $fh) / (1024 * 1024);

Should I just use a read-only variable to define 1024 or is there a programmatic way to obtain the size of a byte?

EDIT: Updated the incorrect calculation.

flag

7 Answers

vote up 13 vote down check

If you'd like to avoid magic numbers, try the CPAN module Number::Bytes::Human.

use Number::Bytes::Human qw(format_bytes);
my $size = format_bytes(-s $file); # 4.5M
link|flag
This module works great, thanks. – cowgod Feb 9 at 16:53
vote up 2 vote down

You could of course create a function for calculating this. That is a better solution than creating constants in this instance.

sub size_in_mb {
    my $size_in_bytes = shift;
    return $size_in_bytes / (1024 * 1024);
}

No need for constants. Changing the 1024 to some kind of variable/constant won't make this code more readable.

link|flag
vote up 3 vote down

I would read this into a variable rather than use a magic number. Even if magic numbers are not going to change, like the number of bytes in a megabyte, using a well named constant is a good practice because it makes your code more readable. It makes it immediately apparent to everybody else what your intention is.

link|flag
vote up 0 vote down

Since the -s operator returns the file size in bytes you should probably be doing something like

my $size_in_mb = (-s $fh) / (1024 * 1024);

and use int() if you need a round figure. It's not like the dimensions of KB or MB is going to change anytime in the near future :)

link|flag
vote up 0 vote down

Don't get me wrong, but: I think that declaring 1024 as a Magic Variable goes a bit too far, that's a bit like "$ONE = 1; $TWO = 2;" etc.

A Kilobyte has been falsely declared as 1024 Bytes since more than 20 years, and I seriously doubt that the operating system manufacturers will ever correct that bug and change it to 1000.

What could make sense though is to declare non-obvious stuff, like "$megabyte = 1024 * 1024" since that is more readable than 1048576.

link|flag
vote up 1 vote down

1) You don't want 1024. That gives you kilobytes. You want 1024*1024, or 1048576.

2) Why would dividing by a magic number be a bad idea? It's not like the number of bytes in a megabyte will ever change. Don't overthink things too much.

link|flag
vote up 4 vote down

Well, there's not 1024 bytes in a meg, there's 1024 bytes in a K, and 1024 K in a meg...

That said, 1024 is a safe "magic" number that will never change in any system you can expect your program to work in.

link|flag
a similar situation would be converting between meters and kilometers... would you feel bad about including the "magic" factor of 1000? This is a straight unit conversion that will NEVER change. – rmeador Feb 4 at 15:21
talk to marketing .. they have a different opinion (wrong IMHO, but hey, they have more money) – lexu Feb 4 at 15:24
Updated the question. It's early so forgive my mistaking of kilobytes for megabytes. :) – cowgod Feb 4 at 15:27
Even if the magic number is "safe", your code is more readable having a named constant instead. Consider physical constants like G, c, or mathematical ones like pi or e. Sure, they will never change in our universe, but your expressions are much more readable if used by name rather than by value. – Adam Bellaire Feb 4 at 15:34
Just use the Number::Bytes::Human module for this. Much easier than doing it yourself, and much more readable. – jrockway Feb 4 at 18:27
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.