modify pce module folder structure
[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.util.Comparator;
11
12 /**
13  * Sort Ports by Name.
14  *
15  * @author Martial Coulibaly ( martial.coulibaly@gfi.com ) on behalf of Orange
16  *
17  */
18 public class SortPortsByName implements Comparator<String> {
19
20     @Override
21     public int compare(String port1, String port2) {
22         int num = extractInt(port1) - extractInt(port2);
23         int letter = extractString(port1).compareToIgnoreCase(extractString(port2));
24         int diff = port1.length() - port2.length();
25         if ((diff == 0) || (Math.abs(diff) == 1)) {
26             return num;
27         } else {
28             return letter;
29         }
30     }
31
32     int extractInt(String name) {
33         String num = name.replaceAll("\\D", "");
34         // return 0 if no digits found
35         return num.isEmpty() ? 0 : Integer.parseInt(num);
36     }
37
38     String extractString(String name) {
39         String letter = name.replaceAll("\\d", "");
40         return (letter != null) ? letter : "";
41     }
42 }
43