public DirectoryServer(int port) throws Exception { super("Directory Server", false); boolean connected = false; try { udp_socket = new DatagramSocket(port); System.out.println("The DirectoryServer UDP socket was bound to port: " + port); } catch (SocketException e) { udp_socket = new DatagramSocket(); System.out.println( "The DirectoryServer UDP socket was bound to port: " + udp_socket.getLocalPort()); } udp_socket.setSoTimeout(Server.TIMEOUT_Server); dsu = new DirectoryServerUDP(this); if (Application.db_dir == null) { db_dir = getDirDB(Application.CURRENT_DATABASE_DIR() + Application.DIRECTORY_FILE); Application.db_dir = db_dir; } else db_dir = Application.db_dir; do { try { if (port <= 0) port = Server.getRandomPort(); ss = new ServerSocket(port); connected = true; } catch (Exception e) { e.printStackTrace(); connected = false; port = Server.getRandomPort(); } } while (!connected); System.out.println("Got port: " + ss.getLocalPort()); /* System.out.println("Got net: "+ss.getInetAddress()); System.out.println("Got sock: "+ss.getLocalSocketAddress()); System.out.println("Got obj: "+ss); */ Enumeration<NetworkInterface> nets = NetworkInterface.getNetworkInterfaces(); for (NetworkInterface netint : Collections.list(nets)) { out.printf("Display name: %s\n", netint.getDisplayName()); out.printf( "Name: %s (loopback: %s; p2p:%s; up: %s, v: %s, m:%s)\n", netint.getName(), "" + netint.isLoopback(), "" + netint.isPointToPoint(), "" + netint.isUp(), "" + netint.isVirtual(), "" + netint.supportsMulticast()); Enumeration<InetAddress> inetAddresses = netint.getInetAddresses(); for (InetAddress inetAddress : Collections.list(inetAddresses)) { out.printf("inetAddress: %s\n", inetAddress); } } initAcceptedInets(); }
private void handleChoiceEvent(Object source) { //boolean DEBUG = true; if(DEBUG) out.println("JustificationEditor:handleFieldEvent: start"); /* String creationTime; if(vote_date_field != null) { creationTime = vote_date_field.getText(); }else{ creationTime = Util.getGeneralizedTime(); } */ if((this.vote_date_field==source)||(this.vote_date_field.getDocument()==source)) { if(DEBUG) out.println("JustificationEditor:handleFieldEvent: date title"); String new_text = this.vote_date_field.getText(); Calendar cal = Util.getCalendar(new_text); if(cal == null) return; this.signature.creation_date = cal; this.signature.setEditable(); try { this.signature.storeVerified(); } catch (P2PDDSQLException e) { e.printStackTrace(); } return; } if(this.vote_dategen_field==source) { this.signature.creation_date = Util.CalendargetInstance(); this.vote_date_field.setText(Encoder.getGeneralizedTime(this.signature.creation_date)); this.signature.setEditable(); try { this.signature.storeVerified(); } catch (P2PDDSQLException e) { e.printStackTrace(); } return; } if(this.vote_newjust_field==source) { if(DEBUG) out.println("VoteEditor:handleFieldEvent: choice newjust_radio"); this.just_old_just_field.setEnabled(false); //setChoiceOldJustification(creationTime); //enable_just(); if(motionEditor!=null){ if(_DEBUG) out.println("VoteEditor:handleFieldEvent: choice newjust_radio, in motioneditor"); motionEditor.enableNewJustification(true); signature.justification_ID = motionEditor.getNewJustificationID(); signature.global_justification_ID = null; }else{ if(_DEBUG) out.println("VoteEditor:handleFieldEvent: choice newjust_radio, in justeditor"); this.justificationEditor.make_new(); this.enable_just(); signature.justification_ID = justification.justification_ID; signature.global_justification_ID = null; } return; } if(this.vote_oldjust_field==source) { if(DEBUG) out.println("VoteEditor:handleFieldEvent: choice oldjust_radio"); this.just_old_just_field.setEnabled(true); setChoiceOldJustification(); if(motionEditor!=null){ motionEditor.enableNewJustification(false); }else{ this.disable_just(); } return; } if(this.vote_nojust_field==source) { if(DEBUG) out.println("VoteEditor:handleFieldEvent: choice nojust_radio"); this.just_old_just_field.setEnabled(false); if(motionEditor!=null){ motionEditor.enableNewJustification(false); }else{ this.disable_just(); } try{ signature.justification_ID = null; signature.global_justification_ID = null; //this.signature.creation_date = Util.getCalendar(creationTime); this.signature.setEditable(); this.signature.storeVerified(); } catch (P2PDDSQLException e) { e.printStackTrace(); } } if(just_old_just_field==source) { if(DEBUG) out.println("VoteEditor:handleFieldEvent: choice old_just_combo"); //if(DEBUG) Util.printCallPath("Linux tracing"); setChoiceOldJustification(); return; } if(this.vote_choice_field == source) { if(DEBUG) out.println("VoteEditor:handleFieldEvent: choice vote_choice_field combo"); setChoice(); return; } if((just_submit_field == source)) { if(DEBUG) out.println("VoteEditor:handleFieldEvent: submit"); try { long j_id=-1; D_Justification justification =null; if(signature.choice==null){ Application.warning(_("No voting choice made.\nPlease return and make a voting choice."), _("No Choice Made")); return; } if(vote_newjust_field.isSelected()) { if(DEBUG) out.println("VoteEditor:handleFieldEvent: new justification"); justification = justificationEditor.just; if(motionEditor!=null){ justification = motionEditor.getNewJustification(); if(DEBUG) out.println("VoteEditor:handleFieldEvent: new justification from motionEditor="+justification); }else{ if(DEBUG) out.println("VoteEditor:handleFieldEvent: new justification from justEditor="+justification); } if(justification.global_constituent_ID==null){ if(DEBUG) out.println("VoteEditor:handleFieldEvent: reget justification"); justification.global_constituent_ID = Application.constituents.tree.getModel().getConstituentGIDMyself(); justification.constituent_ID = Util.getStringID(Application.constituents.tree.getModel().getConstituentIDMyself()); if(justification.global_constituent_ID==null) { Application.warning(_("You should first select a constituent identity for this organization!"), _("No Constituent ID for this org!")); return; } } justification.global_justificationID = justification.make_ID(); justification.sign(); j_id = justification.storeVerified(DEBUG); if(j_id<=0){ if(_DEBUG) out.println("VoteEditor:handleFieldEvent: failed saving no new justif"); return; } }else{ if(DEBUG) out.println("VoteEditor:handleFieldEvent: no new justification selected"); } //signature = signature; //signature.global_motion_ID = null; //signature.motion_ID = justificationEditor.just.motion_ID; if(vote_newjust_field.isSelected()) { signature.global_justification_ID = justification.global_justificationID; signature.justification_ID = Util.getStringID(j_id);//justificationEditor.just.justification_ID; } signature.global_vote_ID = signature.make_ID(); D_Vote old = new D_Vote(signature.global_vote_ID); if(old.vote_ID!=null){ String old_date = Encoder.getGeneralizedTime(old.creation_date); String new_date = Encoder.getGeneralizedTime(signature.creation_date); if(old_date.equals(new_date)){ int attack = Application.ask( _("Are you sure you want to create a new vote \n" + "with the same date as your previous vote? \n" + "This can amount to an attack where you give different people different votes!\n" + "Except if they order such votes by signature (to be implemented)\n" + "On selecting NO, we will update the creation date to now."), _("Votes from you on the same issue and with same date!"), JOptionPane.YES_NO_CANCEL_OPTION); switch(attack) { case 0: //YES break; case 1: // NO signature.creation_date = Util.CalendargetInstance(); this.vote_date_field.setText(Encoder.getGeneralizedTime(this.signature.creation_date)); break; case 2: // CANCEL default: return; } } } signature.sign(); long v_id = this.signature.storeVerified(); if(v_id<=0){ if(_DEBUG) out.println("VoteEditor:handleFieldEvent: submit sign got no local ID"); return; } /* justificationEditor.just.global_justificationID = justificationEditor.just.make_ID(); justificationEditor.just.sign(); long id = justificationEditor.just.storeVerified(); if(id<=0) return; */ disable_it(); justificationEditor.disable_it(); try{ D_Motion m = new D_Motion(Util.lval(signature.motion_ID)); m.broadcasted = true; m.storeVerified(); }catch(Exception e){e.printStackTrace();} } catch (P2PDDSQLException e) { e.printStackTrace(); } } }