Go to: Synopsis. Return value. Keywords. Related. Flags. MEL examples.
dbpeek [-allObjects] [-argument string] [-count uint] [-evaluationGraph] [-operation string] [-outputFile string]
dbpeek is NOT undoable, queryable, and NOT editable.
The dbpeek command is used to analyze the Maya data for
information of interest. See a description of the flags for details
on what types of things can be analyzed.
string[] | Query of operation yields a string array with available operations |
string[] | Query of argument yields a string array with available argument definitions on the specified operation |
string | Query of specific operation without an output file returns a string with help information for that operation |
int | Query of specific operation with an output file dumps the help information for that operation to that file and returns the number of errors encountered |
In query mode, return type is based on queried flag.
debug, node, attribute
dbcount, dgInfo, dgdirty, dgeval, dgmodified
allObjects, argument, count, evaluationGraph, operation, outputFile
Flag can appear in Create mode of command
|
Flag can appear in Edit mode of command
|
Flag can appear in Query mode of command
|
Flag can be used more than once in a command.
|
// Find the available peek operations
dbpeek -op -query;
// Return: metadata nodes references //
// Describe the detail of a single available operation
dbpeek -query -op "nodes";
// Return:
Peek operation 'nodes':
Normal display will show a count of nodes in the scene of each type.
Recognized 'argument' values:
attributes
Includes the attribute count for each node as well, segregated by static, extension, and dynamic types.
visible
Filter the display list to ignore any hidden or internal nodes. Default is to show all nodes.
//
// Describe the detail of a single available operation
dbpeek -op plugIterator -query
// Return: The test 'plugIterator' doesn't take any arguments.
Peek operation 'plugIterator':
This tests the performance of the class by iterating over all of the
networked plugs in a plug tree.
Suggested iteration count minimum is 1000000 for which the test machine
measured a time of 19.234s.
This operation does not take any arguments.
//
// Run a performance test for 1000000 loops
dbpeek -op plugIterator -count 1000000
// Return: Run 10,000 loops of plug iteration over a tree of size 51, depth 4
Total time: 17.0s
Maximum time: 0.81s
Minimum time: 0.23s
Average time: 0.30s
//
// Run a performance test for 1000000 loops and store the results
dbpeek -op plugIterator -count 1000000 -of "MyFile.txt"
// Return: 0 //
loadPlugin MetadataSample;
polyPlane -n "planeLuck";
dataStructure -asString "name=TestStructure:int32=ID"
importMetadata -asString "channel face\n stream\n TestStream\n TestStructure\n 0\n 99\n 1\n 999\n 2\n 9999\n endStream\n endChannel\n endAssociations" "planeLuckShape";
// Peek at the newly created metadata
//
dbpeek -op "metadata" -argument "summary";
// Return: Node planeLuckShape : face( TestStream[3] ) //