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

com.threerings.presents.tools.cpp.GenCPPServiceTask Maven / Gradle / Ivy

The newest version!
//
// $Id$
//
// Narya library - tools for developing networked games
// Copyright (C) 2002-2012 Three Rings Design, Inc., All Rights Reserved
// http://code.google.com/p/narya/
//
// This library is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published
// by the Free Software Foundation; either version 2.1 of the License, or
// (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

package com.threerings.presents.tools.cpp;

import java.lang.reflect.Type;

import java.io.File;
import java.util.List;
import java.util.Map;
import java.util.Set;

import com.google.common.base.Joiner;
import com.google.common.collect.Maps;
import com.google.common.collect.Sets;

import com.threerings.presents.tools.GenServiceTask;

import static com.threerings.presents.tools.cpp.CPPUtil.makeNamespaces;
import static com.threerings.presents.tools.cpp.CPPUtil.makePath;

public class GenCPPServiceTask extends GenServiceTask
{
    public void setCpproot (File asroot)
    {
        _cpproot = asroot;
    }

    @Override
    protected void generateMarshaller (File source, ServiceDescription sdesc)
        throws Exception
    {
        String name = sdesc.sname.replace("Service", "Marshaller");
        String mpackage = sdesc.spackage.replace(".client", ".data");

        List namespaces = makeNamespaces(mpackage);
        Map ctx = Maps.newHashMap();
        ctx.put("name", name);
        ctx.put("javaName", mpackage + "." + name);
        ctx.put("namespaces", namespaces);
        ctx.put("namespace", Joiner.on("::").join(namespaces));
        ctx.put("methods",  MethodDescriptor.from(sdesc.methods));
        ctx.put("listeners", sdesc.listeners);
        ctx.put("argbuilder", new CPPArgBuilder());

        Set includes = Sets.newTreeSet();
        Set implIncludes = Sets.newTreeSet();
        for (ServiceMethod meth : sdesc.methods) {
            for (Type type : meth.method.getGenericParameterTypes()) {
                CPPType cppType = new CPPType(type);
                if (cppType.primitive) {
                    implIncludes.add("presents/box/Boxed" + cppType.interpreter + ".h");
                }
                while (cppType != null) {
                    if (cppType.representationImport != null) {
                        includes.add(cppType.representationImport);
                    }
                    cppType = cppType.dependent;
                }
            }
        }
        ctx.put("includes", implIncludes);
        writeTemplate(CPP_TMPL, makePath(_cpproot, namespaces, name, ".cpp"), ctx);
        ctx.put("includes", includes);
        writeTemplate(HEADER_TMPL, makePath(_cpproot, namespaces, name, ".h"), ctx);
        super.generateMarshaller(source, sdesc);
    }

    protected File _cpproot;

    protected static final String HEADER_TMPL =
        "com/threerings/presents/tools/cpp/marshaller_h.mustache";
    protected static final String CPP_TMPL =
        "com/threerings/presents/tools/cpp/marshaller_cpp.mustache";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy