// // aegis - project change supervisor // Copyright (C) 2001, 2003-2008, 2012 Peter Miller // Copyright (C) 2008, 2009 Walter Franzini // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU 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 Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see // . // #include #include #include #include #include #include #include #include // // NAME // sub_developer - the developer substitution // // SYNOPSIS // wstring_ty *sub_developer(wstring_list_ty *arg); // // DESCRIPTION // The sub_developer function implements the developer substitution. // The developer substitution is replaced by the name of the developer // of the change. // // ARGUMENTS // arg - list of arguments, including the function name as [0] // // RETURNS // a pointer to a string in dynamic memory; // or NULL on error, setting suberr appropriately. // wstring sub_developer(sub_context_ty *scp, const wstring_list &arg) { trace(("sub_developer()\n{\n")); change::pointer cp = sub_context_change_get(scp); wstring result; if (!cp) { yuck: scp->error_set(i18n("not valid in current context")); } else if (arg.size() == 1) { result = wstring(cp->developer_name()); if (result.empty()) goto yuck; } else if (arg.size() == 2) { nstring s = arg[1].to_nstring(); sub_user_func_ptr func = sub_user_func(s); if (!func) { scp->error_set(i18n("unknown substitution variant")); } else { nstring login_name(cp->developer_name()); user_ty::pointer up = user_ty::create(login_name); s = func(up); result = wstring(s); } } else { scp->error_set(i18n("requires one argument")); } trace(("return %p;\n", result.get_ref())); trace(("}\n")); return result; } // vim: set ts=8 sw=4 et :