1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
|
package File::HomeDir;
# See POD at end for documentation
use 5.00503;
use strict;
use Carp ();
use Config ();
use File::Spec ();
# Globals
use vars qw{$VERSION @ISA @EXPORT @EXPORT_OK $IMPLEMENTED_BY};
BEGIN {
$VERSION = '0.89';
# Inherit manually
require Exporter;
@ISA = qw{ Exporter };
@EXPORT = qw{ home };
@EXPORT_OK = qw{
home
my_home
my_desktop
my_documents
my_music
my_pictures
my_videos
my_data
users_home
users_desktop
users_documents
users_music
users_pictures
users_videos
users_data
};
# %~ doesn't need (and won't take) exporting, as it's a magic
# symbol name that's always looked for in package 'main'.
}
# Inlined Params::Util functions
sub _CLASS ($) {
(defined $_[0] and ! ref $_[0] and $_[0] =~ m/^[^\W\d]\w*(?:::\w+)*\z/s) ? $_[0] : undef;
}
sub _DRIVER ($$) {
(defined _CLASS($_[0]) and eval "require $_[0];" and ! $@ and $_[0]->isa($_[1]) and $_[0] ne $_[1]) ? $_[0] : undef;
}
# Platform detection
if ( $IMPLEMENTED_BY ) {
# Allow for custom HomeDir classes
# Leave it as the existing value
} elsif ( $^O eq 'MSWin32' ) {
# All versions of Windows
$IMPLEMENTED_BY = 'File::HomeDir::Windows';
} elsif ( $^O eq 'darwin') {
TRY: {
if ( $Config::Config{ptrsize} == 8 ) {
# 64bit: try Mac::SystemDirectory by chansen
if ( eval { require Mac::SystemDirectory; 1 } ) {
$IMPLEMENTED_BY = 'File::HomeDir::Darwin::Cocoa';
last TRY;
}
} elsif (eval { require Mac::Files; 1 }) {
# 32bit and has Mac::Files: Carbon
$IMPLEMENTED_BY = 'File::HomeDir::Darwin::Carbon';
last TRY;
}
# fallback: pure perl
$IMPLEMENTED_BY = 'File::HomeDir::Darwin';
}
} elsif ( $^O eq 'MacOS' ) {
# Legacy Mac OS
$IMPLEMENTED_BY = 'File::HomeDir::MacOS9';
} else {
# Default to Unix semantics
$IMPLEMENTED_BY = 'File::HomeDir::Unix';
}
unless ( _DRIVER($IMPLEMENTED_BY, 'File::HomeDir::Driver') ) {
Carp::croak("Missing or invalid File::HomeDir driver $IMPLEMENTED_BY");
}
#####################################################################
# Current User Methods
sub my_home {
$IMPLEMENTED_BY->my_home;
}
sub my_desktop {
$IMPLEMENTED_BY->can('my_desktop')
? $IMPLEMENTED_BY->my_desktop
: Carp::croak("The my_desktop method is not implemented on this platform");
}
sub my_documents {
$IMPLEMENTED_BY->can('my_documents')
? $IMPLEMENTED_BY->my_documents
: Carp::croak("The my_documents method is not implemented on this platform");
}
sub my_music {
$IMPLEMENTED_BY->can('my_music')
? $IMPLEMENTED_BY->my_music
: Carp::croak("The my_music method is not implemented on this platform");
}
sub my_pictures {
$IMPLEMENTED_BY->can('my_pictures')
? $IMPLEMENTED_BY->my_pictures
: Carp::croak("The my_pictures method is not implemented on this platform");
}
sub my_videos {
$IMPLEMENTED_BY->can('my_videos')
? $IMPLEMENTED_BY->my_videos
: Carp::croak("The my_videos method is not implemented on this platform");
}
sub my_data {
$IMPLEMENTED_BY->can('my_data')
? $IMPLEMENTED_BY->my_data
: Carp::croak("The my_data method is not implemented on this platform");
}
#####################################################################
# General User Methods
sub users_home {
$IMPLEMENTED_BY->can('users_home')
? $IMPLEMENTED_BY->users_home( $_[-1] )
: Carp::croak("The users_home method is not implemented on this platform");
}
sub users_desktop {
$IMPLEMENTED_BY->can('users_desktop')
? $IMPLEMENTED_BY->users_desktop( $_[-1] )
: Carp::croak("The users_desktop method is not implemented on this platform");
}
sub users_documents {
$IMPLEMENTED_BY->can('users_documents')
? $IMPLEMENTED_BY->users_documents( $_[-1] )
: Carp::croak("The users_documents method is not implemented on this platform");
}
sub users_music {
$IMPLEMENTED_BY->can('users_music')
? $IMPLEMENTED_BY->users_music( $_[-1] )
: Carp::croak("The users_music method is not implemented on this platform");
}
sub users_pictures {
$IMPLEMENTED_BY->can('users_pictures')
? $IMPLEMENTED_BY->users_pictures( $_[-1] )
: Carp::croak("The users_pictures method is not implemented on this platform");
}
sub users_videos {
$IMPLEMENTED_BY->can('users_videos')
? $IMPLEMENTED_BY->users_videos( $_[-1] )
: Carp::croak("The users_videos method is not implemented on this platform");
}
sub users_data {
$IMPLEMENTED_BY->can('users_data')
? $IMPLEMENTED_BY->users_data( $_[-1] )
: Carp::croak("The users_data method is not implemented on this platform");
}
#####################################################################
# Legacy Methods
# Find the home directory of an arbitrary user
sub home (;$) {
# Allow to be called as a method
if ( $_[0] and $_[0] eq 'File::HomeDir' ) {
shift();
}
# No params means my home
return my_home() unless @_;
# Check the param
my $name = shift;
if ( ! defined $name ) {
Carp::croak("Can't use undef as a username");
}
if ( ! length $name ) {
Carp::croak("Can't use empty-string (\"\") as a username");
}
# A dot also means my home
### Is this meant to mean File::Spec->curdir?
if ( $name eq '.' ) {
return my_home();
}
# Now hand off to the implementor
$IMPLEMENTED_BY->users_home($name);
}
#####################################################################
# Tie-Based Interface
# Okay, things below this point get scary
CLASS: {
# Make the class for the %~ tied hash:
package File::HomeDir::TIE;
# Make the singleton object.
# (We don't use the hash for anything, though)
### THEN WHY MAKE IT???
my $SINGLETON = bless {};
sub TIEHASH { $SINGLETON }
sub FETCH {
# Catch a bad username
unless ( defined $_[1] ) {
Carp::croak("Can't use undef as a username");
}
# Get our homedir
unless ( length $_[1] ) {
return File::HomeDir::my_home();
}
# Get a named user's homedir
return File::HomeDir::home($_[1]);
}
sub STORE { _bad('STORE') }
sub EXISTS { _bad('EXISTS') }
sub DELETE { _bad('DELETE') }
sub CLEAR { _bad('CLEAR') }
sub FIRSTKEY { _bad('FIRSTKEY') }
sub NEXTKEY { _bad('NEXTKEY') }
sub _bad ($) {
Carp::croak("You can't $_[0] with the %~ hash")
}
}
# Do the actual tie of the global %~ variable
tie %~, 'File::HomeDir::TIE';
1;
__END__
=pod
=head1 NAME
File::HomeDir - Find your home and other directories, on any platform
=head1 SYNOPSIS
use File::HomeDir;
# Modern Interface (Current User)
$home = File::HomeDir->my_home;
$desktop = File::HomeDir->my_desktop;
$docs = File::HomeDir->my_documents;
$music = File::HomeDir->my_music;
$pics = File::HomeDir->my_pictures;
$videos = File::HomeDir->my_videos;
$data = File::HomeDir->my_data;
# Modern Interface (Other Users)
$home = File::HomeDir->users_home('foo');
$desktop = File::HomeDir->users_desktop('foo');
$docs = File::HomeDir->users_documents('foo');
$music = File::HomeDir->users_music('foo');
$pics = File::HomeDir->users_pictures('foo');
$video = File::HomeDir->users_videos('foo');
$data = File::HomeDir->users_data('foo');
# Legacy Interfaces
print "My dir is ", home(), " and root's is ", home('root'), "\n";
print "My dir is $~{''} and root's is $~{root}\n";
# These both print the same thing, something like:
# "My dir is /home/user/mojo and root's is /"
=head1 DESCRIPTION
B<File::HomeDir> is a module for dealing with issues relating to the
location of directories that are "owned" by a user, primarily your user,
and to solve these issues consistently across a wide variety of
platforms.
Thus, a single API is presented that can find your resources on any
platform.
This module provides two main interfaces.
The first is a modern L<File::Spec>-style interface with a consistent
OO API and different implementation modules to support various
platforms. You are B<strongly> recommended to use this interface.
The second interface is for legacy support of the original 0.07 interface
that exported a C<home()> function by default and tied the C<%~> variable.
It is generally not recommended that you use this interface, but due to
back-compatibility reasons they will remain supported until at least 2010.
After this date, the home() function will remain, but we will consider
deprecating the (namespace-polluting) C<%~> tied hash, to be removed by
2015 (maintaining the general Perl convention of a 10 year support period
for legacy APIs potentially or actually in common use).
=head2 Platform Neutrality
In the Unix world, many different types of data can be mixed together
in your home directory (although on some Unix platforms this is no longer
the case, particularly for "desktop"-oriented platforms).
On some non-Unix platforms, seperate directories are allocated for
different types of data and have been for a long time.
When writing applications on top of B<File::HomeDir>, you should thus
always try to use the most specific method you can. User documents should
be saved in C<my_documents>, data that supports an application but isn't
normally editing by the user directory should go into C<my_data>.
On platforms that do not make any distinction, all these different
methods will harmlessly degrade to the main home directory, but on
platforms that care B<File::HomeDir> will always try to Do The Right
Thing(tm).
=head1 METHODS
Two types of methods are provided. The C<my_method> series of methods for
finding resources for the current user, and the C<users_method> (read as
"user's method") series for finding resources for arbitrary users.
This split is necesary, as on most platforms it is B<much> easier to find
information about the current user compared to other users, and indeed
on a number you cannot find out information such as C<users_desktop> at
all, due to security restrictions.
All methods will double check (using a C<-d> test) that a directory
actually exists before returning it, so you may trust in the values
that are returned (subject to the usual caveats of race conditions of
directories being deleted at the moment between a directory being returned
and you using it).
However, because in some cases platforms may not support the concept of home
directories at all, any method may return C<undef> (both in scalar and list
context) to indicate that there is no matching directory on the system.
For example, most untrusted 'nobody'-type users do not have a home
directory. So any modules that are used in a CGI application that
at some level of recursion use your code, will result in calls to
File::HomeDir returning undef, even for a basic home() call.
=head2 my_home
The C<my_home> method takes no arguments and returns the main home/profile
directory for the current user.
If the distinction is important to you, the term "current" refers to the
real user, and not the effective user.
This is also the case for all of the other "my" methods.
Returns the directory path as a string, C<undef> if the current user
does not have a home directory, or dies on error.
=head2 my_desktop
The C<my_desktop> method takes no arguments and returns the "desktop"
directory for the current user.
Due to the diversity and complexity of implementions required to deal with
implementing the required functionality fully and completely, for the moment
C<my_desktop> is B<not> going to be implemented.
That said, I am extremely interested in code to implement C<my_desktop> on
Unix, as long as it is capable of dealing (as the Windows implementation
does) with internationalisation. It should also avoid false positive
results by making sure it only returns the appropriate directories for the
appropriate platforms.
Returns the directory path as a string, C<undef> if the current user
does not have a desktop directory, or dies on error.
=head2 my_documents
The C<my_documents> method takes no arguments and returns the directory (for
the current user) where the user's documents are stored.
Returns the directory path as a string, C<undef> if the current user
does not have a documents directory, or dies on error.
=head2 my_music
The C<my_music> method takes no arguments and returns the directory
where the current user's music is stored.
No bias is made to any particular music type or music program, rather the
concept of a directory to hold the user's music is made at the level of the
underlying operating system or (at least) desktop environment.
Returns the directory path as a string, C<undef> if the current user
does not have a suitable directory, or dies on error.
=head2 my_pictures
The C<my_pictures> method takes no arguments and returns the directory
where the current user's pictures are stored.
No bias is made to any particular picture type or picture program, rather the
concept of a directory to hold the user's pictures is made at the level of the
underlying operating system or (at least) desktop environment.
Returns the directory path as a string, C<undef> if the current user
does not have a suitable directory, or dies on error.
=head2 my_videos
The C<my_videos> method takes no arguments and returns the directory
where the current user's videos are stored.
No bias is made to any particular video type or video program, rather the
concept of a directory to hold the user's videos is made at the level of the
underlying operating system or (at least) desktop environment.
Returns the directory path as a string, C<undef> if the current user
does not have a suitable directory, or dies on error.
=head2 my_data
The C<my_data> method takes no arguments and returns the directory where
local applications should stored their internal data for the current
user.
Generally an application would create a subdirectory such as C<.foo>,
beneath this directory, and store its data there. By creating your
directory this way, you get an accurate result on the maximum number
of platforms.
For example, on Unix you get C<~/.foo> and on Win32 you get
C<~/Local Settings/Application Data/.foo>
Returns the directory path as a string, C<undef> if the current user
does not have a data directory, or dies on error.
=head2 users_home
$home = File::HomeDir->users_home('foo');
The C<users_home> method takes a single param and is used to locate the
parent home/profile directory for an identified user on the system.
While most of the time this identifier would be some form of user name,
it is permitted to vary per-platform to support user ids or UUIDs as
applicable for that platform.
Returns the directory path as a string, C<undef> if that user
does not have a home directory, or dies on error.
=head2 users_documents
$docs = File::HomeDir->users_documents('foo');
Returns the directory path as a string, C<undef> if that user
does not have a documents directory, or dies on error.
=head2 users_data
$data = File::HomeDir->users_data('foo');
Returns the directory path as a string, C<undef> if that user
does not have a data directory, or dies on error.
=head1 FUNCTIONS
=head2 home
use File::HomeDir;
$home = home();
$home = home('foo');
$home = File::HomeDir::home();
$home = File::HomeDir::home('foo');
The C<home> function is exported by default and is provided for
compatibility with legacy applications. In new applications, you should
use the newer method-based interface above.
Returns the directory path to a named user's home/profile directory.
If provided no param, returns the directory path to the current user's
home/profile directory.
=head1 TIED INTERFACE
=head2 %~
$home = $~{""};
$home = $~{undef};
$home = $~{$user};
$home = $~{username};
print "... $~{''} ...";
print "... $~{$user} ...";
print "... $~{username} ...";
This calls C<home($user)> or C<home('username')> -- except that if you
ask for C<$~{some_user}> and there is no such user, it will die.
Note that this is especially useful in double-quotish strings, like:
print "Jojo's .newsrc is ", -s "$~{jojo}/.newsrc", "b long!\n";
# (helpfully dies if there is no user 'jojo')
If you want to avoid the fatal errors, first test the value of
C<home('jojo')>, which will return undef (instead of dying) in case of
there being no such user.
Note, however, that if the hash key is "" or undef (whether thru being
a literal "", or a scalar whose value is empty-string or undef), then
this returns zero-argument C<home()>, i.e., your home directory:
Further, please note that because the C<%~> hash compulsorily modifies
a hash outside of it's namespace, and presents an overly simplistic
approach to home directories, it is likely to ultimately be removed.
The interface is currently expected to be formally deprecated from 2010
(but no earlier) and removed from 2015 (but no earlier). If very heavy
use is found in the wild, these plans may be pushed back.
=head1 TO DO
=over 4
=item * Become generally clearer on situations in which a user might not
have a particular resource.
=item * Add more granularity to Unix, and add support to VMS and other
esoteric platforms, so we can consider going core.
=item * Add consistent support for users_* methods
=back
=head1 SUPPORT
This module is stored in an Open Repository at the following address.
L<http://svn.ali.as/cpan/trunk/File-HomeDir>
Write access to the repository is made available automatically to any
published CPAN author, and to most other volunteers on request.
If you are able to submit your bug report in the form of new (failing)
unit tests, or can apply your fix directly instead of submitting a patch,
you are B<strongly> encouraged to do so as the author currently maintains
over 100 modules and it can take some time to deal with non-Critical bug
reports or patches.
This will guarantee that your issue will be addressed in the next
release of the module.
If you cannot provide a direct test or fix, or don't have time to do so,
then regular bug reports are still accepted and appreciated via the CPAN
bug tracker.
L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=File-HomeDir>
For other issues, for commercial enhancement or support, or to have your
write access enabled for the repository, contact the author at the email
address above.
=head1 ACKNOWLEDGEMENTS
The biggest acknowledgement must go to Chris Nandor, who wielded his
legendary Mac-fu and turned my initial fairly ordinary Darwin
implementation into something that actually worked properly everywhere,
and then donated a Mac OS X license to allow it to be maintained properly.
=head1 AUTHORS
Adam Kennedy E<lt>adamk@cpan.orgE<gt>
Sean M. Burke E<lt>sburke@cpan.orgE<gt>
Chris Nandor E<lt>cnandor@cpan.orgE<gt>
Stephen Steneker E<lt>stennie@cpan.orgE<gt>
=head1 SEE ALSO
L<File::ShareDir>, L<File::HomeDir::Win32> (legacy)
=head1 COPYRIGHT
Copyright 2005 - 2010 Adam Kennedy.
Some parts copyright 2000 Sean M. Burke.
Some parts copyright 2006 Chris Nandor.
Some parts copyright 2006 Stephen Steneker.
This program is free software; you can redistribute
it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the
LICENSE file included with this module.
=cut
|