//
// $Id$
//
// CMCopyTable.m
// sequel-pro
//
// Created by Stuart Glenn on Wed Apr 21 2004.
// Changed by Lorenz Textor on Sat Nov 13 2004
// Copyright (c) 2004 Stuart Glenn. All rights reserved.
//
// 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.
//
// 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
#import "CMCopyTable.h"
#import "SPArrayAdditions.h"
#import "CMMCPConnection.h"
#import "TableContent.h"
int MENU_EDIT_COPY_WITH_COLUMN = 2001;
int MENU_EDIT_COPY_AS_SQL = 2002;
@implementation CMCopyTable
- (void)copy:(id)sender
{
prefs = [[NSUserDefaults standardUserDefaults] retain];
NSString *tmp = nil;
if([sender tag] == MENU_EDIT_COPY_AS_SQL) {
tmp = [self selectedRowsAsSqlInserts];
if ( nil != tmp )
{
NSPasteboard *pb = [NSPasteboard generalPasteboard];
[pb declareTypes:[NSArray arrayWithObjects: NSStringPboardType, nil]
owner:nil];
[pb setString:tmp forType:NSStringPboardType];
}
} else {
tmp = [self selectedRowsAsTabStringWithHeaders:([sender tag] == MENU_EDIT_COPY_WITH_COLUMN)];
if ( nil != tmp )
{
NSPasteboard *pb = [NSPasteboard generalPasteboard];
[pb declareTypes:[NSArray arrayWithObjects: NSTabularTextPboardType,
NSStringPboardType, nil]
owner:nil];
[pb setString:tmp forType:NSStringPboardType];
[pb setString:tmp forType:NSTabularTextPboardType];
}
}
}
//allow for drag-n-drop out of the application as a copy
- (unsigned int)draggingSourceOperationMaskForLocal:(BOOL)isLocal
{
return NSDragOperationCopy;
}
//only have the copy menu item enabled when row(s) are selected
- (BOOL)validateMenuItem:(NSMenuItem*)anItem
{
if ( [[anItem title] isEqualToString:@"Copy"]
|| [anItem tag] == MENU_EDIT_COPY_WITH_COLUMN )
{
return ([self selectedRow] > -1);
}
if ( [anItem tag] == MENU_EDIT_COPY_AS_SQL )
{
return (columnDefinitions != NULL && [self selectedRow] > -1);
}
return YES;
}
//get selected rows a string of newline separated lines of tab separated fields
//the value in each field is from the objects description method
- (NSString *)selectedRowsAsTabStringWithHeaders:(BOOL)withHeaders
{
if ( [self numberOfSelectedRows] > 0 )
{
NSArray *columns = [self tableColumns];
int numColumns = [columns count];
id dataSource = [self dataSource];
NSMutableString *result = [NSMutableString stringWithCapacity:numColumns];
if(withHeaders) {
int i;
for( i = 0; i < numColumns; i++ ){
[result appendString:[NSString stringWithFormat:@"%@\t", [[NSArrayObjectAtIndex(columns, i) headerCell] stringValue]]];
}
[result appendString:[NSString stringWithFormat:@"\n"]];
}
//this is really deprecated in 10.3, but the new method is really weird
NSEnumerator *enumerator = [self selectedRowEnumerator];
int c;
id row = nil;
id rowData = nil;
NSTableColumn *col = nil;
while (row = [enumerator nextObject])
{
rowData = nil;
for ( c = 0; c < numColumns; c++)
{
col = NSArrayObjectAtIndex(columns, c);
rowData = [dataSource tableView:self
objectValueForTableColumn:col
row:[row intValue] ];
if ( nil != rowData )
{
[result appendString:[NSString stringWithFormat:@"%@\t", [rowData description] ] ];
}
else
{
[result appendString:@"\t"];
}
} //end for each column
if ( [result length] )
{
[result deleteCharactersInRange:NSMakeRange([result length]-1, 1)];
}
[result appendString: [ NSString stringWithFormat:@"\n"]];
} //end for each row
if ( [result length] )
{
[result deleteCharactersInRange:NSMakeRange([result length]-1, 1)];
}
return result;
}
else
{
return nil;
}
}
/*
* Return selected rows as SQL INSERT INTO `foo` VALUES (baz) string.
* If no selected table name is given `
` will be used instead.
*/
- (NSString *)selectedRowsAsSqlInserts
{
if ( [self numberOfSelectedRows] < 1 ) return nil;
NSArray *columns = [self tableColumns];
int numColumns = [columns count];
NSTableColumn *col = nil;
// NSIndexSet *rowIndexes = [self selectedRowIndexes];
NSString *spNULL = [prefs objectForKey:@"NullValue"];
NSMutableString *value = [NSMutableString stringWithCapacity:10];
NSDictionary *dbDataRow;
id enumObj;
id rowData = nil;
id rowEnumObject = nil;
long row;
long rowCounter = 0;
long penultimateRowIndex = [[self selectedRowIndexes] count];
int c;
int valueLength = 0;
NSMutableString *result = [NSMutableString stringWithCapacity:numColumns];
// Create an array of table column names
NSMutableArray *tbHeader = [NSMutableArray arrayWithCapacity:numColumns];
enumerate(columns, enumObj)
[tbHeader addObject:[[enumObj headerCell] stringValue]];
// Create an hash of header name and typegrouping
NSMutableDictionary *headerType = [NSMutableDictionary dictionaryWithCapacity:numColumns];
enumerate(columnDefinitions, enumObj)
[headerType setObject:[enumObj objectForKey:@"typegrouping"] forKey:[enumObj objectForKey:@"name"]];
// Create array of types according to the column order
NSMutableArray *types = [NSMutableArray arrayWithCapacity:numColumns];
enumerate(tbHeader, enumObj)
{
NSString *t = [headerType objectForKey:enumObj];
if([t isEqualToString:@"bit"] || [t isEqualToString:@"integer"] || [t isEqualToString:@"float"])
[types addObject:[NSNumber numberWithInt:0]]; // numeric
else if([t isEqualToString:@"blobdata"])
[types addObject:[NSNumber numberWithInt:2]]; // blob data
else if([t isEqualToString:@"textdata"])
[types addObject:[NSNumber numberWithInt:3]]; // long text data
else
[types addObject:[NSNumber numberWithInt:1]]; // string (fallback coevally)
}
[result appendString:[NSString stringWithFormat:@"INSERT INTO `%@` (%@)\nVALUES\n",
(selectedTable == nil)?@"":selectedTable, [tbHeader componentsJoinedAndBacktickQuoted]]];
//this is really deprecated in 10.3, but the new method is really weird
NSEnumerator *enumerator = [self selectedRowEnumerator];
while ( rowEnumObject = [enumerator nextObject] )
{
[value appendString:@"\t("];
rowData = nil;
row = [rowEnumObject intValue];
rowCounter++;
for ( c = 0; c < numColumns; c++ )
{
col = [columns objectAtIndex:c];
rowData = [[tableData objectAtIndex:row] objectForKey:[tbHeader objectAtIndex:c]];
// Check for NULL value - TODO this is not safe!!
if([[rowData description] isEqualToString:spNULL]){
[value appendString:@"NULL, "];
continue;
}
else if ( rowData != nil ) {
// check column type and insert the data accordingly
switch([[types objectAtIndex:c] intValue]) {
case 0: // numeric
[value appendString:[NSString stringWithFormat:@"%@, ", [rowData description]]];
break;
case 1: // string
[value appendString:[NSString stringWithFormat:@"'%@', ",
[mySQLConnection prepareString:[rowData description]]]];
break;
case 2: // blob
if ([prefs boolForKey:@"LoadBlobsAsNeeded"]) {
// Abort if there are no indices on this table or if there's no table name given.
if (![[tableInstance argumentForRow:row] length] || selectedTable == nil)
return nil;
//if we have indexes, use argumentForRow
dbDataRow = [[mySQLConnection queryString:
[NSString stringWithFormat:@"SELECT * FROM `%@` WHERE %@",
selectedTable, [tableInstance argumentForRow:row]]] fetchRowAsDictionary];
if([[dbDataRow objectForKey:[tbHeader objectAtIndex:c]] isKindOfClass:[NSNull class]])
[value appendString:@"NULL, "];
else
[value appendString:[NSString stringWithFormat:@"X'%@', ",
[mySQLConnection prepareBinaryData:[dbDataRow objectForKey:[tbHeader objectAtIndex:c]]]]];
} else {
[value appendString:[NSString stringWithFormat:@"X'%@', ", [mySQLConnection prepareBinaryData:rowData]]];
}
break;
case 3: // long text data
if ([prefs boolForKey:@"LoadBlobsAsNeeded"]) {
// Abort if there are no indices on this table or if there's no table name given.
if (![[tableInstance argumentForRow:row] length] || selectedTable == nil)
return nil;
//if we have indexes, use argumentForRow
dbDataRow = [[mySQLConnection queryString:
[NSString stringWithFormat:@"SELECT * FROM `%@` WHERE %@",
selectedTable, [tableInstance argumentForRow:row]]] fetchRowAsDictionary];
if([[dbDataRow objectForKey:[tbHeader objectAtIndex:c]] isKindOfClass:[NSNull class]])
[value appendString:@"NULL, "];
else
[value appendString:[NSString stringWithFormat:@"'%@', ",
[mySQLConnection prepareString:[[dbDataRow objectForKey:[tbHeader objectAtIndex:c]] description]]]];
} else {
[value appendString:[NSString stringWithFormat:@"'%@', ",
[[rowData description] stringByReplacingOccurrencesOfString:@"'" withString:@"\\'"] ] ];
}
break;
default:
return nil;
}
}
else
// TODO is this necessary? or better to return nil?
[value appendString:@"'', "];
} //end for each column
// delete last ', '
if ( [value length] > 2 )
[value deleteCharactersInRange:NSMakeRange([value length]-2, 2)];
valueLength += [value length];
// Close this VALUES group and set up the next one if appropriate
if ( rowCounter != penultimateRowIndex ) {
// Add a new INSERT starter command every ~250k of data.
if ( valueLength > 250000 ) {
[result appendString:value];
[result appendString:[NSString stringWithFormat:@");\n\nINSERT INTO `%@` (%@)\nVALUES\n",
(selectedTable == nil)?@"":selectedTable, [tbHeader componentsJoinedAndBacktickQuoted]]];
[value setString:@""];
valueLength = 0;
} else {
[value appendString:@"),\n"];
}
} else {
[value appendString:@"),\n"];
[result appendString:value];
}
// next selected row
// row = [rowIndexes indexGreaterThanIndex: row];
} //end for each row
// delete last ",/n"
if ( [result length] > 3 )
[result deleteCharactersInRange:NSMakeRange([result length]-2, 2)];
[result appendString:@";\n"];
return result;
}
//get dragged rows a string of newline separated lines of tab separated fields
//the value in each field is from the objects description method
- (NSString *)draggedRowsAsTabString:(NSArray *)rows
{
if ( [rows count] > 0 )
{
NSArray *columns = [self tableColumns];
int numColumns = [columns count];
id dataSource = [self dataSource];
NSMutableString *result = [NSMutableString stringWithCapacity:numColumns];
//this is really deprecated in 10.3, but the new method is really weird
NSEnumerator *enumerator = [rows objectEnumerator];
int c;
id row = nil;
id rowData = nil;
NSTableColumn *col = nil;
while (row = [enumerator nextObject])
{
rowData = nil;
for ( c = 0; c < numColumns; c++)
{
col = [columns objectAtIndex:c];
rowData = [dataSource tableView:self
objectValueForTableColumn:col
row:[row intValue] ];
if ( nil != rowData )
{
[result appendString:[NSString stringWithFormat:@"%@\t", [rowData description] ] ];
}
else
{
[result appendString:@"\t"];
}
} //end for each column
if ( [result length] )
{
[result deleteCharactersInRange:NSMakeRange([result length]-1, 1)];
}
[result appendString: [ NSString stringWithFormat:@"\n"]];
} //end for each row
if ( [result length] )
{
[result deleteCharactersInRange:NSMakeRange([result length]-1, 1)];
}
return result;
}
else
{
return nil;
}
}
/*
* Init self with data coming from the table content view. Mainly used for copying data properly.
*/
- (void)setTableInstance:(id)anInstance withTableData:(id)theTableData withColumns:(NSArray *)columnDefs withTableName:(NSString *)aTableName withConnection:(id)aMySqlConnection
{
columnDefinitions = [[NSArray arrayWithArray:columnDefs] retain];
selectedTable = aTableName;
tableData = theTableData;
mySQLConnection = aMySqlConnection;
tableInstance = anInstance;
}
@end