SerialNumberManager.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:2k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.hdfs.server.namenode;
  19. import java.util.*;
  20. /** Manage name-to-serial-number maps for users and groups. */
  21. class SerialNumberManager {
  22.   /** This is the only instance of {@link SerialNumberManager}.*/
  23.   static final SerialNumberManager INSTANCE = new SerialNumberManager();
  24.   private SerialNumberMap<String> usermap = new SerialNumberMap<String>();
  25.   private SerialNumberMap<String> groupmap = new SerialNumberMap<String>();
  26.   private SerialNumberManager() {}
  27.   int getUserSerialNumber(String u) {return usermap.get(u);}
  28.   int getGroupSerialNumber(String g) {return groupmap.get(g);}
  29.   String getUser(int n) {return usermap.get(n);}
  30.   String getGroup(int n) {return groupmap.get(n);}
  31.   {
  32.     getUserSerialNumber(null);
  33.     getGroupSerialNumber(null);
  34.   }
  35.   private static class SerialNumberMap<T> {
  36.     private int max = 0;
  37.     private int nextSerialNumber() {return max++;}
  38.     private Map<T, Integer> t2i = new HashMap<T, Integer>();
  39.     private Map<Integer, T> i2t = new HashMap<Integer, T>();
  40.     synchronized int get(T t) {
  41.       Integer sn = t2i.get(t);
  42.       if (sn == null) {
  43.         sn = nextSerialNumber();
  44.         t2i.put(t, sn);
  45.         i2t.put(sn, t);
  46.       }
  47.       return sn;
  48.     }
  49.     synchronized T get(int i) {
  50.       if (!i2t.containsKey(i)) {
  51.         throw new IllegalStateException("!i2t.containsKey(" + i
  52.             + "), this=" + this);
  53.       }
  54.       return i2t.get(i);
  55.     }
  56.     /** {@inheritDoc} */
  57.     public String toString() {
  58.       return "max=" + max + ",n  t2i=" + t2i + ",n  i2t=" + i2t;
  59.     }
  60.   }
  61. }