Changeset 17 for src/main


Ignore:
Timestamp:
09/22/20 08:52:49 (4 years ago)
Author:
bart
Message:

Version 1.5.

Location:
src/main
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • src/main/java/geniusweb/runserver/WebSocketProtToPartyConn.java

    r16 r17  
    2525import geniusweb.actions.Action;
    2626import geniusweb.actions.PartyId;
    27 import geniusweb.party.inform.Inform;
     27import geniusweb.inform.Inform;
    2828import geniusweb.protocol.partyconnection.ProtocolToPartyConn;
    2929import geniusweb.references.Reference;
  • src/main/webapp/index.jsp

    r4 r17  
    11<html>
     2<head>
     3<link rel="stylesheet" type="text/css" href="style.css" />
     4</head>
    25<body>
    3 <h1>GeniusWeb Run Server</h1>
     6        <h1>GeniusWeb Run Server</h1>
    47
    5 <a href="newsession.xhtml">new session</a>
    6 <br>
    7 <a href="newtournament.xhtml">new tournament</a>
    8 <br>
    9 <a href="running.xhtml">view currently running negotiations</a>
    10 <br>
    11 <a href="log">view logs</a>
    12 <p>
    13         For help and more info, please refer to the <a href="https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWebRunServer"> run server page</a>.
     8        <!-- the onclick construct is to pass through the search term in the URL  -->
     9        <aa onclick="window.location='newsession.xhtml'+window.location.search;" >new session</aa>
     10        <br>
     11        <aa onclick="window.location='newtournament.xhtml'+window.location.search;" >new tournament</aa>
     12        <br>
     13        <aa onclick="window.location='running.xhtml'+window.location.search;" >view currently running negotiations</aa>
     14        <br>
     15        <a href="log">view logs</a>
     16        <p>
     17                For help and more info, please refer to the <a
     18                        href="https://tracinsy.ewi.tudelft.nl/pubtrac/GeniusWebRunServer">
     19                        run server page</a>.
    1420</body>
    1521</html>
  • src/main/webapp/newsession.xhtml

    r16 r17  
    44<title>Profiles and Domains list</title>
    55<link rel="stylesheet" type="text/css" href="style.css" />
    6 
    76</head>
    87<body onload="init()">
     
    1413        <br /> Protocol:
    1514        <select id="selectedprotocol" onchange="selectProtocol()">
    16                 <option value="SAOP">SAOP (stacked alternating offers)</option>
    17                 <option value="SHAOP">SHAOP (stacked human alternating
    18                         offers)</option>
     15                <option value="SAOP">SAOP ( Stacked Alternating Offers
     16                        Protocol )</option>
     17                <option value="MOPAC">MOPAC (Multiple Offers Partial
     18                        Consensus)</option>
     19                <option value="AMOP">AMOP (Alternating Multiple Offers
     20                        Protocol)</option>
     21                <option value="SHAOP">SHAOP (Stacked Human Alternating Offers
     22                        Protocol)</option>
    1923        </select>
    2024
     25        <div id="votingevaluator">
     26                <br /> Voting Evaluator: <select id="selectedevaluator">
     27                        <option value="LargestAgreement">Largest Agreement</option>
     28                        <option value="LargestAgreementsLoop">Largest Agreements and Repeat</option>
     29                </select>
     30        </div>
     31       
    2132        <br /> Deadline:
    2233        <input type="number" id="deadlinevalue" name="deadline" min="1"
     
    2940        <br /> Domain/Profile Server:
    3041        <input type="url" name="url" id="profilesserverurl"
    31                 value="localhost:8080/profilesserver-1.4.4"
     42                value="localhost:8080/profilesserver-1.5.0"
    3243                pattern=".*:[0-9]+/profilesserver" size="30"
    3344                onchange="connectDomain()"> </input>
     
    4354                <br /> <b>Participants</b> <br /> Parties Server: <input type="url"
    4455                        name="url" id="partiesserverurl"
    45                         value="localhost:8080/partiesserver-1.4.4"
     56                        value="localhost:8080/partiesserver-1.5.0"
    4657                        pattern=".*:[0-9]+/partiesserver" size="30"
    4758                        onchange="connectParties()"> </input> <br /> <br /> <b>Party
     
    6374                                <input type="text" id="cobfilter" value="" maxlength="40" /> <br />
    6475                                <!--  -->
    65                                 Parameters: { <textarea  id="cobparameters" rows="2" cols="70"
    66                                         onchange="updateCobParameters()" value="" /> } <br />
    67                                 <br />
     76                                Parameters: {
     77                                <textarea id="cobparameters" rows="2" cols="70"
     78                                        onchange="updateCobParameters()" value="" />
     79                                } <br /> <br />
    6880                        </div>
    6981                </div>
     
    115127
    116128<script type="application/javascript">
     129       
     130       
    117131       
    118132       
     
    186200            tbl.getElementsByTagName('col')[4].style.visibility=(visible?'':'collapse');
    187201            tbl.getElementsByTagName('col')[5].style.visibility=(visible?'':'collapse');
     202           
     203        var evaluatorvisible=getSelectedProtocol() == "MOPAC";
     204        document.getElementById("votingevaluator").style.display=(evaluatorvisible ? 'block': 'none');
    188205               
    189206    }   
     
    198215                domainwebsocket=null;
    199216        }
    200                 var url=document.getElementById("profilesserverurl").value;
    201         var target = "ws://"+url+"/websocket/liststream";
     217                var url=new URL("http:"+document.getElementById("profilesserverurl").value);
     218                // insert the liststream to the path
     219        var target = "ws://"+url.host+url.pathname+"/websocket/liststream"+window.location.search+url.hash;
    202220        if ('WebSocket' in window) {
    203221                domainwebsocket = new WebSocket(target);
     
    276294         refresh table: copy all parties elements in there.
    277295         Typically parties is something like
    278          [{"uri":"http:130.161.180.1:8080/partiesserver/run/randomparty-1.4.4",
     296         [{"uri":"http:130.161.180.1:8080/partiesserver/run/randomparty-1.5.0",
    279297                 "capabilities":{"protocols":["SAOP"]},
    280298                 "description":"places random bids until it can accept an offer with utility >0.6",
    281                  "id":"randomparty-1.4.4",
     299                 "id":"randomparty-1.5.0",
    282300                 "partyClass":"geniusweb.exampleparties.randomparty.RandomParty"},
    283301                                 ...]
    284302         */
    285303        function updateParties(parties) {
    286                  updatePartiesCombobox(parties, document.getElementById("partyselection"),['SAOP','SHAOP']);
     304                 updatePartiesCombobox(parties, document.getElementById("partyselection"),['SAOP','AMOP','SHAOP']);
    287305                 updatePartiesCombobox(parties, document.getElementById("cobpartyselection"),['COB']);
    288306        }
     
    483501                                var logurl="log/"+this.responseText+".json";
    484502                                document.getElementById("logref").href=logurl;
    485                                 document.getElementById("plotref").href="plotlog.xhtml?id="+this.responseText;
     503                                document.getElementById("plotref").href="plotlog.xhtml"+
     504                                combineQuery("?id="+this.responseText,window.location.search);
    486505                               
    487506                                sometimeWhen(function() { return urlExists(logurl) },
     
    499518
    500519
     520
     521        /**
     522        @param query1 a query string like &p=q (part of URL)
     523        @param query2 another query string
     524        @return the combined querystring of query1 and query2
     525        */
     526        function combineQuery(query1, query2) {
     527                if (query1=="") return query2;
     528                if (query2=="") return query1;
     529                return query1+"&"+query2.substring(1);
     530        }
     531
     532       
    501533        /**
    502534        @return true iff the URL exists.
     
    521553        */
    522554        function makeRequest() {
    523 
    524                 if (getSelectedProtocol()=="SHAOP") {
     555                switch(getSelectedProtocol()) {
     556                case "SHAOP":
    525557                        return makeShaopRequest();
    526                 } else {
    527                         return makeSaopRequest();
     558                case"SAOP":
     559                case "AMOP":
     560                        return makeStdRequest(getSelectedProtocol()+"Settings");
     561                case "MOPAC":
     562                        return makeMopacRequest();                     
    528563                }
    529564        }
    530565       
    531566        /**
    532         @return a SAOP request
    533         */
    534         function makeSaopRequest() {
     567        @return a SAOP/AMOP request
     568        The header contains 'SAOSettings' or 'AMOPSettings'
     569        */
     570        function makeStdRequest(header) {
     571                return JSON.stringify({[header]: standardHeader() });
     572        }
     573       
     574        /**
     575        * @ereturn MOPAC request. Almost standard but extra 'votingEvaluator'.
     576        */
     577        function makeMopacRequest() {
     578                var extended = standardHeader();
     579                var combo = document.getElementById("selectedevaluator");
     580                var evaluator = combo.options[combo.selectedIndex].value;
     581                extended['votingevaluator'] = { [evaluator]: {} };
     582                return JSON.stringify({"MOPACSettings": extended });
     583        }
     584       
     585        /**
     586        @return standard header with participants and deadline
     587        */
     588        function standardHeader() {
    535589                var deadline={};
    536590                var value = document.getElementById("deadlinevalue").value;
     
    542596                        deadline["deadlinerounds"] = {"rounds": value, "durationms":10000};
    543597                }
    544                
    545                 return JSON.stringify({"SAOPSettings": { "participants": partyprofiles, "deadline":deadline }});
    546         }
     598                return  { "participants": partyprofiles, "deadline":deadline }
     599        }
     600       
     601       
    547602
    548603        /**
     
    577632        function init() {
    578633                selectProtocol();
    579                 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.4.4"
    580                 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.4.4"
     634                document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.5.0"
     635                document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.5.0"
    581636                connectDomain();
    582637                connectParties();
     
    592647
    593648
     649
     650
    594651</script>
    595652
  • src/main/webapp/newtournament.xhtml

    r16 r17  
    3636                        id="protocolselection" onchange="selectProtocol()">
    3737                        <option value="SAOP">SAOP</option>
     38                        <option value="MOPAC">MOPAC</option>
     39                        <option value="AMOP">AMOP</option>
    3840                        <option value="SHAOP">SHAOP</option>
    39                 </select> <br /> Deadline: <input type="number" id="deadlinevalue"
     41
     42
     43                </select>
     44               
     45                <div id="votingevaluator">
     46                        <br /> Voting Evaluator: <select id="selectedevaluator">
     47                                <option value="LargestAgreement">Largest Agreement</option>
     48                                <option value="LargestAgreementsLoop">Largest Agreements
     49                                        and Repeat</option>
     50                        </select>
     51                </div>
     52
     53
     54                <br /> Deadline: <input type="number" id="deadlinevalue"
    4055                        name="deadline" min="1" max="10000" value="10" /> <select
    4156                        id="deadlinetype">
     
    87102                <!-- party  1 selection -->
    88103                Party: <select id="partyselection">
    89                 </select>
    90                 <br /> Parameters: {
     104                </select> <br /> Parameters: {
    91105                <textarea id="parameters" rows="2" cols="70"
    92106                        onchange="getParameters('parameters')" value="" />
     
    95109                <div class="onlySHAOP">
    96110                        COB: <select id="partyselection2">
    97                         </select>
    98                         <br /> Parameters: {
     111                        </select> <br /> Parameters: {
    99112                        <textarea id="parameters2" rows="2" cols="70"
    100113                                onchange="getParameters('parameters2')" value="" />
     
    166179       
    167180       
     181       
    168182        // FIXME quick and dirty code. No clean MVC
    169183       
     
    186200    */
    187201    function selectProtocol() {
    188         const isShaop= "SHAOP"==document.getElementById("protocolselection").value;
    189         setStyleSheet('.onlySHAOP','{ display: '+(isShaop? '?':'none')+'; }')
     202            const protocol = document.getElementById("protocolselection").value;
     203                setStyleSheet('.onlySHAOP','{ display: '+(protocol=="SHAOP"? '?':'none')+'; }')
     204               
     205                document.getElementById("votingevaluator").style.display=(protocol=="MOPAC" ? 'block': 'none');
    190206    }
    191207   
     
    536552               
    537553                // create S(H)AOPSettings. [header] is a weird ECMA script workaround for javascript issue.
    538                 const sessionSettings = { [header]:{"participants":[],"deadline":deadline}};
    539                
     554                var settingvalues={"participants":[],"deadline":deadline};
     555                if (protocol=="MOPAC") {
     556                        var combo = document.getElementById("selectedevaluator");
     557                        var evaluator = combo.options[combo.selectedIndex].value;
     558                        settingvalues['votingevaluator'] = { [evaluator]: {} };
     559                }
     560                       
     561                const sessionSettings = { [header]:settingvalues};
     562
    540563                var teamsFull = [];
    541564                for (const team of teamslist) {
    542                         if (protocol=="SAOP") // only first member of team is used.
    543                                 teamsFull.push({"Team":[team[0]]});
     565                        if (protocol=="SHAOP")
     566                                teamsFull.push({"Team":team});
    544567                        else
    545                                 teamsFull.push({"Team":team});
     568                                teamsFull.push({"Team":[team[0]]}); // most protocols have just 1 member per team
    546569                }
    547570                var profilesFull = [] ;
    548571                for (const profileset of profiles) {
    549                         if (protocol=="SAOP") // only first member of team is used.
     572                        if (protocol=="SHAOP") // only first member of team is used.
     573                                profilesFull.push({"ProfileList":profileset});
     574                        else
    550575                                profilesFull.push({"ProfileList":[profileset[0]]});
    551                         else
    552                                 profilesFull.push({"ProfileList":profileset});
    553576                }
    554577               
     
    562585        */
    563586        function init() {
    564                 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.4.4";
    565                 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.4.4";
     587                document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.5.0";
     588                document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.5.0";
    566589
    567590                selectProtocol();
     
    587610
    588611
     612
    589613</script>
    590614
  • src/main/webapp/plotlog.xhtml

    r16 r17  
    44<title>Plot log results</title>
    55<script src="Chart.min_2.8.0.js"></script>
     6<script src="utils.js"></script>
    67</head>
    78<style>
     
    2324        <div id="progress">Waiting for log file name</div>
    2425        <br />
    25         <div>Notice, the plotted utilities do not include possible elicitation costs.</div>
     26        <div>Notice, the plotted utilities do not include possible
     27                elicitation costs.</div>
    2628        <div style="width: 100%;">
    2729                <canvas id="canvas"></canvas>
    2830        </div>
    29        
    30         Agreement: <div id="agreement" style="display:inline;">?</div>
     31
     32        Agreement:
     33        <div id="agreement" style="display: inline;">?</div>
    3134</body>
    3235
     
    3942       
    4043       
     44       
     45       
    4146
    4247       
     
    5257
    5358        function connect() {
    54                
    55                 var id=document.location.search;
    56             id = location.search.split('id=')[1]
    57             if (id==undefined) return;
     59                var query = new URLSearchParams(location.search);
     60                var id=query.get('id');
     61            if (id==undefined) {
     62                alert("missing ?id=<logfile> in URL");
     63                return;
     64                }
    5865           
    5966            // load the log file with given id
     
    96103                var profs=json['partyprofiles'];
    97104                for (var party in profs) {
    98                         partyprofiles[party]=profs[party]['profile'].split('?',1)[0]; // hacky, remove complete query.
     105                        partyprofiles[party]=withoutPartial(profs[party]['profile']);
    99106                }
    100107               
    101108                getProfiles(json, partyprofiles);
    102109        }
     110       
    103111       
    104112        /**
     
    112120                        if ( (nr & 1 != 0)) continue; // skip COB parties
    113121                        var shaop=teams[nr/2]['shaop'];
    114                         var profile = shaop['profile'].split('?',1)[0]; // hacky, remove complete query.
     122                        var profile = withoutPartial(shaop['profile']); // hacky, remove complete query.
    115123                        partyprofiles[partyid]=profile;
    116124                }
     
    120128        }
    121129
     130
     131        /**
     132        @param uristr a string with an uri that may have ?partial=XX
     133        @return the given uristr   without the "partia=XXl" value
     134        */
     135        function withoutPartial(uristr) {
     136                var profuri=new URL(uristr);
     137                var searchParams = new URLSearchParams(profuri.search);
     138                searchParams.delete("partial");
     139                profuri.search = searchParams.toString();
     140                return profuri.toString();
     141
     142        }
    122143       
    123144        /**
     
    371392
    372393
     394
     395
    373396</script>
    374397
     
    376399
    377400<script type="application/javascript">
     401       
     402       
    378403       
    379404       
     
    407432
    408433
     434
     435
    409436</script>
    410437
  • src/main/webapp/style.css

    r12 r17  
    2323This css is programmatically changed when protocol changes */
    2424.onlySHAOP { }
     25
     26/* substitute for <a> as in <a href-..> */
     27aa {
     28        color: blue;
     29        text-decoration: underline;
     30}
Note: See TracChangeset for help on using the changeset viewer.