File: RelationshipInspector.m

package info (click to toggle)
gnustep-dl2 0.12.0%2Bgit20250112-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 7,092 kB
  • sloc: objc: 68,223; makefile: 60; sh: 48
file content (425 lines) | stat: -rw-r--r-- 10,556 bytes parent folder | download
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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425

/*
 RelationshipInspector.m
 
 Author: Matt Rice <ratmice@gmail.com>
 Date: 2005, 2006
 Author: David Wetzel <dave@turbocat.de>
 Date: 2010
 
 This file is part of EOModelEditor.
 
 EOModelEditor 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.
 
 EOModelEditor 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 EOModelEditor; if not, write to the Free Software
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#include "RelationshipInspector.h"

#include <EOAccess/EOEntity.h>
#include <EOAccess/EORelationship.h>
#include <EOAccess/EOModel.h>
#include <EOAccess/EOAttribute.h>

#include <EOModeler/EOModelerApp.h>
#include "../EOMEDocument.h"
#include "../EOMEEOAccessAdditions.h"

#ifdef NeXT_Foundation_LIBRARY
#include <Foundation/Foundation.h>
#else
#include <Foundation/NSArray.h>
#endif

#ifndef GNUSTEP
#include <GNUstepBase/GNUstep.h>
#endif

@implementation RelationshipInspector

- (NSString *) displayName
{
  return @"Relationship";
}

- (void) dealloc
{
  DESTROY(_attributes);
  DESTROY(_dimpleImg);
  DESTROY(_noDimpleImg);
  DESTROY(_currentRelation);

  [super dealloc];
}

//- (EOEntity *)selectedEntity
//{
//  NSInteger row;
//  return nil;
//  
//  if ((row == -1))
//    return nil;
//  
//  return [[[[EOMApp activeDocument] eomodel] entities] objectAtIndex:row];
//}
//


- (void) awakeFromGSMarkup
{
  [destinationEntityBrowser setAllowsEmptySelection:NO];
  [sourceBrowser setAllowsEmptySelection:NO];
//  [destAttrib_tableView setAllowsEmptySelection:NO];
  ASSIGN(_dimpleImg, [NSImage imageNamed:@"dimple"]);
  ASSIGN(_noDimpleImg, [NSImage imageNamed:@"nodimple"]);
  
}

- (float) displayOrder
{
  return 0;
}

- (BOOL) canInspectObject:(id)anObject
{
  return [anObject isKindOfClass:[EORelationship class]];
}

- (void) refresh
{
  EOModel *activeModel = [[EOMApp activeDocument] eomodel];
//  EORelationship * relation = (EORelationship *) [self selectedObject];
  EOEntity *destEntity;
  EOAttribute *srcAttrib, *destAttrib;
  NSArray *joins;
  
  if (_attributes) {
    DESTROY(_attributes);
  }  

  ASSIGN(_currentRelation, (EORelationship *) [self selectedObject]);

  [name_textField setStringValue:[_currentRelation name]];

  [sourceBrowser loadColumnZero];
  [destBrowser loadColumnZero];
  [destinationEntityBrowser loadColumnZero];
  
  destEntity = [[self selectedObject] destinationEntity];
  if (destEntity)
  {
    NSUInteger idx = [[activeModel entities] indexOfObject:destEntity];
    if (idx != NSNotFound) {
      [destinationEntityBrowser selectRow:idx
                                 inColumn:0];         

      [destinationEntityBrowser setEnabled:NO];
    }
  } else {
    [destinationEntityBrowser setEnabled:YES];
  }

  
  joins = [_currentRelation joins];
  
  if ([joins count])
  {
    EOJoin *join = [joins objectAtIndex:0];
    srcAttrib = [join sourceAttribute];
    destAttrib = [join destinationAttribute];
    
    [connectButton setEnabled:NO];
    
    [joinCardinality_matrix selectCellWithTag:[[self selectedObject] isToMany]];
    [joinSemantic_popup selectItemWithTag: [_currentRelation joinSemantic]];
  }
}

- (IBAction) connectButtonClicked:(id)sender
{
  NSString    *srcName   = [[sourceBrowser selectedCell] title];
  EOJoin *join;

  if ([sender state] == NSOnState)
    {
      EOModel     *activeModel   = [[EOMApp activeDocument] eomodel];
      NSString    *dstName       = [[destBrowser selectedCell] title];
      NSString    *dstEntityName = [[destinationEntityBrowser selectedCell] title];
      EOAttribute *srcAttrib     = [[_currentRelation entity] attributeNamed:srcName];
      EOAttribute *destAttrib    = [[activeModel entityNamed:dstEntityName] attributeNamed:dstName];
      
      join = [[EOJoin alloc] initWithSourceAttribute:srcAttrib 
                                destinationAttribute:destAttrib];

      [_currentRelation addJoin:join];
      
      [join release];
    } else {
      // disconnect

      join = [_currentRelation joinFromAttributeNamed:srcName];
      [_currentRelation removeJoin:join];
    }
  
  [destBrowser loadColumnZero];
  [sourceBrowser loadColumnZero];

}

- (void) nameChanged:(id)sender
{
  NSString *name = [name_textField stringValue];

  [(EORelationship *)[self selectedObject] setName:name];
}

- (void) joinChanged:(id)sender
{
  /* the tag in the nib must match the values in the EOJoinSemantic enum */
  [(EORelationship *)[self selectedObject] setJoinSemantic: [[sender selectedItem] tag]];
  
}

- (void) cardinalityChanged:(id)sender
{
  /* the tag in the nib for to-one must be 0 to-many 1 */
  [(EORelationship *) [self selectedObject] setToMany: [[sender selectedCell] tag]];
}

- (void) controlTextDidEndEditing:(NSNotification *)notif
{
  id sender = [notif object];

  if (sender == name_textField)
    [self nameChanged:sender];
}

- (NSArray*) attributes
{
  if (!_attributes) {
    _attributes = [[[[self selectedObject] entity] attributes] retain];
  }
  
  return _attributes;
}

#pragma mark -
#pragma mark browser

- (NSInteger)browser:(NSBrowser *)sender numberOfRowsInColumn:(NSInteger)column
{
  EOModel *activeModel = nil;

  if (sender == destinationEntityBrowser) {
    activeModel = [[EOMApp activeDocument] eomodel];
    return [[activeModel entityNames] count];
  } 

  if (sender == sourceBrowser) {
    EOEntity  * selectedEntity = [_currentRelation entity];
    NSArray   * attributes = [selectedEntity attributes];

    return [attributes count];
  } 

  if (sender == destBrowser) {
    EOEntity  * destinationEntity = [_currentRelation destinationEntity];
    NSArray   * dstAttributes = nil;
    
    
    if (!destinationEntity) {
      NSString * name = [[destinationEntityBrowser selectedCell] title];
      
      if (!name) {
        return 0;
      }
      activeModel = [[EOMApp activeDocument] eomodel];

      destinationEntity = [activeModel entityNamed:name];
    }
    
    dstAttributes = [destinationEntity attributes];
    return [dstAttributes count];
  } 
  
  return 0;
  
}


- (void)browser:(NSBrowser *)sender willDisplayCell:(NSBrowserCell *)cell atRow:(NSInteger)row column:(NSInteger)column
{
  EOModel     * activeModel = nil;
  EOEntity    * selectedEntity = nil;
  EOEntity    * destinationEntity = nil;
  
  if (sender == destinationEntityBrowser) {
    activeModel = [[EOMApp activeDocument] eomodel];

    [cell setLeaf:YES];
    //entityNames is better
    [cell setTitle:[[activeModel entityNames] objectAtIndex:row]];
    //[cell setTitle:[(EOEntity *)[[activeModel entities] objectAtIndex:row] name]];
    
    return;
  }
  
  selectedEntity = [_currentRelation entity];
  
  if ((sender == sourceBrowser) && (selectedEntity)) {
    NSArray  * attributes = [selectedEntity attributes];
    NSString * name = [[attributes objectAtIndex:row] name];
    NSUInteger idx;
    
    
    [cell setLeaf:YES];
    [cell setTitle:name];
    
    idx = [[_currentRelation sourceAttributeNames] indexOfObject: name];
    
    if ((idx != NSNotFound)) {
      [cell setImage:_dimpleImg];
    } else {
      [cell setImage:_noDimpleImg];
    }
    return;
  } 
  
  destinationEntity = [_currentRelation destinationEntity];

  if (!destinationEntity) {
    NSString * name = [[destinationEntityBrowser selectedCell] title];
    activeModel = [[EOMApp activeDocument] eomodel];
    
    destinationEntity = [activeModel entityNamed:name];
  }
  

  if (((sender == destBrowser)) && (destinationEntity)) {
    NSArray  * dstAttributes = [destinationEntity attributes];
    NSString * name = [[dstAttributes objectAtIndex:row] name];
    NSUInteger idx;
    
    
    [cell setLeaf:YES];
    [cell setTitle:name];
    
    idx = [[_currentRelation destinationAttributeNames] indexOfObject: name];
    
    if ((idx != NSNotFound)) {
      [cell setImage:_dimpleImg];
    } else {
      [cell setImage:_noDimpleImg];
    }
    
  } 
  
}

- (IBAction)sourceBrowserClicked:(NSBrowser *)sender
{
  NSString * name = [[sender selectedCell] title];
  EOEntity * destinationEntity = nil;
  EOJoin   * join = nil;
  NSInteger  row = NSNotFound;
  
  destinationEntity = [_currentRelation destinationEntity];
  
  join = [_currentRelation joinFromAttributeNamed:name];
  
  if (join) {
    row = [[destinationEntity attributeNames] indexOfObject:[[join destinationAttribute] name]];
  }
  
  if ((row != NSNotFound)) {
    
    [destBrowser selectRow:row 
                  inColumn:0];
    
    
    [destBrowser scrollRowToVisible:row 
                           inColumn:0];
    
    [connectButton setState: NSOnState];
    [connectButton setEnabled:YES];
    
  } else {
    NSString * otherName = [[destBrowser selectedCell] title];
    EOJoin * otherJoin = [_currentRelation joinToAttributeNamed:otherName];
    
    if (otherJoin) {
      [connectButton setEnabled:NO];
    } else {
      [connectButton setEnabled:YES];
    }
    
    [connectButton setState: NSOffState];
  }
  
}

- (IBAction)destBrowserClicked:(NSBrowser *)sender
{
  NSString * name = [[sender selectedCell] title];
  EOEntity * srcEntity = nil;
  EOJoin   * join = nil;
  NSInteger  row = NSNotFound;
  
  srcEntity = [_currentRelation entity];
  
  join = [_currentRelation joinToAttributeNamed:name];
  
  if (join) {
    row = [[srcEntity attributeNames] indexOfObject:[[join sourceAttribute] name]];
  }
  
  if ((row != NSNotFound)) {
    
    [sourceBrowser selectRow:row 
                    inColumn:0];
    
    
    [sourceBrowser scrollRowToVisible:row 
                             inColumn:0];
    
    [connectButton setState: NSOnState];
    [connectButton setEnabled:YES];
    
  } else {
    NSString * otherName = [[sourceBrowser selectedCell] title];
    EOJoin * otherJoin = [_currentRelation joinFromAttributeNamed:otherName];
    
    if (otherJoin) {
      [connectButton setEnabled:NO];
    } else {
      [connectButton setEnabled:YES];
    }
    
    
    [connectButton setState: NSOffState];
  }  
  
}

- (IBAction)destinationEntityBrowserClicked:(NSBrowser *)sender
{
  [destBrowser loadColumnZero];
  [destBrowser selectRow:0 
                inColumn:0];
  
}

#pragma mark -

@end