autoloading_and_reloading_constants.md 37.9 KB
Newer Older
1
**DO NOT READ THIS FILE ON GITHUB, GUIDES ARE PUBLISHED ON http://guides.rubyonrails.org.**
X
Xavier Noria 已提交
2

3 4
Autoloading and Reloading Constants
===================================
5 6 7 8 9 10

This guide documents how constant autoloading and reloading works.

After reading this guide, you will know:

* Key aspects of Ruby constants
11
* What is `autoload_paths`
12 13 14 15 16 17 18 19 20 21 22
* How constant autoloading works
* What is `require_dependency`
* How constant reloading works
* Solutions to common autoloading gotchas

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


Introduction
------------

23
Ruby on Rails allows applications to be written as if their code was preloaded.
24

25
In a normal Ruby program classes need to load their dependencies:
26 27 28 29 30 31 32 33 34 35 36 37 38

```ruby
require 'application_controller'
require 'post'

class PostsController < ApplicationController
  def index
    @posts = Post.all
  end
end
```

Our Rubyist instinct quickly sees some redundancy in there: If classes were
39
defined in files matching their name, couldn't their loading be automated
40 41 42 43 44 45 46
somehow? We could save scanning the file for dependencies, which is brittle.

Moreover, `Kernel#require` loads files once, but development is much more smooth
if code gets refreshed when it changes without restarting the server. It would
be nice to be able to use `Kernel#load` in development, and `Kernel#require` in
production.

47
Indeed, those features are provided by Ruby on Rails, where we just write
48 49 50 51 52 53 54 55 56 57 58 59

```ruby
class PostsController < ApplicationController
  def index
    @posts = Post.all
  end
end
```

This guide documents how that works.


60 61
Constants Refresher
-------------------
62

63 64
While constants are trivial in most programming languages, they are a rich
topic in Ruby.
65

66 67 68
It is beyond the scope of this guide to document Ruby constants, but we are
nevertheless going to highlight a few key topics. Truly grasping the following
sections is instrumental to understanding constant autoloading and reloading.
69

70
### Nesting
71

72
Class and module definitions can be nested to create namespaces:
73

74 75 76 77 78 79 80
```ruby
module XML
  class SAXParser
    # (1)
  end
end
```
81

82
The *nesting* at any given place is the collection of enclosing nested class and
83 84
module objects outwards. The nesting at any given place can be inspected with
`Module.nesting`. For example, in the previous example, the nesting at
85
(1) is
86

87 88 89
```ruby
[XML::SAXParser, XML]
```
90

91 92 93
It is important to understand that the nesting is composed of class and module
*objects*, it has nothing to do with the constants used to access them, and is
also unrelated to their names.
94

95
For instance, while this definition is similar to the previous one:
96

97 98 99 100 101
```ruby
class XML::SAXParser
  # (2)
end
```
102

103
the nesting in (2) is different:
104

105 106 107
```ruby
[XML::SAXParser]
```
108

109 110
`XML` does not belong to it.

111
We can see in this example that the name of a class or module that belongs to a
112
certain nesting does not necessarily correlate with the namespaces at the spot.
113

114
Even more, they are totally independent, take for instance
115

116
```ruby
117 118 119 120 121 122 123 124 125 126
module X
  module Y
  end
end

module A
  module B
  end
end

127 128 129 130 131 132
module X::Y
  module A::B
    # (3)
  end
end
```
133

134
The nesting in (3) consists of two module objects:
135

136 137
```ruby
[A::B, X::Y]
138 139
```

140 141
So, it not only doesn't end in `A`, which does not even belong to the nesting,
but it also contains `X::Y`, which is independent from `A::B`.
142

143 144
The nesting is an internal stack maintained by the interpreter, and it gets
modified according to these rules:
145

146 147
* The class object following a `class` keyword gets pushed when its body is
executed, and popped after it.
148

149 150
* The module object following a `module` keyword gets pushed when its body is
executed, and popped after it.
151

152
* A singleton class opened with `class << object` gets pushed, and popped later.
153

154
* When `instance_eval` is called using a string argument,
155
the singleton class of the receiver is pushed to the nesting of the eval'ed
156 157
code. When `class_eval` or `module_eval` is called using a string argument,
the receiver is pushed to the nesting of the eval'ed code.
158

159 160 161 162
* The nesting at the top-level of code interpreted by `Kernel#load` is empty
unless the `load` call receives a true value as second argument, in which case
a newly created anonymous module is pushed by Ruby.

163 164 165
It is interesting to observe that blocks do not modify the stack. In particular
the blocks that may be passed to `Class.new` and `Module.new` do not get the
class or module being defined pushed to their nesting. That's one of the
166
differences between defining classes and modules in one way or another.
167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183

### Class and Module Definitions are Constant Assignments

Let's suppose the following snippet creates a class (rather than reopening it):

```ruby
class C
end
```

Ruby creates a constant `C` in `Object` and stores in that constant a class
object. The name of the class instance is "C", a string, named after the
constant.

That is,

```ruby
184
class Project < ApplicationRecord
185 186 187 188 189 190
end
```

performs a constant assignment equivalent to

```ruby
191
Project = Class.new(ApplicationRecord)
192 193
```

194 195 196 197 198 199 200
including setting the name of the class as a side-effect:

```ruby
Project.name # => "Project"
```

Constant assignment has a special rule to make that happen: if the object
201 202
being assigned is an anonymous class or module, Ruby sets the object's name to
the name of the constant.
203 204 205 206 207 208

INFO. From then on, what happens to the constant and the instance does not
matter. For example, the constant could be deleted, the class object could be
assigned to a different constant, be stored in no constant anymore, etc. Once
the name is set, it doesn't change.

209
Similarly, module creation using the `module` keyword as in
210 211 212 213 214 215 216 217 218 219 220 221

```ruby
module Admin
end
```

performs a constant assignment equivalent to

```ruby
Admin = Module.new
```

222 223 224 225 226 227
including setting the name as a side-effect:

```ruby
Admin.name # => "Admin"
```

228 229
WARNING. The execution context of a block passed to `Class.new` or `Module.new`
is not entirely equivalent to the one of the body of the definitions using the
230 231
`class` and `module` keywords. But both idioms result in the same constant
assignment.
232 233

Thus, when one informally says "the `String` class", that really means: the
234 235
class object stored in the constant called "String" in the class object stored
in the `Object` constant. `String` is otherwise an ordinary Ruby constant and
236
everything related to constants such as resolution algorithms applies to it.
237

238
Likewise, in the controller
239 240 241 242 243 244 245 246 247 248

```ruby
class PostsController < ApplicationController
  def index
    @posts = Post.all
  end
end
```

`Post` is not syntax for a class. Rather, `Post` is a regular Ruby constant. If
Y
yui-knk 已提交
249
all is good, the constant is evaluated to an object that responds to `all`.
250

251 252
That is why we talk about *constant* autoloading, Rails has the ability to
load constants on the fly.
253 254 255 256

### Constants are Stored in Modules

Constants belong to modules in a very literal sense. Classes and modules have
257
a constant table; think of it as a hash table.
258

259 260 261
Let's analyze an example to really understand what that means. While common
abuses of language like "the `String` class" are convenient, the exposition is
going to be precise here for didactic purposes.
262

263
Let's consider the following module definition:
264 265 266 267 268 269 270

```ruby
module Colors
  RED = '0xff0000'
end
```

R
Robin Dupret 已提交
271
First, when the `module` keyword is processed, the interpreter creates a new
272
entry in the constant table of the class object stored in the `Object` constant.
273
Said entry associates the name "Colors" to a newly created module object.
274 275 276 277 278
Furthermore, the interpreter sets the name of the new module object to be the
string "Colors".

Later, when the body of the module definition is interpreted, a new entry is
created in the constant table of the module object stored in the `Colors`
279
constant. That entry maps the name "RED" to the string "0xff0000".
280 281 282 283 284

In particular, `Colors::RED` is totally unrelated to any other `RED` constant
that may live in any other class or module object. If there were any, they
would have separate entries in their respective constant tables.

285
Pay special attention in the previous paragraphs to the distinction between
C
claudiob 已提交
286
class and module objects, constant names, and value objects associated to them
287
in constant tables.
288

289 290 291
### Resolution Algorithms

#### Resolution Algorithm for Relative Constants
292

293
At any given place in the code, let's define *cref* to be the first element of
294
the nesting if it is not empty, or `Object` otherwise.
295

296 297
Without getting too much into the details, the resolution algorithm for relative
constant references goes like this:
298

299 300 301 302
1. If the nesting is not empty the constant is looked up in its elements and in
order. The ancestors of those elements are ignored.

2. If not found, then the algorithm walks up the ancestor chain of the cref.
303

304 305 306
3. If not found and the cref is a module, the constant is looked up in `Object`.

4. If not found, `const_missing` is invoked on the cref. The default
307
implementation of `const_missing` raises `NameError`, but it can be overridden.
308 309 310

Rails autoloading **does not emulate this algorithm**, but its starting point is
the name of the constant to be autoloaded, and the cref. See more in [Relative
A
Andrey Samsonov 已提交
311
References](#autoloading-algorithms-relative-references).
312

313
#### Resolution Algorithm for Qualified Constants
314 315 316 317 318 319 320

Qualified constants look like this:

```ruby
Billing::Invoice
```

321
`Billing::Invoice` is composed of two constants: `Billing` is relative and is
322 323 324 325 326 327 328
resolved using the algorithm of the previous section.

INFO. Leading colons would make the first segment absolute rather than
relative: `::Billing::Invoice`. That would force `Billing` to be looked up
only as a top-level constant.

`Invoice` on the other hand is qualified by `Billing` and we are going to see
329
its resolution next. Let's define *parent* to be that qualifying class or module
330 331
object, that is, `Billing` in the example above. The algorithm for qualified
constants goes like this:
332 333 334

1. The constant is looked up in the parent and its ancestors.

335 336
2. If the lookup fails, `const_missing` is invoked in the parent. The default
implementation of `const_missing` raises `NameError`, but it can be overridden.
337 338 339 340 341 342 343 344

As you see, this algorithm is simpler than the one for relative constants. In
particular, the nesting plays no role here, and modules are not special-cased,
if neither they nor their ancestors have the constants, `Object` is **not**
checked.

Rails autoloading **does not emulate this algorithm**, but its starting point is
the name of the constant to be autoloaded, and the parent. See more in
345
[Qualified References](#autoloading-algorithms-qualified-references).
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
Vocabulary
----------

### Parent Namespaces

Given a string with a constant path we define its *parent namespace* to be the
string that results from removing its rightmost segment.

For example, the parent namespace of the string "A::B::C" is the string "A::B",
the parent namespace of "A::B" is "A", and the parent namespace of "A" is "".

The interpretation of a parent namespace when thinking about classes and modules
is tricky though. Let's consider a module M named "A::B":

* The parent namespace, "A", may not reflect nesting at a given spot.

* The constant `A` may no longer exist, some code could have removed it from
`Object`.

* If `A` exists, the class or module that was originally in `A` may not be there
anymore. For example, if after a constant removal there was another constant
assignment there would generally be a different object in there.

* In such case, it could even happen that the reassigned `A` held a new class or
module called also "A"!

* In the previous scenarios M would no longer be reachable through `A::B` but
the module object itself could still be alive somewhere and its name would
still be "A::B".

The idea of a parent namespace is at the core of the autoloading algorithms
and helps explain and understand their motivation intuitively, but as you see
that metaphor leaks easily. Given an edge case to reason about, take always into
C
claudiob 已提交
381
account that by "parent namespace" the guide means exactly that specific string
382 383 384 385
derivation.

### Loading Mechanism

V
Vijay Dev 已提交
386
Rails autoloads files with `Kernel#load` when `config.cache_classes` is false,
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
the default in development mode, and with `Kernel#require` otherwise, the
default in production mode.

`Kernel#load` allows Rails to execute files more than once if [constant
reloading](#constant-reloading) is enabled.

This guide uses the word "load" freely to mean a given file is interpreted, but
the actual mechanism can be `Kernel#load` or `Kernel#require` depending on that
flag.


Autoloading Availability
------------------------

Rails is always able to autoload provided its environment is in place. For
example the `runner` command autoloads:

```
$ bin/rails runner 'p User.column_names'
["id", "email", "created_at", "updated_at"]
```

The console autoloads, the test suite autoloads, and of course the application
autoloads.

By default, Rails eager loads the application files when it boots in production
mode, so most of the autoloading going on in development does not happen. But
autoloading may still be triggered during eager loading.

For example, given

```ruby
class BeachHouse < House
end
```

if `House` is still unknown when `app/models/beach_house.rb` is being eager
loaded, Rails autoloads it.


427 428 429 430 431 432 433 434 435 436
autoload_paths
--------------

As you probably know, when `require` gets a relative file name:

```ruby
require 'erb'
```

Ruby looks for the file in the directories listed in `$LOAD_PATH`. That is, Ruby
437 438 439 440 441
iterates over all its directories and for each one of them checks whether they
have a file called "erb.rb", or "erb.so", or "erb.o", or "erb.dll". If it finds
any of them, the interpreter loads it and ends the search. Otherwise, it tries
again in the next directory of the list. If the list gets exhausted, `LoadError`
is raised.
442 443

We are going to cover how constant autoloading works in more detail later, but
444 445 446
the idea is that when a constant like `Post` is hit and missing, if there's a
`post.rb` file for example in `app/models` Rails is going to find it, evaluate
it, and have `Post` defined as a side-effect.
447

448
Alright, Rails has a collection of directories similar to `$LOAD_PATH` in which
449
to look up `post.rb`. That collection is called `autoload_paths` and by
450 451
default it contains:

452 453 454 455
* All subdirectories of `app` in the application and engines present at boot
  time. For example, `app/controllers`. They do not need to be the default
  ones, any custom directories like `app/workers` belong automatically to
  `autoload_paths`.
456 457 458 459 460 461 462 463

* Any existing second level directories called `app/*/concerns` in the
  application and engines.

* The directory `test/mailers/previews`.

Also, this collection is configurable via `config.autoload_paths`. For example,
`lib` was in the list years ago, but no longer is. An application can opt-in
464
by adding this to `config/application.rb`:
465 466

```ruby
467
config.autoload_paths << "#{Rails.root}/lib"
468
```
469

470
`config.autoload_paths` is not changeable from environment-specific configuration files.
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

The value of `autoload_paths` can be inspected. In a just generated application
it is (edited):

```
$ bin/rails r 'puts ActiveSupport::Dependencies.autoload_paths'
.../app/assets
.../app/controllers
.../app/helpers
.../app/mailers
.../app/models
.../app/controllers/concerns
.../app/models/concerns
.../test/mailers/previews
```

INFO. `autoload_paths` is computed and cached during the initialization process.
The application needs to be restarted to reflect any changes in the directory
structure.


Autoloading Algorithms
----------------------

### Relative References

Y
Yves Senn 已提交
497
A relative constant reference may appear in several places, for example, in
498 499 500 501 502 503 504 505 506

```ruby
class PostsController < ApplicationController
  def index
    @posts = Post.all
  end
end
```

Y
Yves Senn 已提交
507
all three constant references are relative.
508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523

#### Constants after the `class` and `module` Keywords

Ruby performs a lookup for the constant that follows a `class` or `module`
keyword because it needs to know if the class or module is going to be created
or reopened.

If the constant is not defined at that point it is not considered to be a
missing constant, autoloading is **not** triggered.

So, in the previous example, if `PostsController` is not defined when the file
is interpreted Rails autoloading is not going to be triggered, Ruby will just
define the controller.

#### Top-Level Constants

Y
Yves Senn 已提交
524 525
On the contrary, if `ApplicationController` is unknown, the constant is
considered missing and an autoload is going to be attempted by Rails.
526 527

In order to load `ApplicationController`, Rails iterates over `autoload_paths`.
T
Tom Copeland 已提交
528
First it checks if `app/assets/application_controller.rb` exists. If it does not,
529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552
which is normally the case, it continues and finds
`app/controllers/application_controller.rb`.

If the file defines the constant `ApplicationController` all is fine, otherwise
`LoadError` is raised:

```
unable to autoload constant ApplicationController, expected
<full path to application_controller.rb> to define it (LoadError)
```

INFO. Rails does not require the value of autoloaded constants to be a class or
module object. For example, if the file `app/models/max_clients.rb` defines
`MAX_CLIENTS = 100` autoloading `MAX_CLIENTS` works just fine.

#### Namespaces

Autoloading `ApplicationController` looks directly under the directories of
`autoload_paths` because the nesting in that spot is empty. The situation of
`Post` is different, the nesting in that line is `[PostsController]` and support
for namespaces comes into play.

The basic idea is that given

Y
Yves Senn 已提交
553
```ruby
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
module Admin
  class BaseController < ApplicationController
    @@all_roles = Role.all
  end
end
```

to autoload `Role` we are going to check if it is defined in the current or
parent namespaces, one at a time. So, conceptually we want to try to autoload
any of

```
Admin::BaseController::Role
Admin::Role
Role
```

in that order. That's the idea. To do so, Rails looks in `autoload_paths`
respectively for file names like these:

```
admin/base_controller/role.rb
admin/role.rb
role.rb
```

modulus some additional directory lookups we are going to cover soon.

A
Abdelkader Boudih 已提交
582
INFO. `'Constant::Name'.underscore` gives the relative path without extension of
583 584
the file name where `Constant::Name` is expected to be defined.

C
claudiob 已提交
585
Let's see how Rails autoloads the `Post` constant in the `PostsController`
586 587 588 589 590 591 592 593 594 595 596 597 598 599
above assuming the application has a `Post` model defined in
`app/models/post.rb`.

First it checks for `posts_controller/post.rb` in `autoload_paths`:

```
app/assets/posts_controller/post.rb
app/controllers/posts_controller/post.rb
app/helpers/posts_controller/post.rb
...
test/mailers/previews/posts_controller/post.rb
```

Since the lookup is exhausted without success, a similar search for a directory
Y
Yves Senn 已提交
600
is performed, we are going to see why in the [next section](#automatic-modules):
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

```
app/assets/posts_controller/post
app/controllers/posts_controller/post
app/helpers/posts_controller/post
...
test/mailers/previews/posts_controller/post
```

If all those attempts fail, then Rails starts the lookup again in the parent
namespace. In this case only the top-level remains:

```
app/assets/post.rb
app/controllers/post.rb
app/helpers/post.rb
app/mailers/post.rb
app/models/post.rb
```

A matching file is found in `app/models/post.rb`. The lookup stops there and the
file is loaded. If the file actually defines `Post` all is fine, otherwise
`LoadError` is raised.

### Qualified References

When a qualified constant is missing Rails does not look for it in the parent
T
Tom Copeland 已提交
628
namespaces. But there is a caveat: when a constant is missing, Rails is
J
Jon Atack 已提交
629
unable to tell if the trigger was a relative reference or a qualified one.
630 631 632 633

For example, consider

```ruby
634
module Admin
635
  User
636 637 638 639 640 641
end
```

and

```ruby
642
Admin::User
643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
```

If `User` is missing, in either case all Rails knows is that a constant called
"User" was missing in a module called "Admin".

If there is a top-level `User` Ruby would resolve it in the former example, but
wouldn't in the latter. In general, Rails does not emulate the Ruby constant
resolution algorithms, but in this case it tries using the following heuristic:

> If none of the parent namespaces of the class or module has the missing
> constant then Rails assumes the reference is relative. Otherwise qualified.

For example, if this code triggers autoloading

```ruby
Admin::User
```

and the `User` constant is already present in `Object`, it is not possible that
the situation is

```ruby
665
module Admin
666 667 668 669 670 671 672 673 674
  User
end
```

because otherwise Ruby would have resolved `User` and no autoloading would have
been triggered in the first place. Thus, Rails assumes a qualified reference and
considers the file `admin/user.rb` and directory `admin/user` to be the only
valid options.

675
In practice, this works quite well as long as the nesting matches all parent
676 677 678
namespaces respectively and the constants that make the rule apply are known at
that time.

679
However, autoloading happens on demand. If by chance the top-level `User` was
680
not yet loaded, then Rails assumes a relative reference by contract.
681

682 683 684
Naming conflicts of this kind are rare in practice, but if one occurs,
`require_dependency` provides a solution by ensuring that the constant needed
to trigger the heuristic is defined in the conflicting place.
685 686 687 688

### Automatic Modules

When a module acts as a namespace, Rails does not require the application to
689
define a file for it, a directory matching the namespace is enough.
690

691
Suppose an application has a back office whose controllers are stored in
692 693 694 695 696 697
`app/controllers/admin`. If the `Admin` module is not yet loaded when
`Admin::UsersController` is hit, Rails needs first to autoload the constant
`Admin`.

If `autoload_paths` has a file called `admin.rb` Rails is going to load that
one, but if there's no such file and a directory called `admin` is found, Rails
Y
Yves Senn 已提交
698
creates an empty module and assigns it to the `Admin` constant on the fly.
699 700 701

### Generic Procedure

702
Relative references are reported to be missing in the cref where they were hit,
Y
yui-knk 已提交
703
and qualified references are reported to be missing in their parent (see
704 705 706 707
[Resolution Algorithm for Relative
Constants](#resolution-algorithm-for-relative-constants) at the beginning of
this guide for the definition of *cref*, and [Resolution Algorithm for Qualified
Constants](#resolution-algorithm-for-qualified-constants) for the definition of
Y
yui-knk 已提交
708
*parent*).
709

710
The procedure to autoload constant `C` in an arbitrary situation is as follows:
711

712 713
```
if the class or module in which C is missing is Object
714 715
  let ns = ''
else
716
  let M = the class or module in which C is missing
717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793

  if M is anonymous
    let ns = ''
  else
    let ns = M.name
  end
end

loop do
  # Look for a regular file.
  for dir in autoload_paths
    if the file "#{dir}/#{ns.underscore}/c.rb" exists
      load/require "#{dir}/#{ns.underscore}/c.rb"

      if C is now defined
        return
      else
        raise LoadError
      end
    end
  end

  # Look for an automatic module.
  for dir in autoload_paths
    if the directory "#{dir}/#{ns.underscore}/c" exists
      if ns is an empty string
        let C = Module.new in Object and return
      else
        let C = Module.new in ns.constantize and return
      end
    end
  end

  if ns is empty
    # We reached the top-level without finding the constant.
    raise NameError
  else
    if C exists in any of the parent namespaces
      # Qualified constants heuristic.
      raise NameError
    else
      # Try again in the parent namespace.
      let ns = the parent namespace of ns and retry
    end
  end
end
```


require_dependency
------------------

Constant autoloading is triggered on demand and therefore code that uses a
certain constant may have it already defined or may trigger an autoload. That
depends on the execution path and it may vary between runs.

There are times, however, in which you want to make sure a certain constant is
known when the execution reaches some code. `require_dependency` provides a way
to load a file using the current [loading mechanism](#loading-mechanism), and
keeping track of constants defined in that file as if they were autoloaded to
have them reloaded as needed.

`require_dependency` is rarely needed, but see a couple of use-cases in
[Autoloading and STI](#autoloading-and-sti) and [When Constants aren't
Triggered](#when-constants-aren-t-missed).

WARNING. Unlike autoloading, `require_dependency` does not expect the file to
define any particular constant. Exploiting this behavior would be a bad practice
though, file and constant paths should match.


Constant Reloading
------------------

When `config.cache_classes` is false Rails is able to reload autoloaded
constants.

R
Rémy Coutable 已提交
794
For example, if you're in a console session and edit some file behind the
795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817
scenes, the code can be reloaded with the `reload!` command:

```
> reload!
```

When the application runs, code is reloaded when something relevant to this
logic changes. In order to do that, Rails monitors a number of things:

* `config/routes.rb`.

* Locales.

* Ruby files under `autoload_paths`.

* `db/schema.rb` and `db/structure.sql`.

If anything in there changes, there is a middleware that detects it and reloads
the code.

Autoloading keeps track of autoloaded constants. Reloading is implemented by
removing them all from their respective classes and modules using
`Module#remove_const`. That way, when the code goes on, those constants are
C
claudiob 已提交
818
going to be unknown again, and files reloaded on demand.
819 820 821 822 823 824

INFO. This is an all-or-nothing operation, Rails does not attempt to reload only
what changed since dependencies between classes makes that really tricky.
Instead, everything is wiped.


825
Module#autoload isn't Involved
826 827
------------------------------

828
`Module#autoload` provides a lazy way to load constants that is fully integrated
829 830 831 832 833
with the Ruby constant lookup algorithms, dynamic constant API, etc. It is quite
transparent.

Rails internals make extensive use of it to defer as much work as possible from
the boot process. But constant autoloading in Rails is **not** implemented with
834
`Module#autoload`.
835

836
One possible implementation based on `Module#autoload` would be to walk the
837
application tree and issue `autoload` calls that map existing file names to
C
claudiob 已提交
838
their conventional constant name.
839 840 841

There are a number of reasons that prevent Rails from using that implementation.

842
For example, `Module#autoload` is only capable of loading files using `require`,
843 844 845 846 847 848 849 850 851
so reloading would not be possible. Not only that, it uses an internal `require`
which is not `Kernel#require`.

Then, it provides no way to remove declarations in case a file is deleted. If a
constant gets removed with `Module#remove_const` its `autoload` is not triggered
again. Also, it doesn't support qualified names, so files with namespaces should
be interpreted during the walk tree to install their own `autoload` calls, but
those files could have constant references not yet configured.

852
An implementation based on `Module#autoload` would be awesome but, as you see,
853 854 855 856 857
at least as of today it is not possible. Constant autoloading in Rails is
implemented with `Module#const_missing`, and that's why it has its own contract,
documented in this guide.


858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884
Common Gotchas
--------------

### Nesting and Qualified Constants

Let's consider

```ruby
module Admin
  class UsersController < ApplicationController
    def index
      @users = User.all
    end
  end
end
```

and

```ruby
class Admin::UsersController < ApplicationController
  def index
    @users = User.all
  end
end
```

885
To resolve `User` Ruby checks `Admin` in the former case, but it does not in
Y
yui-knk 已提交
886 887
the latter because it does not belong to the nesting (see [Nesting](#nesting)
and [Resolution Algorithms](#resolution-algorithms)).
888

Y
Yves Senn 已提交
889
Unfortunately Rails autoloading does not know the nesting in the spot where the
890
constant was missing and so it is not able to act as Ruby would. In particular,
891
`Admin::User` will get autoloaded in either case.
892 893

Albeit qualified constants with `class` and `module` keywords may technically
C
claudiob 已提交
894
work with autoloading in some cases, it is preferable to use relative constants
895 896 897 898 899 900 901 902 903 904 905 906 907 908
instead:

```ruby
module Admin
  class UsersController < ApplicationController
    def index
      @users = User.all
    end
  end
end
```

### Autoloading and STI

909
Single Table Inheritance (STI) is a feature of Active Record that enables
910 911 912
storing a hierarchy of models in one single table. The API of such models is
aware of the hierarchy and encapsulates some common needs. For example, given
these classes:
913 914 915

```ruby
# app/models/polygon.rb
916
class Polygon < ApplicationRecord
917 918 919 920 921 922 923 924 925 926 927 928
end

# app/models/triangle.rb
class Triangle < Polygon
end

# app/models/rectangle.rb
class Rectangle < Polygon
end
```

`Triangle.create` creates a row that represents a triangle, and
929 930 931
`Rectangle.create` creates a row that represents a rectangle. If `id` is the
ID of an existing record, `Polygon.find(id)` returns an object of the correct
type.
932

933 934
Methods that operate on collections are also aware of the hierarchy. For
example, `Polygon.all` returns all the records of the table, because all
935 936 937
rectangles and triangles are polygons. Active Record takes care of returning
instances of their corresponding class in the result set.

938 939 940
Types are autoloaded as needed. For example, if `Polygon.first` is a rectangle
and `Rectangle` has not yet been loaded, Active Record autoloads it and the
record is correctly instantiated.
941 942

All good, but if instead of performing queries based on the root class we need
943
to work on some subclass, things get interesting.
944 945 946 947 948 949

While working with `Polygon` you do not need to be aware of all its descendants,
because anything in the table is by definition a polygon, but when working with
subclasses Active Record needs to be able to enumerate the types it is looking
for. Let’s see an example.

950
`Rectangle.all` only loads rectangles by adding a type constraint to the query:
951 952 953 954 955 956

```sql
SELECT "polygons".* FROM "polygons"
WHERE "polygons"."type" IN ("Rectangle")
```

957
Let’s introduce now a subclass of `Rectangle`:
958 959 960 961 962 963 964

```ruby
# app/models/square.rb
class Square < Rectangle
end
```

965
`Rectangle.all` should now return rectangles **and** squares:
966 967 968 969 970 971

```sql
SELECT "polygons".* FROM "polygons"
WHERE "polygons"."type" IN ("Rectangle", "Square")
```

972 973
But there’s a caveat here: How does Active Record know that the class `Square`
exists at all?
974 975 976 977 978 979 980 981 982

Even if the file `app/models/square.rb` exists and defines the `Square` class,
if no code yet used that class, `Rectangle.all` issues the query

```sql
SELECT "polygons".* FROM "polygons"
WHERE "polygons"."type" IN ("Rectangle")
```

983
That is not a bug, the query includes all *known* descendants of `Rectangle`.
984 985

A way to ensure this works correctly regardless of the order of execution is to
986 987
manually load the direct subclasses at the bottom of the file that defines each
intermediate class:
988 989

```ruby
990 991
# app/models/rectangle.rb
class Rectangle < Polygon
992
end
993
require_dependency 'square'
994 995
```

996 997 998
This needs to happen for every intermediate (non-root and non-leaf) class. The
root class does not scope the query by type, and therefore does not necessarily
have to know all its descendants.
999 1000 1001

### Autoloading and `require`

1002
Files defining constants to be autoloaded should never be `require`d:
1003 1004 1005 1006 1007 1008 1009 1010 1011

```ruby
require 'user' # DO NOT DO THIS

class UsersController < ApplicationController
  ...
end
```

1012
There are two possible gotchas here in development mode:
1013

1014 1015
1. If `User` is autoloaded before reaching the `require`, `app/models/user.rb`
runs again because `load` does not update `$LOADED_FEATURES`.
1016

1017 1018
2. If the `require` runs first Rails does not mark `User` as an autoloaded
constant and changes to `app/models/user.rb` aren't reloaded.
1019

1020 1021 1022 1023
Just follow the flow and use constant autoloading always, never mix
autoloading and `require`. As a last resort, if some file absolutely needs to
load a certain file use `require_dependency` to play nice with constant
autoloading. This option is rarely needed in practice, though.
1024 1025

Of course, using `require` in autoloaded files to load ordinary 3rd party
1026
libraries is fine, and Rails is able to distinguish their constants, they are
1027 1028 1029 1030 1031 1032 1033
not marked as autoloaded.

### Autoloading and Initializers

Consider this assignment in `config/initializers/set_auth_service.rb`:

```ruby
1034 1035 1036 1037 1038
AUTH_SERVICE = if Rails.env.production?
  RealAuthService
else
  MockedAuthService
end
1039 1040
```

1041 1042 1043 1044 1045
The purpose of this setup would be that the application uses the class that
corresponds to the environment via `AUTH_SERVICE`. In development mode
`MockedAuthService` gets autoloaded when the initializer runs. Let’s suppose
we do some requests, change its implementation, and hit the application again.
To our surprise the changes are not reflected. Why?
1046

1047 1048 1049
As [we saw earlier](#constant-reloading), Rails removes autoloaded constants,
but `AUTH_SERVICE` stores the original class object. Stale, non-reachable
using the original constant, but perfectly functional.
1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069

The following code summarizes the situation:

```ruby
class C
  def quack
    'quack!'
  end
end

X = C
Object.instance_eval { remove_const(:C) }
X.new.quack # => quack!
X.name      # => C
C           # => uninitialized constant C (NameError)
```

Because of that, it is not a good idea to autoload constants on application
initialization.

1070
In the case above we could implement a dynamic access point:
1071 1072

```ruby
1073
# app/models/auth_service.rb
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
class AuthService
  if Rails.env.production?
    def self.instance
      RealAuthService
    end
  else
    def self.instance
      MockedAuthService
    end
  end
end
```

1087 1088
and have the application use `AuthService.instance` instead. `AuthService`
would be loaded on demand and be autoload-friendly.
1089 1090 1091

### `require_dependency` and Initializers

1092
As we saw before, `require_dependency` loads files in an autoloading-friendly
1093 1094
way. Normally, though, such a call does not make sense in an initializer.

1095 1096 1097
One could think about doing some [`require_dependency`](#require-dependency)
calls in an initializer to make sure certain constants are loaded upfront, for
example as an attempt to address the [gotcha with STIs](#autoloading-and-sti).
1098

1099
Problem is, in development mode [autoloaded constants are wiped](#constant-reloading)
C
claudiob 已提交
1100
if there is any relevant change in the file system. If that happens then
1101
we are in the very same situation the initializer wanted to avoid!
1102 1103 1104 1105 1106 1107

Calls to `require_dependency` have to be strategically written in autoloaded
spots.

### When Constants aren't Missed

1108 1109
#### Relative References

1110
Let's consider a flight simulator. The application has a default flight model
1111 1112

```ruby
1113 1114
# app/models/flight_model.rb
class FlightModel
1115 1116 1117
end
```

1118
that can be overridden by each airplane, for instance
1119 1120

```ruby
1121 1122 1123
# app/models/bell_x1/flight_model.rb
module BellX1
  class FlightModel < FlightModel
1124 1125 1126
  end
end

1127 1128 1129 1130 1131 1132 1133 1134 1135
# app/models/bell_x1/aircraft.rb
module BellX1
  class Aircraft
    def initialize
      @flight_model = FlightModel.new
    end
  end
end
```
1136

1137 1138 1139 1140
The initializer wants to create a `BellX1::FlightModel` and nesting has
`BellX1`, that looks good. But if the default flight model is loaded and the
one for the Bell-X1 is not, the interpreter is able to resolve the top-level
`FlightModel` and autoloading is thus not triggered for `BellX1::FlightModel`.
1141

1142
That code depends on the execution path.
1143

1144
These kind of ambiguities can often be resolved using qualified constants:
1145 1146

```ruby
1147 1148 1149 1150 1151
module BellX1
  class Plane
    def flight_model
      @flight_model ||= BellX1::FlightModel.new
    end
1152 1153 1154 1155
  end
end
```

1156 1157 1158 1159
Also, `require_dependency` is a solution:

```ruby
require_dependency 'bell_x1/flight_model'
1160

1161 1162 1163 1164 1165 1166 1167 1168
module BellX1
  class Plane
    def flight_model
      @flight_model ||= FlightModel.new
    end
  end
end
```
1169

1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
#### Qualified References

Given

```ruby
# app/models/hotel.rb
class Hotel
end

# app/models/image.rb
class Image
end

# app/models/hotel/image.rb
class Hotel
  class Image < Image
  end
end
```

R
Robin Dupret 已提交
1190 1191
the expression `Hotel::Image` is ambiguous because it depends on the execution
path.
1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223

As [we saw before](#resolution-algorithm-for-qualified-constants), Ruby looks
up the constant in `Hotel` and its ancestors. If `app/models/image.rb` has
been loaded but `app/models/hotel/image.rb` hasn't, Ruby does not find `Image`
in `Hotel`, but it does in `Object`:

```
$ bin/rails r 'Image; p Hotel::Image' 2>/dev/null
Image # NOT Hotel::Image!
```

The code evaluating `Hotel::Image` needs to make sure
`app/models/hotel/image.rb` has been loaded, possibly with
`require_dependency`.

In these cases the interpreter issues a warning though:

```
warning: toplevel constant Image referenced by Hotel::Image
```

This surprising constant resolution can be observed with any qualifying class:

```
2.1.5 :001 > String::Array
(irb):1: warning: toplevel constant Array referenced by String::Array
 => Array
```

WARNING. To find this gotcha the qualifying namespace has to be a class,
`Object` is not an ancestor of modules.

1224 1225
### Autoloading within Singleton Classes

1226
Let's suppose we have these class definitions:
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244

```ruby
# app/models/hotel/services.rb
module Hotel
  class Services
  end
end

# app/models/hotel/geo_location.rb
module Hotel
  class GeoLocation
    class << self
      Services
    end
  end
end
```

1245 1246 1247
If `Hotel::Services` is known by the time `app/models/hotel/geo_location.rb`
is being loaded, `Services` is resolved by Ruby because `Hotel` belongs to the
nesting when the singleton class of `Hotel::GeoLocation` is opened.
1248

1249 1250
But if `Hotel::Services` is not known, Rails is not able to autoload it, the
application raises `NameError`.
1251 1252

The reason is that autoloading is triggered for the singleton class, which is
1253
anonymous, and as [we saw before](#generic-procedure), Rails only checks the
Y
Yves Senn 已提交
1254
top-level namespace in that edge case.
1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293

An easy solution to this caveat is to qualify the constant:

```ruby
module Hotel
  class GeoLocation
    class << self
      Hotel::Services
    end
  end
end
```

### Autoloading in `BasicObject`

Direct descendants of `BasicObject` do not have `Object` among their ancestors
and cannot resolve top-level constants:

```ruby
class C < BasicObject
  String # NameError: uninitialized constant C::String
end
```

When autoloading is involved that plot has a twist. Let's consider:

```ruby
class C < BasicObject
  def user
    User # WRONG
  end
end
```

Since Rails checks the top-level namespace `User` gets autoloaded just fine the
first time the `user` method is invoked. You only get the exception if the
`User` constant is known at that point, in particular in a *second* call to
`user`:

Y
Yves Senn 已提交
1294
```ruby
1295 1296 1297 1298 1299
c = C.new
c.user # surprisingly fine, User
c.user # NameError: uninitialized constant C::User
```

R
Robin Dupret 已提交
1300
because it detects that a parent namespace already has the constant (see [Qualified
Y
yui-knk 已提交
1301
References](#autoloading-algorithms-qualified-references)).
1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314

As with pure Ruby, within the body of a direct descendant of `BasicObject` use
always absolute constant paths:

```ruby
class C < BasicObject
  ::String # RIGHT

  def user
    ::User # RIGHT
  end
end
```