Processor.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.lang3.arch;

  18. /**
  19.  * The {@link Processor} represents a microprocessor and defines
  20.  * some properties like architecture and type of the microprocessor.
  21.  *
  22.  * @since 3.6
  23.  */
  24. public class Processor {

  25.     /**
  26.      * The {@link Arch} enum defines the architecture of
  27.      * a microprocessor. The architecture represents the bit value
  28.      * of the microprocessor.
  29.      * The following architectures are defined:
  30.      * <ul>
  31.      *     <li>32-bit</li>
  32.      *     <li>64-bit</li>
  33.      *     <li>Unknown</li>
  34.      * </ul>
  35.      */
  36.     public enum Arch {

  37.         /**
  38.          * A 32-bit processor architecture.
  39.          */
  40.         BIT_32("32-bit"),

  41.         /**
  42.          * A 64-bit processor architecture.
  43.          */
  44.         BIT_64("64-bit"),

  45.         /**
  46.          * An unknown-bit processor architecture.
  47.          */
  48.         UNKNOWN("Unknown");

  49.         /**
  50.          * A label suitable for display.
  51.          */
  52.         private final String label;

  53.         Arch(final String label) {
  54.             this.label = label;
  55.         }

  56.         /**
  57.          * Gets the label suitable for display.
  58.          *
  59.          * @return the label.
  60.          */
  61.         public String getLabel() {
  62.             return label;
  63.         }
  64.     }

  65.     /**
  66.      * The {@link Type} enum defines types of a microprocessor.
  67.      * The following types are defined:
  68.      * <ul>
  69.      *     <li>AArch64</li>
  70.      *     <li>x86</li>
  71.      *     <li>ia64</li>
  72.      *     <li>PPC</li>
  73.      *     <li>RISCV</li>
  74.      *     <li>Unknown</li>
  75.      * </ul>
  76.      */
  77.     public enum Type {

  78.         /**
  79.          * ARM 64-bit.
  80.          *
  81.          * @since 3.13.0
  82.          */
  83.         AARCH_64("AArch64"),

  84.         /**
  85.          * Intel x86 series of instruction set architectures.
  86.          */
  87.         X86("x86"),

  88.         /**
  89.          * Intel Itanium 64-bit architecture.
  90.          */
  91.         IA_64("IA-64"),

  92.         /**
  93.          * Apple–IBM–Motorola PowerPC architecture.
  94.          */
  95.         PPC("PPC"),

  96.         /**
  97.          * RISC-V architecture.
  98.          *
  99.          * @since 3.14.0
  100.          */
  101.         RISC_V("RISC-V"),

  102.         /**
  103.          * Unknown architecture.
  104.          */
  105.         UNKNOWN("Unknown");

  106.         /**
  107.          * A label suitable for display.
  108.          */
  109.         private final String label;

  110.         Type(final String label) {
  111.             this.label = label;
  112.         }

  113.         /**
  114.          * Gets the label suitable for display.
  115.          *
  116.          * @return the label.
  117.          * @since 3.13.0
  118.          */
  119.         public String getLabel() {
  120.             return label;
  121.         }

  122.     }

  123.     private final Arch arch;
  124.     private final Type type;

  125.     /**
  126.      * Constructs a {@link Processor} object with the given
  127.      * parameters.
  128.      *
  129.      * @param arch The processor architecture.
  130.      * @param type The processor type.
  131.      */
  132.     public Processor(final Arch arch, final Type type) {
  133.         this.arch = arch;
  134.         this.type = type;
  135.     }

  136.     /**
  137.      * Gets the processor architecture as an {@link Arch} enum.
  138.      * The processor architecture defines, if the processor has
  139.      * a 32 or 64 bit architecture.
  140.      *
  141.      * @return A {@link Arch} enum.
  142.      */
  143.     public Arch getArch() {
  144.         return arch;
  145.     }

  146.     /**
  147.      * Gets the processor type as {@link Type} enum.
  148.      * The processor type defines, if the processor is for example
  149.      * an x86 or PPA.
  150.      *
  151.      * @return A {@link Type} enum.
  152.      */
  153.     public Type getType() {
  154.         return type;
  155.     }

  156.     /**
  157.      * Tests if {@link Processor} is 32 bit.
  158.      *
  159.      * @return {@code true}, if {@link Processor} is {@link Arch#BIT_32}, else {@code false}.
  160.      */
  161.     public boolean is32Bit() {
  162.         return Arch.BIT_32 == arch;
  163.     }

  164.     /**
  165.      * Tests if {@link Processor} is 64 bit.
  166.      *
  167.      * @return {@code true}, if {@link Processor} is {@link Arch#BIT_64}, else {@code false}.
  168.      */
  169.     public boolean is64Bit() {
  170.         return Arch.BIT_64 == arch;
  171.     }

  172.     /**
  173.      * Tests if {@link Processor} is type of Aarch64.
  174.      *
  175.      * @return {@code true}, if {@link Processor} is {@link Type#AARCH_64}, else {@code false}.
  176.      *
  177.      * @since 3.13.0
  178.      */
  179.     public boolean isAarch64() {
  180.         return Type.AARCH_64 == type;
  181.     }

  182.     /**
  183.      * Tests if {@link Processor} is type of Intel Itanium.
  184.      *
  185.      * @return {@code true}. if {@link Processor} is {@link Type#IA_64}, else {@code false}.
  186.      */
  187.     public boolean isIA64() {
  188.         return Type.IA_64 == type;
  189.     }

  190.     /**
  191.      * Tests if {@link Processor} is type of Power PC.
  192.      *
  193.      * @return {@code true}. if {@link Processor} is {@link Type#PPC}, else {@code false}.
  194.      */
  195.     public boolean isPPC() {
  196.         return Type.PPC == type;
  197.     }

  198.     /**
  199.      * Tests if {@link Processor} is type of RISC-V.
  200.      *
  201.      * @return {@code true}. if {@link Processor} is {@link Type#RISC_V}, else {@code false}.
  202.      * @since 3.14.0
  203.      */
  204.     public boolean isRISCV() {
  205.         return Type.RISC_V == type;
  206.     }

  207.     /**
  208.      * Tests if {@link Processor} is type of x86.
  209.      *
  210.      * @return {@code true}, if {@link Processor} is {@link Type#X86}, else {@code false}.
  211.      */
  212.     public boolean isX86() {
  213.         return Type.X86 == type;
  214.     }

  215.     @Override
  216.     public String toString() {
  217.         final StringBuilder builder = new StringBuilder();
  218.         builder.append(type.getLabel()).append(' ').append(arch.getLabel());
  219.         return builder.toString();
  220.     }

  221. }