| Isn't source code basically a configuration file for the compiler/interpreter? Source code is input, not configuration. Every time you run the compiler, you give it different source code. The whole point of the compiler is to transform source code. Configuration is "input" that is not expected to change very often, but that the application developer can not guarantee will never change. Configuration falls into a few categories: 1. Context-specific inputs that can not be predicted or discovered automatically by the application. (For example, the DNS zones the process is expected to host - named.conf) 2. Inputs that are not expected to change very often, but should be easy to change if necessary. (ssh client or server settings) 3. For applications with interactive user interfaces, customization and changes to the default interface. For the vast majority of applications, a text file capable of expressing simple data structures is more than sufficient. Others advocate using only a database, but only to make configuration dynamic so explicit reloads aren't necessary, not to make it more like a programming language. The source-vs-configuration question is usually only be an issue when dealing with large, complex applications with very general specifications. |
Interpreted languages (JIT) re-interpret the same source code every time they are run (though they don't have to).
What about monkey patching (http://en.wikipedia.org/wiki/Monkey_patch)? An example usage is altering behavior (the source code) based on running the code in a testing environment -vs- production (as one example).
How about dependency injection? How about lambda expressions?
What about best known practices like favor composition over inheritance? If we hard code a solution using inheritance that is input but if we build out a solution using composition that is a configuration?
These are all tools available to programmers that provide ways of changing behavior at the source code level even though that behavior may not change very often.
This is starting to look like a real gray area to me: input -vs- configuration.
I guess we can try and distinguish between the types of input a system consumes (based on the static nature of the input) but I don't know how useful that is as an abstraction.