source: josm/trunk/src/org/openstreetmap/josm/data/osm/User.java@ 12865

Last change on this file since 12865 was 12865, checked in by Don-vip, 7 years ago

see #11390 - SonarQube - squid:S3824 - "Map.get" and value test should be replaced with single method call

  • Property svn:eol-style set to native
File size: 6.9 KB
RevLine 
[6380]1// License: GPL. For details, see LICENSE file.
[227]2package org.openstreetmap.josm.data.osm;
3
[4602]4import static org.openstreetmap.josm.tools.I18n.tr;
5
[2070]6import java.util.ArrayList;
[10841]7import java.util.Collection;
[227]8import java.util.HashMap;
[10841]9import java.util.LinkedHashSet;
[2070]10import java.util.List;
[6317]11import java.util.Map;
[9371]12import java.util.Objects;
[4025]13
[1169]14/**
[227]15 * A simple class to keep a list of user names.
[1169]16 *
[655]17 * Instead of storing user names as strings with every OSM primitive, we store
[227]18 * a reference to an user object, and make sure that for each username there
19 * is only one user object.
[1169]20 *
[8588]21 * @since 227
[227]22 */
[6362]23public final class User {
[2471]24
[8840]25 private static long uidCounter;
[2471]26
[2070]27 /**
28 * the map of known users
29 */
[8510]30 private static Map<Long, User> userMap = new HashMap<>();
[8155]31
32 /**
33 * The anonymous user is a local user used in places where no user is known.
34 * @see #getAnonymous()
35 */
[12537]36 private static final User ANONYMOUS = createLocalUser(tr("<anonymous>"));
[227]37
[2070]38 private static long getNextLocalUid() {
[8155]39 uidCounter--;
40 return uidCounter;
[2070]41 }
[1677]42
[2070]43 /**
44 * Creates a local user with the given name
[2512]45 *
[2070]46 * @param name the name
[6223]47 * @return a new local user with the given name
[2070]48 */
[8155]49 public static synchronized User createLocalUser(String name) {
[8510]50 for (long i = -1; i >= uidCounter; --i) {
[8155]51 User olduser = getById(i);
[8510]52 if (olduser != null && olduser.hasName(name))
[8155]53 return olduser;
[3505]54 }
[2070]55 User user = new User(getNextLocalUid(), name);
56 userMap.put(user.getId(), user);
57 return user;
58 }
[1169]59
[8840]60 private static User lastUser;
[8588]61
[2070]62 /**
63 * Creates a user known to the OSM server
[2512]64 *
[2070]65 * @param uid the user id
66 * @param name the name
[6223]67 * @return a new OSM user with the given name and uid
[2070]68 */
[8155]69 public static synchronized User createOsmUser(long uid, String name) {
[8588]70
71 if (lastUser != null && lastUser.getId() == uid) {
[11909]72 lastUser.setPreferredName(name);
[8588]73 return lastUser;
74 }
75
[12865]76 User user = userMap.computeIfAbsent(uid, k -> new User(uid, name));
[4066]77 if (name != null) user.addName(name);
[8588]78
79 lastUser = user;
80
[2070]81 return user;
82 }
83
[2471]84 /**
85 * clears the static map of user ids to user objects
86 */
[8155]87 public static synchronized void clearUserMap() {
[2471]88 userMap.clear();
[11912]89 lastUser = null;
[2471]90 }
[2070]91
92 /**
93 * Returns the user with user id <code>uid</code> or null if this user doesn't exist
[2512]94 *
[2070]95 * @param uid the user id
96 * @return the user; null, if there is no user with this id
97 */
[8155]98 public static synchronized User getById(long uid) {
[2070]99 return userMap.get(uid);
100 }
101
102 /**
103 * Returns the list of users with name <code>name</code> or the empty list if
104 * no such users exist
[2512]105 *
[2070]106 * @param name the user name
107 * @return the list of users with name <code>name</code> or the empty list if
108 * no such users exist
109 */
[8155]110 public static synchronized List<User> getByName(String name) {
[2284]111 if (name == null) {
112 name = "";
113 }
[7005]114 List<User> ret = new ArrayList<>();
[2070]115 for (User user: userMap.values()) {
[2638]116 if (user.hasName(name)) {
[2070]117 ret.add(user);
118 }
119 }
120 return ret;
121 }
122
[6223]123 /**
124 * Replies the anonymous user
125 * @return The anonymous user
126 */
[4602]127 public static User getAnonymous() {
[12537]128 return ANONYMOUS;
[4602]129 }
130
[2070]131 /** the user name */
[10841]132 private final LinkedHashSet<String> names = new LinkedHashSet<>();
[2070]133 /** the user id */
[2284]134 private final long uid;
[2070]135
[4602]136 /**
[2070]137 * Replies the user name
[2512]138 *
[5818]139 * @return the user name. Never <code>null</code>, but may be the empty string
[10841]140 * @see #getByName(String)
141 * @see #createOsmUser(long, String)
142 * @see #createLocalUser(String)
[2070]143 */
144 public String getName() {
[10841]145 return names.isEmpty() ? "" : names.iterator().next();
[2070]146 }
147
[2863]148 /**
[2638]149 * Returns the list of user names
[2711]150 *
[5818]151 * @return list of names
[2638]152 */
[6316]153 public List<String> getNames() {
[7005]154 return new ArrayList<>(names);
[2638]155 }
156
[2863]157 /**
[2638]158 * Adds a user name to the list if it is not there, yet.
[2711]159 *
[8470]160 * @param name User name
[2638]161 */
162 public void addName(String name) {
163 names.add(name);
164 }
165
[2863]166 /**
[10841]167 * Sets the preferred user name, i.e., the one that will be returned when calling {@link #getName()}.
168 *
169 * Rationale: A user can change its name multiple times and after reading various (outdated w.r.t. user name)
170 * data files it is unclear which is the up-to-date user name.
171 * @param name the preferred user name to set
172 */
173 public void setPreferredName(String name) {
174 if (names.size() == 1 && names.contains(name)) {
175 return;
176 }
177 final Collection<String> allNames = new LinkedHashSet<>(names);
178 names.clear();
179 names.add(name);
180 names.addAll(allNames);
181 }
182
183 /**
[2638]184 * Returns true if the name is in the names list
[2711]185 *
[8470]186 * @param name User name
[5818]187 * @return <code>true</code> if the name is in the names list
[2638]188 */
189 public boolean hasName(String name) {
190 return names.contains(name);
191 }
192
[2070]193 /**
194 * Replies the user id. If this user is known to the OSM server the positive user id
195 * from the server is replied. Otherwise, a negative local value is replied.
[2512]196 *
[2070]197 * A negative local is only unique during an editing session. It is lost when the
198 * application is closed and there is no guarantee that a negative local user id is
199 * always bound to a user with the same name.
[2512]200 *
[5818]201 * @return the user id
[2070]202 */
203 public long getId() {
204 return uid;
205 }
206
[9243]207 /**
208 * Private constructor, only called from get method.
209 * @param uid user id
210 * @param name user name
211 */
[2070]212 private User(long uid, String name) {
213 this.uid = uid;
[2638]214 if (name != null) {
215 addName(name);
[2284]216 }
[1169]217 }
218
[6223]219 /**
220 * Determines if this user is known to OSM
221 * @return {@code true} if this user is known to OSM, {@code false} otherwise
222 */
[2070]223 public boolean isOsmUser() {
224 return uid > 0;
[1169]225 }
[2034]226
[6223]227 /**
228 * Determines if this user is local
229 * @return {@code true} if this user is local, {@code false} otherwise
230 */
[2070]231 public boolean isLocalUser() {
232 return uid < 0;
233 }
234
[2034]235 @Override
236 public int hashCode() {
[9371]237 return Objects.hash(uid);
[2034]238 }
239
240 @Override
241 public boolean equals(Object obj) {
[9371]242 if (this == obj) return true;
243 if (obj == null || getClass() != obj.getClass()) return false;
244 User user = (User) obj;
245 return uid == user.uid;
[2034]246 }
[3262]247
248 @Override
249 public String toString() {
[6822]250 StringBuilder s = new StringBuilder();
[6223]251 s.append("id:").append(uid);
[3262]252 if (names.size() == 1) {
[6223]253 s.append(" name:").append(getName());
[8342]254 } else if (names.size() > 1) {
[3262]255 s.append(String.format(" %d names:%s", names.size(), getName()));
256 }
257 return s.toString();
258 }
[227]259}
Note: See TracBrowser for help on using the repository browser.