Is it OK (or even recommended/good practice) to #include .c file in another .c file? What happens when they are included in a project file?
|
|
|||||
|
|
Used properly, this can be a useful technique. Say you have a complex, performance critical subsystem with a fairly small public interface and a lot of non-reusable implementation code. The code runs to several thousand lines, a hundred or so private functions and quite a bit of private data. If you work with non-trivial embedded systems, you probably deal with this situation frequently enough. Your solution will probably be layered, modular and decoupled and these aspects can be usefully represented and reinforced by coding different parts of the subsystem in different files. With C, you can lose a lot by doing this. Almost all toolchains provide decent optimisation for a single compilation unit, but are very pessimistic about anything declared extern. If you put everything into one C source module, you get -
But you also get an unholy mess when it comes to editing this file and you lose the implied modularity. This can be overcome by splitting the source into several files and including these to produce a single compilation unit. You need to impose some conventions to manage this properly though. These will depend on your toolchain to some extent, but some general pointers are -
|
|||||
|
|
is it ok? yes, it will compile is it recommended? no - .c files compile to .obj files, which are linked together after compilation (by the linker) into the executable (or library), so there is no need to include one .c file in another. What you probably want to do instead is to make a .h file that lists the functions/variables available in the other .c file, and include the .h file |
|||||
|
|
No. Depending on your build environment (you don't specify), you may find that it works in exactly the way that you want. However, there are many environments (both IDEs and a lot of hand crafted Makefiles) that expect to compile *.c - if that happens you will probably end up with linker errors due to duplicate symbols. As a rule this practice should be avoided. If you absolutely must #include source (and generally it should be avoided), use a different file suffix for the file. |
|||
|
|
|
I thought I'd share a situation where my team decided to include .c files. Our archicture largely consists of modules that are decoupled through a message system. These message handlers are public, and call many local static worker functions to do their work. The problem came about when trying to get coverage for our unit test cases, as the only way to exercise this private implementation code was indirectly through the public message interface. With some worker functions knee-deep in the stack, this turned out to be a nightmare to achieve proper coverage. Including the .c files gave us a way to reach the cog in the machine we were interesting in testing. |
|||
|
|
|
The C language doesn't prohibit that kind of #include, but the resulting translation unit still has to be valid C. I don't know what program you're using with a .prj file. If you're using something like "make" or Visual Studio or whatever, just make sure that you set its list of files to be compiled without the one that can't compile independently. |
|||
|
|
|
The extension of the file does not matter to most C compilers, so it will work. However, depending on your makefile or project settings the included c file might generate a separate object file. When linking that might lead to double defined symbols. |
|||
|
|
|
Including C file into another file is legal, but not advisable thing to do, unless you know exactly why are you doing this and what are you trying to achieve. By the way i missed the second part of the question. If C file is included to another file and in the same time included to the project you probably will end up with duplicate symbol problem why linking the objects, i.e same function will be defined twice (unless they all static). |
||||
|
|