You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdesdk/umbrello/umbrello/codegenerators/cppheadercodeaccessormethod...

171 lines
5.9 KiB

/***************************************************************************
* *
* 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 2 of the License, or *
* (at your option) any later version. *
* *
* copyright (C) 2004-2007 *
* Umbrello UML Modeller Authors <uml-devel@uml.sf.net> *
***************************************************************************/
/* This code generated by:
* Author : thomas
* Date : Fri Aug 31 2003
*/
// own header
#include "cppheadercodeaccessormethod.h"
// qt/kde includes
#include <kdebug.h>
// local includes
#include "../attribute.h"
#include "../classifiercodedocument.h"
#include "cppcodegenerator.h"
#include "../umlobject.h"
#include "../umlrole.h"
#include "../uml.h"
#include "cppsourcecodedocument.h"
#include "cppcodegenerationpolicy.h"
#include "cppcodeclassfield.h"
#include "cppcodedocumentation.h"
// Constructors/Destructors
//
CPPHeaderCodeAccessorMethod::CPPHeaderCodeAccessorMethod ( CodeClassField * field, CodeAccessorMethod::AccessorType type)
: CodeAccessorMethod ( field )
{
setType(type);
}
void CPPHeaderCodeAccessorMethod::update()
{
updateMethodDeclaration();
updateContent();
}
CPPHeaderCodeAccessorMethod::~CPPHeaderCodeAccessorMethod ( ) { }
// Other
//
// we basically want to update the body of this method
void CPPHeaderCodeAccessorMethod::updateContent( )
{
CodeClassField * parentField = getParentClassField();
CPPCodeClassField * cppfield = dynamic_cast<CPPCodeClassField*>(parentField);
CodeGenPolicyExt *pe = UMLApp::app()->getPolicyExt();
CPPCodeGenerationPolicy * policy = dynamic_cast<CPPCodeGenerationPolicy*>(pe);
bool isInlineMethod = policy->getAccessorsAreInline( );
Uml::Visibility scope = parentField->getVisibility();
TQString variableName = cppfield->getFieldName();
TQString itemClassName = cppfield->getTypeName();
TQString text;
if(isInlineMethod) {
switch(getType()) {
case CodeAccessorMethod::ADD:
text = policy->getVectorMethodAppend(variableName, itemClassName);
break;
case CodeAccessorMethod::REMOVE:
text = policy->getVectorMethodRemove(variableName, itemClassName);
break;
case CodeAccessorMethod::SET:
text = variableName+" = value;";
break;
case CodeAccessorMethod::LIST:
case CodeAccessorMethod::GET:
default:
text = "return " + variableName + ';';
break;
}
}
setText(text);
}
// we basically want to update the start text of this method
void CPPHeaderCodeAccessorMethod::updateMethodDeclaration()
{
CodeClassField * parentField = getParentClassField();
ClassifierCodeDocument * doc = parentField->getParentDocument();
CodeGenPolicyExt *pe = UMLApp::app()->getPolicyExt();
CPPCodeGenerationPolicy * policy = dynamic_cast<CPPCodeGenerationPolicy*>(pe);
CPPCodeClassField * cppfield = dynamic_cast<CPPCodeClassField*>(parentField);
bool isInlineMethod = policy->getAccessorsAreInline( );
TQString vectorClassName = policy->getVectorClassName();
TQString fieldName = cppfield->getFieldName();
TQString fieldType = cppfield->getTypeName();
TQString objectType = cppfield->getListObjectType();
if(objectType.isEmpty())
objectType = fieldName;
TQString methodReturnType = "void";
TQString methodName;
TQString methodParams;
TQString headerText;
TQString endLine = UMLApp::app()->getCommonPolicy()->getNewLineEndingChars();
switch(getType()) {
case CodeAccessorMethod::ADD:
methodName = "add_"+fieldType;
methodReturnType = "void";
methodParams = objectType+" value ";
headerText = "Add a "+fieldName+" object to the "+fieldName+"List"+endLine+getParentObject()->getDoc()+endLine+"@return void";
break;
case CodeAccessorMethod::REMOVE:
methodName = "remove_"+fieldType;
methodParams = objectType+" value ";
methodReturnType = "void";
headerText = "Remove a "+fieldName+" object from the "+fieldName+"List"+endLine+getParentObject()->getDoc()+endLine+"@return void";
break;
case CodeAccessorMethod::LIST:
methodName = "get_"+fieldType+"_list";
methodReturnType = vectorClassName;
headerText = "Get the "+fieldName+"List"+endLine+getParentObject()->getDoc()+endLine+"@return "+vectorClassName+"with list of objects";
break;
case CodeAccessorMethod::SET:
methodName = "set_"+fieldName;
methodParams = fieldType+" value ";
methodReturnType = "void";
headerText = "Set the value of "+fieldName+endLine+getParentObject()->getDoc()+endLine+"@param value the value of "+fieldName;
break;
case CodeAccessorMethod::GET:
default:
methodName = "get_"+fieldName;
methodReturnType = fieldType;
headerText = "Get the value of "+fieldName+endLine+getParentObject()->getDoc()+endLine+"@return the value of "+fieldName;
break;
}
// set header
CPPCodeDocumentation * header = new CPPCodeDocumentation(doc);
if(!getParentObject()->getDoc().isEmpty())
header->setText(headerText);
setComment(header);
// set start/end method text
TQString startText = methodReturnType + ' ' + methodName + " (" + methodParams +')';
if (isInlineMethod)
startText += " {";
else
startText += ';';
TQString endText = (isInlineMethod ? "}" : "");
setStartMethodText(startText);
setEndMethodText(endText);
setOverallIndentationLevel(1);
}
#include "cppheadercodeaccessormethod.moc"