~ubuntu-branches/debian/jessie/stellarium/jessie

« back to all changes in this revision

Viewing changes to src/modules/StringArray.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Cédric Delfosse
  • Date: 2009-03-13 20:07:22 UTC
  • mfrom: (1.1.8 upstream)
  • mto: (11.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: james.westby@ubuntu.com-20090313200722-gbgujsmzsa8a02ty
Import upstream version 0.10.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * The big star catalogue extension to Stellarium:
3
 
 * Author and Copyright: Johannes Gajdosik, 2006, 2007
4
 
 *
5
 
 * This program is free software; you can redistribute it and/or
6
 
 * modify it under the terms of the GNU General Public License
7
 
 * as published by the Free Software Foundation; either version 2
8
 
 * of the License, or (at your option) any later version.
9
 
 * 
10
 
 * This program is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 * GNU General Public License for more details.
14
 
 * 
15
 
 * You should have received a copy of the GNU General Public License
16
 
 * along with this program; if not, write to the Free Software
17
 
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
 
 */
19
 
 
20
 
#include <cstdlib>
21
 
#include <QString>
22
 
#include <QStringList>
23
 
#include <QFile>
24
 
#include <QDebug>
25
 
 
26
 
#include "StringArray.hpp"
27
 
 
28
 
namespace BigStarCatalogExtension {
29
 
 
30
 
void StringArray::initFromFile(const QString& file_name) {
31
 
  clear();
32
 
  QStringList list;
33
 
  QFile f(file_name);
34
 
  if (f.open(QIODevice::ReadOnly | QIODevice::Text))
35
 
  {
36
 
    while(!f.atEnd())
37
 
    {
38
 
      QString s = QString::fromUtf8(f.readLine());
39
 
      s.chop(1);
40
 
      list << s;
41
 
    }
42
 
    f.close();
43
 
    size = list.size();
44
 
  }
45
 
  if (size > 0) {
46
 
    array = new QString[size];
47
 
    if (array == 0) {
48
 
      qCritical() << "ERROR: StringArray::initFromFile: out of memory";
49
 
      exit(1);
50
 
    }
51
 
    for (int i=0;i<size;i++) {
52
 
      array[i] = list.at(i);
53
 
    }
54
 
  }
55
 
}
56
 
 
57
 
} // namespace BigStarCatalogExtension
58