Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
mitkBaseDataSerializer.cpp
Go to the documentation of this file.
1 /*===================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center,
6 Division of Medical and Biological Informatics.
7 All rights reserved.
8 
9 This software is distributed WITHOUT ANY WARRANTY; without
10 even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 A PARTICULAR PURPOSE.
12 
13 See LICENSE.txt or http://www.mitk.org for details.
14 
15 ===================================================================*/
16 
17 #include "mitkBaseDataSerializer.h"
19 #include <itksys/SystemTools.hxx>
20 
21 mitk::BaseDataSerializer::BaseDataSerializer() : m_FilenameHint("unnamed"), m_WorkingDirectory("")
22 {
23 }
24 
26 {
27 }
28 
30 {
31  MITK_INFO << this->GetNameOfClass() << " is asked to serialize an object " << (const void *)this->m_Data
32  << " into a directory " << m_WorkingDirectory << " using a filename hint " << m_FilenameHint;
33 
34  return "";
35 }
36 
38 {
39  // tmpname
40  static unsigned long count = 0;
41  unsigned long n = count++;
42  std::ostringstream name;
43  for (int i = 0; i < 6; ++i)
44  {
45  name << char('a' + (n % 26));
46  n /= 26;
47  }
48  std::string myname;
49  myname.append(name.str());
50  return myname;
51 }
#define MITK_INFO
Definition: mitkLogMacros.h:22
std::string GetUniqueFilenameInWorkingDirectory()
virtual std::string Serialize()
Serializes given BaseData object.