All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.facebook.nailgun.builtins.NGAlias Maven / Gradle / Ivy

Go to download

Nailgun is a client, protocol and server for running Java programs from the command line without incurring the JVM startup overhead. Programs run in the server (which is implemented in Java), and are triggered by the client (C and Python clients available), which handles all I/O. This project contains the SERVER ONLY.

The newest version!
/*

  Copyright 2004-2012, Martian Software, Inc.
Copyright 2017-Present Facebook, Inc

  Licensed 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 com.facebook.nailgun.builtins;

import com.facebook.nailgun.Alias;
import com.facebook.nailgun.NGContext;
import com.facebook.nailgun.NGServer;
import java.util.Iterator;
import java.util.Set;

/**
 * Provides a means to view and add aliases. This is aliased by default to the command "
 * ng-alias".
 *
 * 

No command line validation is performed. If you trigger an exception, your client will display * it. * *

To view the current alias list, issue the command: * *

ng-alias
* * with no arguments. * *

To add or replace an alias, issue the command: * *

ng-alias [alias name] [fully qualified aliased class name]
* * @author Marty Lamb */ public class NGAlias { private static String padl(String s, int len) { StringBuffer buf = new StringBuffer(s); while (buf.length() < len) buf.append(" "); return (buf.toString()); } public static void nailMain(NGContext context) throws ClassNotFoundException { String[] args = context.getArgs(); NGServer server = context.getNGServer(); if (args.length == 0) { Set aliases = server.getAliasManager().getAliases(); // let's pad this nicely. first, find the longest alias // name. then pad the others to that width. int maxAliasLength = 0; int maxClassnameLength = 0; for (Iterator i = aliases.iterator(); i.hasNext(); ) { Alias alias = (Alias) i.next(); maxAliasLength = Math.max(maxAliasLength, alias.getName().length()); maxClassnameLength = Math.max(maxClassnameLength, alias.getAliasedClass().getName().length()); } for (Iterator i = aliases.iterator(); i.hasNext(); ) { Alias alias = (Alias) i.next(); context.out.println( padl(alias.getName(), maxAliasLength) + "\t" + padl(alias.getAliasedClass().getName(), maxClassnameLength)); context.out.println(padl("", maxAliasLength) + "\t" + alias.getDescription()); context.out.println(); } } else if (args.length == 2) { server.getAliasManager().addAlias(new Alias(args[0], "", Class.forName(args[1]))); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy