blob: be7e46aaab5b42e4d06b3823a659d6028e3b4a4b [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jclouds.ohai.functions;
import static com.google.common.collect.Iterables.transform;
import static com.google.common.collect.Lists.partition;
import static com.google.common.io.BaseEncoding.base16;
import static com.google.common.primitives.Bytes.asList;
import static com.google.common.primitives.Bytes.toArray;
import java.util.List;
import javax.inject.Singleton;
import com.google.common.base.Function;
import com.google.common.base.Joiner;
/**
*
* Creates a string in the form: {@code 00:26:bb:09:e6:c4 }
*/
@Singleton
public class ByteArrayToMacAddress implements Function<byte[], String> {
@Override
public String apply(byte[] from) {
return Joiner.on(':').join(transform(partition(asList(from), 1), new Function<List<Byte>, String>() {
@Override
public String apply(List<Byte> from) {
return base16().lowerCase().encode(toArray(from));
}
}));
}
}