Package com.canoo.dolphin.demo

Source Code of com.canoo.dolphin.demo.DemoSearchAction

/*
* Copyright 2012 Canoo Engineering AG.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.canoo.dolphin.demo;

import com.canoo.dolphin.core.Attribute;
import com.canoo.dolphin.core.ModelStore;
import com.canoo.dolphin.core.PresentationModel;
import com.canoo.dolphin.core.comm.Command;
import com.canoo.dolphin.core.comm.DataCommand;
import com.canoo.dolphin.core.comm.InitializeAttributeCommand;
import com.canoo.dolphin.core.comm.NamedCommand;
import com.canoo.dolphin.core.server.action.ServerAction;
import com.canoo.dolphin.core.server.comm.ActionRegistry;
import com.canoo.dolphin.core.server.comm.CommandHandler;
import groovy.lang.Closure;

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

import static com.canoo.dolphin.demo.DemoSearchProperties.*;

public class DemoSearchAction implements ServerAction {
    protected final ModelStore modelStore;

    public DemoSearchAction(ModelStore modelStore) {
        this.modelStore = modelStore;
    }

    public void registerIn(final ActionRegistry registry) {

        registry.register(FIRST_FILL_CMD, new CommandHandler() {
            public void handleCommand(Command command, List response) {
                for (int i = 0; i < 10; i++) {
                    String pmid = "First " + i;
                    Map data = new HashMap();
                    data.put(TEXT, pmid);
                    response.add(new DataCommand(data));
                }
            }
        });
        registry.register(SECOND_FILL_CMD, new CommandHandler() {
            public void handleCommand(Command command, List response) {
                for (int i = 0; i < 10; i++) {
                    String pmid = "Second " + i;
                    Map data = new HashMap();
                    data.put(TEXT, pmid);
                    response.add(new DataCommand(data));
                }
            }
        });

        registry.register(SEARCH_CMD, new CommandHandler() {
            public void handleCommand(Command command, List response) {
                PresentationModel searchCriteria = modelStore.findPresentationModelById(SEARCH_CRITERIA);
                if (searchCriteria == null) {
                    throw new IllegalStateException("No search criteria known on the server!");
                }
                Attribute attribute = searchCriteria.findAttributeByPropertyName(NAME);
                Object value = (attribute == null) ? null : attribute.getValue();
                String contactName = (value == null) ? "" : value.toString();

                for (int i = 0; i < 10; i++) {
                    String id = contactName + " contact " + i;
                    Map data = new HashMap();
                    data.put("id", id);
                    data.put(CONTACT_NAME, contactName);
                    data.put(CONTACT_DATE, new Date(i * 1000000000).toString());
                    response.add(new DataCommand(data));
                }
            }
        });
    }
}
TOP

Related Classes of com.canoo.dolphin.demo.DemoSearchAction

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.