# phpman > perldoc > Import::Into

## NAME
    [Import::Into](https://www.chedong.com/phpMan.php/perldoc/Import%3A%3AInto/markdown) - Import packages into other packages

## SYNOPSIS
      package [My::MultiExporter](https://www.chedong.com/phpMan.php/perldoc/My%3A%3AMultiExporter/markdown);

      use [Import::Into](https://www.chedong.com/phpMan.php/perldoc/Import%3A%3AInto/markdown);

      # simple
      sub import {
        Thing1->[import::into](https://www.chedong.com/phpMan.php/perldoc/import%3A%3Ainto/markdown)(scalar caller);
      }

      # multiple
      sub import {
        my $target = caller;
        Thing1->[import::into](https://www.chedong.com/phpMan.php/perldoc/import%3A%3Ainto/markdown)($target);
        Thing2->[import::into](https://www.chedong.com/phpMan.php/perldoc/import%3A%3Ainto/markdown)($target, qw(import arguments));
      }

      # by level
      sub import {
        Thing1->import::[into(1)](https://www.chedong.com/phpMan.php/man/into/1/markdown);
      }

      # with exporter
      use base qw(Exporter);
      sub import {
        shift->[export_to_level(1)](https://www.chedong.com/phpMan.php/man/exporttolevel/1/markdown);
        Thing1->import::[into(1)](https://www.chedong.com/phpMan.php/man/into/1/markdown);
      }

      # no [My::MultiExporter](https://www.chedong.com/phpMan.php/perldoc/My%3A%3AMultiExporter/markdown) == no Thing1
      sub unimport {
        Thing1->[unimport::out_of](https://www.chedong.com/phpMan.php/perldoc/unimport%3A%3Aoutof/markdown)(scalar caller);
      }

    People wanting to re-export your module should also be using [Import::Into](https://www.chedong.com/phpMan.php/perldoc/Import%3A%3AInto/markdown). Any exporter or
    pragma will work seamlessly.

    Note: You do not need to make any changes to Thing1 to be able to call "[import::into](https://www.chedong.com/phpMan.php/perldoc/import%3A%3Ainto/markdown)" on it.
    This is a global method, and is callable on any package (and in fact on any object as well,
    although it's rarer that you'd want to do that).

## DESCRIPTION
    Writing exporters is a pain. Some use Exporter, some use [Sub::Exporter](https://www.chedong.com/phpMan.php/perldoc/Sub%3A%3AExporter/markdown), some use
    [Moose::Exporter](https://www.chedong.com/phpMan.php/perldoc/Moose%3A%3AExporter/markdown), some use [Exporter::Declare](https://www.chedong.com/phpMan.php/perldoc/Exporter%3A%3ADeclare/markdown) ... and some things are pragmas.

    Exporting on someone else's behalf is harder. The exporters don't provide a consistent API for
    this, and pragmas need to have their import method called directly, since they effect the
    current unit of compilation.

    "[Import::Into](https://www.chedong.com/phpMan.php/perldoc/Import%3A%3AInto/markdown)" provides global methods to make this painless.

## METHODS
  $package->[import::into](https://www.chedong.com/phpMan.php/perldoc/import%3A%3Ainto/markdown)( $target, @arguments );
    A global method, callable on any package. Loads and imports the given package into $target.
    @arguments are passed along to the package's import method.

    $target can be an package name to export to, an integer for the caller level to export to, or a
    hashref with the following options:

    package
        The target package to export to.

    filename
        The apparent filename to export to. Some exporting modules, such as autodie or strictures,
        care about the filename they are being imported to.

    line
        The apparent line number to export to. To be combined with the "filename" option.

    level
        The caller level to export to. This will automatically populate the "package", "filename",
        and "line" options, making it the easiest most constent option.

    version
        A version number to check for the module. The equivalent of specifying the version number on
        a "use" line.

  $package->[unimport::out_of](https://www.chedong.com/phpMan.php/perldoc/unimport%3A%3Aoutof/markdown)( $target, @arguments );
    Equivalent to "[import::into](https://www.chedong.com/phpMan.php/perldoc/import%3A%3Ainto/markdown)", but dispatches to $package's "unimport" method instead of
    "import".

## WHY USE THIS MODULE
    The APIs for exporting modules aren't consistent. Exporter subclasses provide export_to_level,
    but if they overrode their import method all bets are off. [Sub::Exporter](https://www.chedong.com/phpMan.php/perldoc/Sub%3A%3AExporter/markdown) provides an into
    parameter but figuring out something used it isn't trivial. Pragmas need to have their "import"
    method called directly since they affect the current unit of compilation.

    It's ... annoying.

    However, there is an approach that actually works for all of these types.

      eval "package $target; use $thing;"

    will work for anything checking caller, which is everything except pragmas. But it doesn't work
    for pragmas - pragmas need:

      $thing->import;

    because they're designed to affect the code currently being compiled - so within an eval, that's
    the scope of the eval itself, not the module that just "use"d you - so

      sub import {
        eval "use strict;"
      }

    doesn't do what you wanted, but

      sub import {
        strict->import;
      }

    will apply strict to the calling file correctly.

    Of course, now you have two new problems - first, that you still need to know if something's a
    pragma, and second that you can't use either of these approaches alone on something like Moose
    or Moo that's both an exporter and a pragma.

    So, a solution for that is:

      use [Module::Runtime](https://www.chedong.com/phpMan.php/perldoc/Module%3A%3ARuntime/markdown);
      my $sub = eval "package $target; sub { use_module(shift)->import(\@_) }";
      $sub->($thing, @import_args);

    which means that import is called from the right place for pragmas to take effect, and from the
    right package for caller checking to work - and so behaves correctly for all types of exporter,
    for pragmas, and for hybrids.

    Additionally, some import routines check the filename they are being imported to. This can be
    dealt with by generating a #line directive in the eval, which will change what "caller" reports
    for the filename when called in the importer. The filename and line number to use in the
    directive then need to be fetched using "caller":

      my ($target, $file, $line) = [caller(1)](https://www.chedong.com/phpMan.php/man/caller/1/markdown);
      my $sub = eval qq{
        package $target;
      #line $line "$file"
        sub { use_module(shift)->import(\@_) }
      };
      $sub->($thing, @import_args);

    And you need to switch between these implementations depending on if you are targeting a
    specific package, or something in your call stack.

    Remembering all this, however, is excessively irritating. So I wrote a module so I didn't have
    to anymore. Loading [Import::Into](https://www.chedong.com/phpMan.php/perldoc/Import%3A%3AInto/markdown) creates a global method "[import::into](https://www.chedong.com/phpMan.php/perldoc/import%3A%3Ainto/markdown)" which you can call on
    any package to import it into another package. So now you can simply write:

      use [Import::Into](https://www.chedong.com/phpMan.php/perldoc/Import%3A%3AInto/markdown);

      $thing->[import::into](https://www.chedong.com/phpMan.php/perldoc/import%3A%3Ainto/markdown)($target, @import_args);

    This works because of how perl resolves method calls - a call to a simple method name is
    resolved against the package of the class or object, so

      $thing->method_name(@args);

    is roughly equivalent to:

      my $code_ref = $thing->can('method_name');
      $code_ref->($thing, @args);

    while if a "::" is found, the lookup is made relative to the package name (i.e. everything
    before the last "::") so

      $thing->[Package::Name::method_name](https://www.chedong.com/phpMan.php/perldoc/Package%3A%3AName%3A%3Amethodname/markdown)(@args);

    is roughly equivalent to:

      my $code_ref = [Package::Name](https://www.chedong.com/phpMan.php/perldoc/Package%3A%3AName/markdown)->can('method_name');
      $code_ref->($thing, @args);

    So since [Import::Into](https://www.chedong.com/phpMan.php/perldoc/Import%3A%3AInto/markdown) defines a method "into" in package "import" the syntax reliably calls
    that.

    For more craziness of this order, have a look at the article I wrote at
    <<http://shadow.cat/blog/matt-s-trout/madness-with-methods>> which covers coderef abuse and the
    "${\...}" syntax.

    And that's it.

## SEE ALSO
    I gave a lightning talk on this module (and curry and [Safe::Isa](https://www.chedong.com/phpMan.php/perldoc/Safe%3A%3AIsa/markdown)) at [YAPC::NA](https://www.chedong.com/phpMan.php/perldoc/YAPC%3A%3ANA/markdown) 2013
    <<https://www.youtube.com/watch?v=wFXWV2yY7gE&t=46m05s>>.

## ACKNOWLEDGEMENTS
    Thanks to Getty for asking "how can I get "use strict; use warnings;" turned on for all
    consumers of my code?" and then "why is this not a module?!".

## AUTHOR
    mst - Matt S. Trout (cpan:MSTROUT) <<mst@shadowcat.co.uk>>

## CONTRIBUTORS
    haarg - Graham Knop (cpan:HAARG) <<haarg@haarg.org>>

    Mithaldu - Christian Walde (cpan:MITHALDU) <<walde.christian@gmail.com>>

## COPYRIGHT
    Copyright (c) 2012 the [Import::Into](https://www.chedong.com/phpMan.php/perldoc/Import%3A%3AInto/markdown) "AUTHOR" and "CONTRIBUTORS" as listed above.

## LICENSE
    This library is free software and may be distributed under the same terms as perl itself.

