/* * Valadate - Unit testing library for GObject-based libraries. * Copyright (C) 2016 Chris Daley * * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * Authors: * Chris Daley */ /** * Represents a loadable module containing {@link Valadate.Test}s */ public class Valadate.TestModule : Assembly { private GLib.Module module; public TestModule (File binary) throws Error { base (binary); } private void load_module () throws AssemblyError { module = GLib.Module.open (binary.get_path (), ModuleFlags.BIND_LAZY); if (module == null) throw new AssemblyError.LOAD (GLib.Module.error ()); module.make_resident (); } public virtual void* get_method (string method_name) throws AssemblyError { if (module == null) load_module (); void* function; if (module.symbol (method_name, out function)) if (function != null) return function; throw new AssemblyError.METHOD (GLib.Module.error ()); } public override Assembly clone () throws Error { return new TestModule (binary); } }