~sethj/ubuntu/wily/unity/fix-for-1445595

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
// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*-
/*
 * Copyright (C) 2013 Canonical Ltd
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 3 as
 * published by the Free Software Foundation.
 *
 * 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, see <http://www.gnu.org/licenses/>.
 *
 * Authored by: Nick Dedekind <nick.dedekind@canonical.com>
 */


#include "ScopeData.h"
#include <unity-protocol.h>
#include <NuxCore/Logger.h>

#include "GLibWrapper.h"

namespace unity
{
namespace dash
{

namespace
{
  static void safe_delete_scope_metadata(UnityProtocolScopeRegistryScopeMetadata* data)
  {
    if (!data) return;
    unity_protocol_scope_registry_scope_metadata_unref(data);
  }
}

ScopeData::ScopeData()
: visible(true)
{
}

ScopeData::Ptr ScopeData::ReadProtocolDataForId(std::string const& scope_id, glib::Error& error)
{
  ScopeData::Ptr data(new ScopeData());

  std::shared_ptr<UnityProtocolScopeRegistryScopeMetadata> meta_data(unity_protocol_scope_registry_scope_metadata_for_id(scope_id.c_str(), &error),
                                                                     safe_delete_scope_metadata);

  if (error)
  {
    data->id = scope_id;
  }
  else if (meta_data)
  {
    data->dbus_name = glib::gchar_to_string(meta_data->dbus_name);
    data->dbus_path = glib::gchar_to_string(meta_data->dbus_path);

    data->id = glib::gchar_to_string(meta_data->id);
    data->full_path = glib::gchar_to_string(meta_data->full_path);
    data->name = glib::gchar_to_string(meta_data->name);
    data->icon_hint = glib::gchar_to_string(meta_data->icon);
    data->category_icon_hint = glib::gchar_to_string(meta_data->category_icon);
    data->type = meta_data->type;
    data->description = glib::gchar_to_string(meta_data->description);
    data->shortcut = glib::gchar_to_string(meta_data->shortcut);
    data->search_hint = glib::gchar_to_string(meta_data->search_hint);
    data->is_master = meta_data->is_master;
    data->query_pattern = glib::gchar_to_string(meta_data->query_pattern);

    std::vector<std::string> keywords;
    if (meta_data->keywords)
    {
      for (GSList* v = meta_data->keywords; v; v = g_slist_next(v))
      {
        std::string value = glib::gchar_to_string(static_cast<gchar*>(v->data));
        if (value.empty())
          continue;

        keywords.push_back(value);
      }
    }
    data->keywords = keywords;
  }
  return data;
}

}
}