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

org.nuiton.jaxx.compiler.binding.writers.AbstractJAXXBindingWriter Maven / Gradle / Ivy

There is a newer version: 3.1.5
Show newest version
/*
 * #%L
 * JAXX :: Compiler
 * %%
 * Copyright (C) 2008 - 2020 Code Lutin, Ultreia.io
 * %%
 * This program 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 3 of the
 * License, or (at your option) any later version.
 *
 * This program 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 General Lesser Public License for more details.
 *
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */
package org.nuiton.jaxx.compiler.binding.writers;

import org.nuiton.jaxx.compiler.JAXXCompiler;
import org.nuiton.jaxx.compiler.binding.DataBinding;
import org.nuiton.jaxx.compiler.binding.DataListener;
import org.nuiton.jaxx.compiler.finalizers.DefaultFinalizer;
import org.nuiton.jaxx.compiler.java.JavaFileGenerator;
import org.nuiton.jaxx.compiler.java.JavaMethod;
import org.nuiton.jaxx.runtime.JAXXBinding;

import java.util.List;

/**
 * Created: 5 déc. 2009
 *
 * @author Tony Chemit - [email protected]
 * @version $Id$
 */
public abstract class AbstractJAXXBindingWriter implements JAXXBindingWriter {

    private final Class type;

    protected boolean used;

    protected AbstractJAXXBindingWriter(Class type) {
        this.type = type;
    }

    @Override
    public boolean isUsed() {
        return used;
    }

    @Override
    public Class getType() {
        return type;
    }

    @Override
    public void reset() {
        used = false;
    }

    protected abstract String getConstructorParams(DataBinding binding,
                                                   DataListener[] trackers);

    protected void writeInvocationMethod(DataBinding binding,
                                         DataListener[] trackers,
                                         JavaFileGenerator generator,
                                         StringBuilder buffer,
                                         List bMethods) {
        used = true;
        String eol = JAXXCompiler.getLineSeparator();
        buffer.append(DefaultFinalizer.METHOD_NAME_REGISTER_DATA_BINDING);
        buffer.append("(new ");
        buffer.append(getType().getSimpleName());
        buffer.append("(");
        buffer.append(getConstructorParams(binding, trackers));
        buffer.append(") {");
        buffer.append(eol);
        for (JavaMethod m : bMethods) {
            buffer.append(eol);
            String source = generator.generateMethod(m);
            buffer.append(JavaFileGenerator.indent(source, 4, false, eol));
            buffer.append(eol);
        }
        buffer.append("});").append(eol);

        if (binding.getInitDataBinding() != null) {
            buffer.append(binding.getInitDataBinding());
        }
    }
}