How do the Mogenerator parameters work, which can I send via Xcode? [closed]
Solution 1:
Parameters that work both via the command line utility and Xcode:
-
--base-class
: The name af the base class which the "private class" (e.g._MyObject.h
) will inherit from. This will also add an import in the form of#import "MyManagedObject.h"
to the same.h
file. Tip: if the class you want to inherit from is located in a library, the default import statement won't work. As a workaround, you could have an extra level of inheritance for each project you create and have that class inherit from the library on (e.g. set the base class toMyProjectManagedObject
which you create manually and inherit fromMyLibManagedObject
). -
--template-path
: The path to where the 4.motemplate
files are located. When this is not provided, it will look at all the "app support directories" (e.g."/Library/Application Support/mogenerator/"
). -
--template-group
: A subdirectory name underneath thetemplate-path
directory to use. -
--template-var arc=true
: Required for the generated files to compile while using ARC. -
--output-dir
: The output directory for all generated files. -
--machine-dir
: The directory where the_<class>.h
and_<class>.m
will be output to. If --output-dir is also defined, this parameter takes precedence. -
--human-dir
: The directory where the<class>.h
and<class>.m
will be output to. If --output-dir is also defined, this parameter takes precedence. -
--includem
: the full path to a file that will include all the#import
for all the.h
files that are created. This file does not need to exist (i.e. it will be created for you if it doesn't). This file, will not be included in the project automatically for you. You must include it manually by dragging it into the Groups & Files list of your project.
Using relative paths in Xcode for any of the above arguments won't work since the working directory is set to one of the root directories of the system (e.g. Applications, Developer, Library, or System). (I haven't had enough time to figure out which one of these it is exactly.)
Parameters that cannot be used in Xcode:
-
--model
: The path to the .xcdatamodel file, cannot be set in Xcode. --list-source-files
--orphaned
--versioned
--help
Running and sending parameters to xmod via Xcode:
(Update: I haven't tried this on Xcode 4, only Xcode 3. For Xcode 4, you can add mogenerator as a build phase instead of following the following steps.)
- Go to the info page of the
.xcdatamodel
file. - Choose the Comments tab.
- Add
xmod
to the comments field, on its own line. - Every time you save the model, it will regenerate the machine files for you.
To send parameters, they must be on their own line(s):
This works:
xmod
--base-class CLASS
--template-path PATH
And even this works:
xmod
--base-class CLASS --template-path PATH
But, this won't work:
xmod --base-class CLASS --template-path PATH
Note: You must close the Info window for the settings to take effect.
Solution 2:
As of XCode 4, the Info window is no longer available, so don't be concerned if you can't set it up as answered above.
Use John Blanco's guide to set up a scripting target which allows you to pass command-line arguments directly to mogenerator. Note that you might have to tweak the paths in his example slightly... toss a pwd
in the script and check the paths against the script's working directory if it doesn't run for you right away.
For a list of available command-line arguments, run mogenerator --help
in the Terminal. AFAICT, all of them work from the scripting step.
See this answer for another way to invoke mogenerator via a "pre-action" if you want to automatically rebuild your machine files with every build. There's also a good tip on putting a mogenerator script into your VCS.
Solution 3:
Here is the output from --help as of version 1.27
mogenerator: Usage [OPTIONS] <argument> [...]
-m, --model MODEL Path to model
-C, --configuration CONFIG Only consider entities included in the named configuration
--base-class CLASS Custom base class
--base-class-import TEXT Imports base class as #import TEXT
--base-class-force CLASS Same as --base-class except will force all entities to have the specified base class. Even if a super entity exists
--includem FILE Generate aggregate include file for .m files for both human and machine generated source files
--includeh FILE Generate aggregate include file for .h files for human generated source files only
--template-path PATH Path to templates (absolute or relative to model path)
--template-group NAME Name of template group
--template-var KEY=VALUE A key-value pair to pass to the template file. There can be many of these.
-O, --output-dir DIR Output directory
-M, --machine-dir DIR Output directory for machine files
-H, --human-dir DIR Output directory for human files
--list-source-files Only list model-related source files
--orphaned Only list files whose entities no longer exist
--version Display version and exit
-h, --help Display this help and exit
Implements generation gap codegen pattern for Core Data.
Inspired by eogenerator.