Modify spectrum assignment management in PCE
[transportpce.git] / pce / src / main / java / org / opendaylight / transportpce / pce / SortPortsByName.java
1 /*
2  * Copyright © 2017 Orange, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.transportpce.pce;
9
10 import java.io.Serializable;
11 import java.util.Comparator;
12
13 /**
14  * Sort Ports by Name.
15  *
16  * @author Martial Coulibaly ( martial.coulibaly@gfi.com ) on behalf of Orange
17  *
18  */
19 @edu.umd.cs.findbugs.annotations.SuppressFBWarnings(
20     value = "SE_NO_SERIALVERSIONID",
21     justification = "https://github.com/rzwitserloot/lombok/wiki/WHY-NOT:-serialVersionUID")
22 public class SortPortsByName implements Comparator<String>, Serializable {
23
24     @Override
25     public int compare(String port1, String port2) {
26         int num = extractInt(port1) - extractInt(port2);
27         int letter = extractString(port1).compareToIgnoreCase(extractString(port2));
28         int diff = port1.length() - port2.length();
29         if ((diff == 0) || (Math.abs(diff) == 1)) {
30             return num;
31         } else {
32             return letter;
33         }
34     }
35
36     int extractInt(String name) {
37         String num = name.replaceAll("\\D", "");
38         // return 0 if no digits found
39         return num.isEmpty() ? 0 : Integer.parseInt(num);
40     }
41
42     String extractString(String name) {
43         String letter = name.replaceAll("\\d", "");
44         return (letter != null) ? letter : "";
45     }
46 }
47