File: thobjectname.cxx

package info (click to toggle)
therion 5.3.9-4
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 16,956 kB
  • sloc: ansic: 127,467; cpp: 89,790; tcl: 24,110; perl: 2,051; makefile: 1,003; asm: 201; python: 54; sh: 4
file content (162 lines) | stat: -rw-r--r-- 4,175 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/**
 * @file thobjectname.cxx
 */
  
/* Copyright (C) 2000 Stacho Mudrak
 * 
 * $Date: $
 * $RCSfile: $
 * $Revision: $
 *
 * -------------------------------------------------------------------- 
 * 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
 * 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 * --------------------------------------------------------------------
 */
 
#include "thobjectname.h"
#include "thexception.h"
#include "thparse.h"
#include "thdatabase.h"
#include "thdataobject.h"
#include "thsurvey.h"

thobjectname::thobjectname()
{
  this->clear();
}

void thobjectname::clear()
{
  this->name = NULL;
  this->survey = NULL;
  this->psurvey = NULL;
  this->id = 0;
}

bool thobjectname::is_empty()
{
  return (this->name == NULL);
}

void thparse_objectname(thobjectname & ds, thmbuffer * sstore, char * src, thdataobject * psobj)
{
  if ((psobj != NULL) && ((psobj->stnsuff != NULL) || (psobj->stnpref != NULL))) {
    if (psobj->stnpref != NULL)
      thdb.buff_tmp = psobj->stnpref;
    else
      thdb.buff_tmp = "";
    thdb.buff_tmp += src;
    if (psobj->stnsuff != NULL)
      thdb.buff_tmp += psobj->stnsuff;
    src = thdb.buff_tmp.get_buffer();
  }
  ds.name = src;
  size_t snl = strlen(src), sni;
  for(sni = 0; sni < snl; sni++, src++)
    if (*src == '@') {
      *src = 0;
      ds.survey = src + 1;
      break;
    }
  if (!th_is_extkeyword(ds.name))
    ththrow(("invalid object name -- %s", ds.name))
  if (ds.survey != NULL)
    if (!th_is_keyword_list(ds.survey, '.'))
      ththrow(("invalid survey name -- %s", ds.survey));
  ds.name = sstore->append(ds.name);
  if (ds.survey != NULL)
    ds.survey = sstore->append(ds.survey);
  ds.psurvey = thdb.get_current_survey();
}


void fprintf(FILE * fh, thobjectname & ds)
{
  if (ds.name != NULL)
    fprintf(fh, "%s", ds.name);
  else
    fprintf(fh, "-");
  if (ds.survey != NULL)
    fprintf(fh, "@%s", ds.survey);
  if (ds.id > 0)
    fprintf(fh, ":%ld", ds.id);
}


char * thobjectname::print_name()
{
  static thbuffer pname;
  size_t plen, slen;
  char * rv;
  plen = (this->name != NULL ? strlen(this->name) : 0);
  slen = (this->survey != NULL ? strlen(this->survey) : 0);
  pname.guarantee(plen + slen + 1);
  rv = pname.get_buffer();
  rv[0] = 0;
  if ((plen > 0) && (slen > 0)) {
    sprintf(rv, "%s@%s", this->name, this->survey);
  } else if (plen > 0) {
    sprintf(rv, "%s", this->name);
  } else if (slen > 0) {
    sprintf(rv, "%s", this->survey);
  }
  return rv;
}
  

char * thobjectname__print_full_name(const char * oname, thsurvey * psrv, int slevel)
{
  static thbuffer pname;
  size_t plen, slen, start, cx, tx;
  int clevel;
  char * rv;
  const char * sname;
  sname = NULL;
  if (psrv != NULL) 
    sname = psrv->get_full_name();
  plen = (oname != NULL ? strlen(oname) : 0);
  slen = (sname != NULL ? strlen(sname) : 0);
  pname.guarantee(plen + slen + 1);
  rv = pname.get_buffer();
  rv[0] = 0;
  if ((plen > 0) && (slen > 0) && (slevel != 0)) {
    sprintf(rv, "%s@%s", oname, sname);
  } else if (plen > 0) {
    sprintf(rv, "%s", oname);
  } else if ((slen > 0) && (slevel != 0)) {
    sprintf(rv, "%s", sname);
  }
  if ((slen > 0) && (slevel > 0)) {
    start = (plen > 0 ? plen + 1 : 0);
    clevel = 0;
    tx = strlen(rv);
    for(cx = start; cx < tx; cx++) {
      if (rv[cx] == '.') {
        clevel++;
        if (clevel == slevel)  {
          rv[cx] = 0;
          break;
        }
      }
    }
  }
  return rv;
}

char * thobjectname::print_full_name(int slevel)
{
  return thobjectname__print_full_name(this->name, this->psurvey, slevel);
}