Changeset 8


Ignore:
Timestamp:
01/28/20 10:19:55 (5 years ago)
Author:
bart
Message:

Update 28 jan 2020

Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • pom.xml

    r7 r8  
    5252                        <version>1.1.0</version>
    5353                </dependency>
     54               
     55                                <dependency>
     56                        <groupId>geniusweb</groupId>
     57                        <artifactId>bidspace</artifactId>
     58                        <version>1.1.0</version>
     59                </dependency>
     60               
    5461
    5562                <dependency>
  • src/main/java/geniusweb/profilesserver/AutoUpdatingProfilesFactory.java

    r1 r8  
    99import java.util.List;
    1010import java.util.logging.Level;
    11 
    12 import com.fasterxml.jackson.databind.ObjectMapper;
    1311
    1412import geniusweb.issuevalue.Domain;
     
    4240public class AutoUpdatingProfilesFactory extends DefaultProfilesFactory {
    4341
     42        private static final String PROFILES_ROOTDIR = "PROFILES_ROOTDIR";
    4443        private static final String DOMAINSREPO = "domainsrepo";
    4544        private static final String JSON = ".json";
     
    4746        private Path rootdir;
    4847        private final Reporter log;
    49         private static final ObjectMapper jackson = new ObjectMapper();
    5048
    5149        public AutoUpdatingProfilesFactory(Reporter logger) {
     
    217215                Profile profile = null;
    218216                try {
    219                         profile = jackson.readValue(profilefile, Profile.class);
     217                        profile = Jackson.instance().readValue(profilefile, Profile.class);
    220218                } catch (IOException e) {
    221219                        log.log(Level.WARNING, "File " + profilefile
     
    250248                String expectedName = withoutExtension(domainfile.getName());
    251249                try {
    252                         domain = jackson.readValue(domainfile, Domain.class);
     250                        domain = Jackson.instance().readValue(domainfile, Domain.class);
    253251                } catch (IOException e) {
    254252                        log.log(Level.WARNING, "File " + domainfile
     
    341339                // Search back upwards to projectroot.
    342340                Path dir;
     341                String path = System.getenv(PROFILES_ROOTDIR);
     342                if (path != null) {
     343                        dir = Paths.get(path);
     344                        if (!dir.toFile().exists())
     345                                throw new RuntimeException("Hard set path PROFILES_ROOTDIR='"
     346                                                + PROFILES_ROOTDIR + "' does not exist ");
     347                        return dir;
     348                }
    343349                try {
    344350                        dir = Paths.get(getClass().getProtectionDomain().getCodeSource()
     
    355361                        dir = dir.getParent();
    356362                }
    357                 return Paths.get(DOMAINSREPO); // bit silly, it's not there, but we need
    358                                                                                 // to do something.
     363                throw new RuntimeException("Path to " + DOMAINSREPO + " was not found");
    359364        }
    360365
  • src/main/java/geniusweb/profilesserver/websocket/GetProfileSocket.java

    r1 r8  
    22
    33import java.io.IOException;
     4import java.math.BigInteger;
     5import java.util.Arrays;
     6import java.util.Collections;
     7import java.util.HashMap;
     8import java.util.HashSet;
     9import java.util.List;
     10import java.util.Map;
     11import java.util.Random;
     12import java.util.Set;
     13import java.util.stream.Collectors;
    414
    515import javax.websocket.OnClose;
     
    1020import javax.websocket.server.ServerEndpoint;
    1121
    12 import com.fasterxml.jackson.databind.ObjectMapper;
    13 
     22import geniusweb.bidspace.AllBidsList;
     23import geniusweb.bidspace.BidsWithUtility;
     24import geniusweb.issuevalue.Bid;
     25import geniusweb.profile.DefaultPartialOrdering;
     26import geniusweb.profile.PartialOrdering;
    1427import geniusweb.profile.Profile;
     28import geniusweb.profile.utilityspace.LinearAdditive;
     29import geniusweb.profilesserver.Jackson;
    1530import geniusweb.profilesserver.ProfilesFactory;
    1631import geniusweb.profilesserver.events.ChangeEvent;
     32import tudelft.utilities.immutablelist.FixedList;
     33import tudelft.utilities.immutablelist.ImmutableList;
    1734import tudelft.utilities.listener.Listener;
    1835
     
    2239 * profiles is sent. For each new websocket the server will create one of this
    2340 * but they all share one {@link ProfilesFactory}.
     41 *
     42 * <p>
     43 * Query string: the websocket allows query strings.
     44 * <ul>
     45 * <li>partial</li> a query key that is assigned a natural number N (0 or
     46 * larger). If set, the profile is converted into a Partial Profile with the
     47 * given number of points. If N>0, the maximum utility bid is included .If N>1,
     48 * the minimum utility bid is included. The other bids are picked at random.
     49 * This filtering mechanism only works if the profile is {@link LinearAdditive}
     50 * space.
    2451 */
    2552@ServerEndpoint("/websocket/get/{domain}/{profile}")
    2653public class GetProfileSocket {
    27         private final static ObjectMapper jackson = new ObjectMapper();
    2854        private Profile prof = null; // the latest that we sent to client.
    2955
     
    3359        private Listener<ChangeEvent> changeListener;
    3460        private Session session;
     61        private Map<String, String> params = Collections.emptyMap();
    3562
    3663        @OnOpen
     
    4067                this.profilename = domain + "/" + profile;
    4168
     69                if (session.getQueryString() != null) {
     70                        List<String> paramstrings = Arrays
     71                                        .asList(session.getQueryString().split("&"));
     72                        params = paramstrings.stream().map(str -> str.split("=")).collect(
     73                                        Collectors.toMap(vals -> vals[0], vals -> vals[1]));
     74                }
    4275                changeListener = new Listener<ChangeEvent>() {
    4376                        @Override
     
    5689                        prof = newprof;
    5790                        try {
    58                                 session.getBasicRemote()
    59                                                 .sendText(jackson.writeValueAsString(prof));
     91                                session.getBasicRemote().sendText(
     92                                                Jackson.instance().writeValueAsString(filter(prof)));
    6093                        } catch (Exception e) {
    6194                                e.printStackTrace();
    6295                        }
    6396                }
     97        }
     98
     99        private Profile filter(Profile prof1) {
     100                String partial = params.get("partial");
     101                if (partial == null) {
     102                        return prof1;
     103                }
     104                if (!(prof1 instanceof PartialOrdering))
     105                        throw new IllegalArgumentException(
     106                                        "profile must be partialordering but got " + prof);
     107                PartialOrdering profile = (PartialOrdering) prof1;
     108                final int numbids = Integer.parseInt(partial);
     109                if (numbids < 0)
     110                        throw new IllegalArgumentException("parameter partial must be >=0");
     111
     112                ImmutableList<Bid> allbids;
     113                if (profile instanceof DefaultPartialOrdering)
     114                        allbids = new FixedList<Bid>(
     115                                        ((DefaultPartialOrdering) profile).getBids());
     116                else
     117                        allbids = new AllBidsList(prof.getDomain());
     118
     119                if (BigInteger.valueOf(numbids).compareTo(allbids.size()) > 0)
     120                        throw new IllegalArgumentException("Request for " + numbids
     121                                        + " exceeds number of bids in the space " + allbids.size());
     122
     123                BidsWithUtility info = new BidsWithUtility((LinearAdditive) prof);
     124                Set<Bid> selected = new HashSet<>();
     125                if (numbids > 0) {
     126                        selected.add(info.getExtremeBid(true));
     127                }
     128                if (numbids > 1) {
     129                        selected.add(info.getExtremeBid(false));
     130                }
     131                Random random = new Random();
     132                for (int nr = 2; nr < numbids; nr++) {
     133                        int attempt = 0;
     134                        Bid bid;
     135                        do {
     136                                long i = random.nextInt(allbids.size().intValue());
     137                                bid = allbids.get(BigInteger.valueOf(i));
     138                        } while (attempt++ < 10 && selected.contains(bid));
     139                        selected.add(bid);
     140                }
     141
     142                // put comparison info for these bids in the map
     143                Map<Bid, Set<Bid>> isBetterMap = new HashMap<>();
     144                for (Bid bid : selected) {
     145                        Set<Bid> worse = selected.stream().filter(
     146                                        otherbid -> profile.isPreferredOrEqual(bid, otherbid)
     147                                                        && !profile.isPreferredOrEqual(otherbid, bid))
     148                                        .collect(Collectors.toSet());
     149                        isBetterMap.put(bid, worse);
     150                }
     151                return new DefaultPartialOrdering(
     152                                prof.getName() + "-partial-" + numbids, prof.getDomain(),
     153                                prof.getReservationBid(), isBetterMap);
    64154        }
    65155
  • src/main/java/geniusweb/profilesserver/websocket/ProfilesListSocket.java

    r5 r8  
    2424import javax.websocket.server.ServerEndpoint;
    2525
    26 import com.fasterxml.jackson.databind.ObjectMapper;
    27 
     26import geniusweb.profilesserver.Jackson;
    2827import geniusweb.profilesserver.ProfilesFactory;
    2928import geniusweb.profilesserver.events.ChangeEvent;
     
    8382                log.log(Level.FINER, "sending updated profiles");
    8483                session.getBasicRemote().sendText(
    85                                 new ObjectMapper().writeValueAsString(getDomainsProfiles()));
     84                                Jackson.instance().writeValueAsString(getDomainsProfiles()));
    8685        }
    8786
  • src/test/java/geniusweb/profilesserver/AutoUpdatingProfilesFactoryTest.java

    r3 r8  
    4444 */
    4545public class AutoUpdatingProfilesFactoryTest {
     46
    4647        private static final String JOBS = "jobs";
    4748        private static final String JOB1 = "jobs/jobs1";
     
    242243        }
    243244
     245        @Test
     246        public void testEnvVariable() throws IOException {
     247                Path dir = Files.createTempDirectory("tempdir");
     248                // This test does not work because we can not set the env variable.
     249                // new EnvironmentVariables().set("PROFILES_ROOTDIR", "1");
     250                System.setProperty("PROFILES_ROOTDIR", "1");// dir.toAbsolutePath().toString());
     251                System.out.println(System.getenv("PROFILES_ROOTDIR"));
     252        }
     253
    244254        /**
    245255         * Copy files and all sub-files.
Note: See TracChangeset for help on using the changeset viewer.