summaryrefslogtreecommitdiffstats
path: root/tdeio/tests/tdetradertest.cpp
blob: 9ce82c49f8b236fa78a2bdd581d85f7bfc7c7e1d (plain)
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
/*
 *  Copyright (C) 2002, 2003 David Faure   <faure@kde.org>
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Library General Public
 *  License version 2 as published by the Free Software Foundation;
 *
 *  This library 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
 *  Library General Public License for more details.
 *
 *  You should have received a copy of the GNU Library General Public License
 *  along with this library; see the file COPYING.LIB.  If not, write to
 *  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 *  Boston, MA 02110-1301, USA.
 */

#include <kcmdlineargs.h>
#include <ktrader.h>
#include <kmimetype.h>
#include <kapplication.h>
#include <stdio.h>

static KCmdLineOptions options[] =
{
  { "+query", "the query", 0 },
  { "+[genericServiceType]", "Application (default), or KParts/ReadOnlyPart", 0 },
  { "+[constraint]", "constraint", 0 },
  { "+[preference]", "preference", 0 },
  KCmdLineLastOption
};

int main( int argc, char **argv )
{
  TDECmdLineArgs::init( argc, argv, "tdetradertest", "TDETradertest", "A TDETrader testing tool", "0.0" );

  TDECmdLineArgs::addCmdLineOptions( options );

  TDEApplication app( false, false ); // no GUI

  TDECmdLineArgs *args = TDECmdLineArgs::parsedArgs();

  if ( args->count() < 1 )
      TDECmdLineArgs::usage();

  TQString query = TQString::fromLocal8Bit( args->arg( 0 ) );

  TQString genericServiceType, constraint, preference;

  if ( args->count() >= 2 )
    genericServiceType = TQString::fromLocal8Bit( args->arg( 1 ) );

  if ( args->count() >= 3 )
    constraint = TQString::fromLocal8Bit( args->arg( 2 ) );

  if ( args->count() == 4 )
    preference = TQString::fromLocal8Bit( args->arg( 3 ) );

  printf( "query is : %s\n", query.local8Bit().data() );
  printf( "genericServiceType is : %s\n", genericServiceType.local8Bit().data() );
  printf( "constraint is : %s\n", constraint.local8Bit().data() );
  printf( "preference is : %s\n", preference.local8Bit().data() );

  TDETrader::OfferList offers = TDETrader::self()->query( query, genericServiceType, constraint, preference );

  printf("got %d offers.\n", offers.count());

  int i = 0;
  TDETrader::OfferList::ConstIterator it = offers.begin();
  TDETrader::OfferList::ConstIterator end = offers.end();
  for (; it != end; ++it, ++i )
  {
    printf("---- Offer %d ----\n", i);
    TQStringList props = (*it)->propertyNames();
    TQStringList::ConstIterator propIt = props.begin();
    TQStringList::ConstIterator propEnd = props.end();
    for (; propIt != propEnd; ++propIt )
    {
      TQVariant prop = (*it)->property( *propIt );

      if ( !prop.isValid() )
      {
        printf("Invalid property %s\n", (*propIt).local8Bit().data());
	continue;
      }

      TQString outp = *propIt;
      outp += " : '";

      switch ( prop.type() )
      {
        case TQVariant::StringList:
          outp += prop.toStringList().join(" - ");
        break;
        case TQVariant::Bool:
          outp += prop.toBool() ? "TRUE" : "FALSE";
          break;
        default:
          outp += prop.toString();
        break;
      }

      if ( !outp.isEmpty() )
        printf("%s'\n", outp.local8Bit().data());
    }
  }
}