source: trunk/autoquest-core-usability-evaluation/src/main/java/de/ugoe/cs/autoquest/usability/rules/metrics/TextInputEntryRepetitionsMetric.java @ 1150

Last change on this file since 1150 was 1150, checked in by adeicke, 11 years ago

Added usage patterns and mechanism for detecting them.

  • Property svn:mime-type set to text/plain
File size: 4.9 KB
Line 
1//   Copyright 2012 Georg-August-Universität Göttingen, Germany
2//
3//   Licensed under the Apache License, Version 2.0 (the "License");
4//   you may not use this file except in compliance with the License.
5//   You may obtain a copy of the License at
6//
7//       http://www.apache.org/licenses/LICENSE-2.0
8//
9//   Unless required by applicable law or agreed to in writing, software
10//   distributed under the License is distributed on an "AS IS" BASIS,
11//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12//   See the License for the specific language governing permissions and
13//   limitations under the License.
14
15package de.ugoe.cs.autoquest.usability.rules.metrics;
16
17import static de.ugoe.cs.autoquest.usability.tasktree.filters.EventTypeFilter.TEXT_INPUT;
18import static de.ugoe.cs.autoquest.usability.util.TextInputUtil.aggregateEnteredTextFromTextInputs;
19
20import java.util.List;
21
22import com.google.common.base.Optional;
23import com.google.common.base.Predicate;
24import com.google.common.collect.Multiset;
25import com.google.common.collect.Multisets;
26
27import de.ugoe.cs.autoquest.tasktrees.treeifc.ITaskTree;
28import de.ugoe.cs.autoquest.tasktrees.treeifc.ITaskTreeNode;
29import de.ugoe.cs.autoquest.usability.EvaluationMethodCaller;
30import de.ugoe.cs.autoquest.usability.result.DefectDescriptionResolver;
31import de.ugoe.cs.autoquest.usability.result.UsabilityDefect;
32import de.ugoe.cs.autoquest.usability.rules.UsabilityMetric;
33import de.ugoe.cs.autoquest.usability.rules.UsabilityRule;
34import de.ugoe.cs.autoquest.usability.tasktree.FilterResult;
35import de.ugoe.cs.autoquest.usability.tasktree.IterativeDFSFilterStrategy;
36import de.ugoe.cs.autoquest.usability.tasktree.filters.TaskTreeFilter;
37
38/**
39 * <p>
40 * TODO comment
41 * </p>
42 *
43 * @author Alexander Deicke
44 */
45public class TextInputEntryRepetitionsMetric extends UsabilityRule implements UsabilityMetric {
46
47    /**
48     * <p>
49     * TODO: comment
50     * </p>
51     *
52     * @param taskTree
53     */
54    public TextInputEntryRepetitionsMetric(ITaskTree taskTree) {
55        super(taskTree);
56        this.name = "TextInputEntryRepetitions";
57        this.defect = new DefectDescriptionResolver().descriptionFor(this.getClass().getSimpleName());
58    }
59
60    /* (non-Javadoc)
61     * @see de.ugoe.cs.autoquest.usability.rules.UsabilityRule#check()
62     */
63    @Override
64    public Optional<UsabilityDefect> calculate() {
65        FilterResult textInputEvents = extractNodesFromTaskTree();
66        float evaluationMetric = calculateEvaluationMetric(textInputEvents.nodesMatchedFilter());
67        return this.defect.isPresent(evaluationMetric);
68    }
69   
70    private FilterResult extractNodesFromTaskTree() {
71        return new TaskTreeFilter(new IterativeDFSFilterStrategy()).filterByEventType(TEXT_INPUT)
72            .from(this.taskTree);
73    }
74   
75    private float calculateEvaluationMetric(List<ITaskTreeNode> textInputEvents) {
76        Multiset<String> enteredTextFragments =
77            aggregateEnteredTextFromTextInputs(textInputEvents);
78        Multiset<String> orderedTextFragmentsWithMultipleOccurences =
79            onlyTextFragmentsWithMultipleOccurences(enteredTextFragments);
80        if (orderedTextFragmentsWithMultipleOccurences.isEmpty())
81            return 0;
82        String wordWithHighestRepetitionInTextFragments =
83            orderedTextFragmentsWithMultipleOccurences.iterator().next();
84        int numberOfRepeatedWords = orderedTextFragmentsWithMultipleOccurences.entrySet().size();
85        int maxRepetitions =
86            orderedTextFragmentsWithMultipleOccurences
87                .count(wordWithHighestRepetitionInTextFragments);
88        return Math.max(numberOfRepeatedWords, maxRepetitions);
89    }
90   
91    private Multiset<String> onlyTextFragmentsWithMultipleOccurences(final Multiset<String> allTextInputs)
92    {
93        return Multisets.copyHighestCountFirst(Multisets.filter(allTextInputs,
94                                                                new Predicate<String>() {
95
96                                                                    @Override
97                                                                    public boolean apply(String word)
98                                                                    {
99                                                                        return allTextInputs
100                                                                            .count(word) > 1;
101                                                                    }
102
103                                                                }));
104    }
105
106    /* (non-Javadoc)
107     * @see de.ugoe.cs.autoquest.usability.rules.UsabilityRule#callEvaluationMetho(de.ugoe.cs.autoquest.usability.EvaluationMethodCaller)
108     */
109    @Override
110    public Optional<UsabilityDefect> callEvaluationMethod(EvaluationMethodCaller evaluationMethodCaller)
111    {
112        return evaluationMethodCaller.check(this);
113    }
114   
115}
Note: See TracBrowser for help on using the repository browser.