aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin/src/test/java/com/yahoo/storage/searcher/DocumentSessionFactory.java
blob: 2015efa4d5d0164f966c2021462a7d022edf20db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.storage.searcher;

import com.yahoo.document.Document;
import com.yahoo.document.DocumentId;
import com.yahoo.document.DocumentType;
import com.yahoo.documentapi.VisitorParameters;
import com.yahoo.documentapi.VisitorSession;
import com.yahoo.documentapi.messagebus.protocol.GetDocumentMessage;
import com.yahoo.documentapi.messagebus.protocol.GetDocumentReply;
import com.yahoo.feedapi.DummySessionFactory;
import com.yahoo.feedapi.SendSession;
import com.yahoo.jdisc.Metric;
import com.yahoo.messagebus.*;
import com.yahoo.messagebus.Error;

import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.HashMap;

/**
 * Used to automatically reply with a GetDocumentReply for every received GetDocumentMessage
 */
public class DocumentSessionFactory extends DummySessionFactory {

    private DocumentType docType;
    private Error error;
    // Reply instances are shared between the two collections.
    List<GetDocumentReply> autoReplies;
    Map<DocumentId, GetDocumentReply> autoReplyLookup = new HashMap<>();
    boolean autoReply = true;
    boolean nullReply = false;
    private int sessionsCreated = 0;

    private class DocumentReplySession extends SendSession {

        ReplyHandler handler;
        Error e;
        DummySessionFactory owner;

        public DocumentReplySession(ReplyHandler handler, Error e, DummySessionFactory owner) {
            this.handler = handler;
            this.e = e;
            this.owner = owner;
        }

        protected Result onSend(Message m, boolean blockIfQueueFull) throws InterruptedException {
            if (!(m instanceof GetDocumentMessage)) {
                throw new IllegalArgumentException("Expected GetDocumentMessage");
            }
            GetDocumentMessage gm = (GetDocumentMessage)m;
            owner.messages.add(m);
            if (autoReply) {
                Document replyDoc;
                if (!nullReply) {
                    replyDoc = new Document(docType, gm.getDocumentId());
                } else {
                    replyDoc = null;
                }
                Reply r = new GetDocumentReply(replyDoc);
                r.setMessage(m);
                r.setContext(m.getContext());
                if (e != null) {
                    r.addError(e);
                }
                handler.handleReply(r);
            } else if (owner.messages.size() == autoReplies.size()) {
                // Pair up all replies with their messages
                for (Message msg : owner.messages) {
                    GetDocumentReply reply = autoReplyLookup.get(((GetDocumentMessage)msg).getDocumentId());
                    reply.setMessage(msg);
                    reply.setContext(msg.getContext());
                    if (e != null) {
                        reply.addError(e);
                    }
                }
                // Now send them in the correct order. Instances are shared, so source
                // messages and contexts are properly set
                for (Reply reply : autoReplies) {
                    handler.handleReply(reply);
                }
            }

            return Result.ACCEPTED;
        }

        public void close() {
        }
    }

    public DocumentSessionFactory(DocumentType docType) {
        this.docType = docType;
        this.error = null;
    }

    public DocumentSessionFactory(DocumentType docType, Error error, boolean autoReply, GetDocumentReply... autoReplies) {
        this.docType = docType;
        this.error = error;
        this.autoReplies = Arrays.asList(autoReplies);
        for (GetDocumentReply reply : autoReplies) {
            this.autoReplyLookup.put(reply.getDocument().getId(), reply);
        }
        this.autoReply = autoReply;
    }

    public boolean isNullReply() {
        return nullReply;
    }

    public void setNullReply(boolean nullReply) {
        this.nullReply = nullReply;
    }

    public int getSessionsCreated() {
        return sessionsCreated;
    }

    public SendSession createSendSession(ReplyHandler r, Metric metric) {
        ++sessionsCreated;
        return new DocumentReplySession(r, error, this);
    }

    @Override
    public VisitorSession createVisitorSession(VisitorParameters p) {
        return new DummyVisitorSession(p, docType);
    }

}