/mongodb-graphson/src/main/java/org/mongodb/graph/GraphSONTool.java

http://github.com/mongodb/mongo-snippets · Java · 124 lines · 85 code · 31 blank · 8 comment · 9 complexity · b6f54469a67501c1576ca5f0352a4080 MD5 · raw file

  1. package org.mongodb.graph;
  2. import java.io.File;
  3. import java.io.FileInputStream;
  4. import java.io.FileOutputStream;
  5. import java.io.InputStream;
  6. import java.io.OutputStream;
  7. import java.util.List;
  8. import com.beust.jcommander.JCommander;
  9. import com.beust.jcommander.Parameter;
  10. import com.beust.jcommander.Parameters;
  11. import com.mongodb.DB;
  12. import com.mongodb.MongoClient;
  13. import com.mongodb.MongoClientURI;
  14. public class GraphSONTool {
  15. static class MainArgs {
  16. private static final String DEFAULT_MONGODB_ENDPOINT = "mongodb://localhost:27017/";
  17. @Parameter(names = "--dburi", description = "MongoDB URI for target database")
  18. private String dburi = DEFAULT_MONGODB_ENDPOINT + GraphSON.GRAPH;
  19. @Parameter(names = "--vc", description = "Name of collection for storing vertex data")
  20. private String vertexCollectionName = GraphSON.VERTICES;
  21. @Parameter(names = "--ec", description = "Name of collection for storing edge data")
  22. private String edgeCollectionName = GraphSON.EDGES;
  23. @Parameter(names = "--help", help = true, description = "Print this message")
  24. private boolean help;
  25. }
  26. @Parameters(separators = "=", commandDescription = "Import GraphSON files")
  27. static class CommandImport {
  28. @Parameter(description = "The list of files to import")
  29. private List<String> files;
  30. @Parameter(names = "--duplicates", description = "Mode used for handling duplicates in existing data. Must be ignore, update or fail")
  31. private DuplicateMode duplicateMode = DuplicateMode.IGNORE;
  32. @Parameter(names = "--drop", description = "Drop existing any existing data in graph collections")
  33. private boolean drop = false;
  34. }
  35. @Parameters(separators = "=", commandDescription = "Export MongoDB database to GraphSON")
  36. static class CommandExport {
  37. @Parameter(description = "Path of exported data file")
  38. private List<String> target;
  39. }
  40. public static void main(String[] args){
  41. // Setup the arg parser
  42. MainArgs mainArgs = new MainArgs();
  43. JCommander argParser = new JCommander(mainArgs);
  44. argParser.setProgramName(GraphSONTool.class.getSimpleName());
  45. // Add the import and export commands
  46. CommandExport exportCmd = new CommandExport();
  47. argParser.addCommand("export", exportCmd);
  48. CommandImport importCmd = new CommandImport();
  49. argParser.addCommand("import", importCmd);
  50. try{
  51. // Parse args and show help if requested
  52. argParser.parse(args);
  53. if(mainArgs.help){
  54. argParser.usage();
  55. System.exit(0);
  56. }
  57. // Get a reference to the database
  58. MongoClientURI uri = new MongoClientURI(mainArgs.dburi);
  59. MongoClient client = new MongoClient(uri);
  60. DB database = client.getDB(uri.getDatabase());
  61. if(argParser.getParsedCommand() == null){
  62. System.err.println("No command specified, try --help");
  63. } else if(argParser.getParsedCommand().equals("export")){
  64. // Export command, create the writer
  65. GraphSONWriter writer = new GraphSONWriter(database,
  66. mainArgs.vertexCollectionName, mainArgs.edgeCollectionName);
  67. // If there are multiple target files, write to each of them
  68. for(String jsonPath : exportCmd.target ){
  69. OutputStream jsonStream = new FileOutputStream(jsonPath);
  70. System.out.println("Exporting " + uri.toString() + " to " + jsonPath + "...");
  71. writer.writeGraph(jsonStream);
  72. jsonStream.close();
  73. }
  74. } else if(argParser.getParsedCommand().equals("import")){
  75. // Create the graph listener for the mongodb database
  76. MongoDBListener listener = new MongoDBListener(
  77. database, importCmd.drop, importCmd.duplicateMode,
  78. mainArgs.vertexCollectionName, mainArgs.edgeCollectionName);
  79. GraphSONReader reader = new GraphSONReader(listener);
  80. // Use the reader to import all specified files
  81. for(String jsonPath : importCmd.files ){
  82. InputStream jsonStream = new FileInputStream(new File(jsonPath));
  83. System.out.println("Importing " + jsonPath + " into " + uri.toString() + "...");
  84. reader.readGraph(jsonStream);
  85. jsonStream.close();
  86. }
  87. listener.close();
  88. }
  89. } catch(Exception pex){
  90. System.err.println("Error running tool : " + pex.getMessage());
  91. }
  92. }
  93. }