From: Gowtham Anandha Babu <gowtham.ab@samsung.com>
To: 'Luiz Augusto von Dentz' <luiz.dentz@gmail.com>
Cc: linux-bluetooth@vger.kernel.org,
'Bharat Panda' <bharat.panda@samsung.com>
Subject: RE: [PATCH ] tools/obexctl: Add support for pull Vobjects
Date: Mon, 15 Jun 2015 17:50:38 +0530 [thread overview]
Message-ID: <000901d0a765$bdbf49f0$393dddd0$@samsung.com> (raw)
In-Reply-To: <CABBYNZ+sN_io5bx_zOW-1wY61OU6=Wr5CgFxxSQnj-=VV6iROw@mail.gmail.com>
Hi Luiz,
> -----Original Message-----
> From: linux-bluetooth-owner@vger.kernel.org [mailto:linux-bluetooth-
> owner@vger.kernel.org] On Behalf Of Luiz Augusto von Dentz
> Sent: Monday, June 15, 2015 4:04 PM
> To: Gowtham Anandha Babu
> Cc: linux-bluetooth@vger.kernel.org; Bharat Panda
> Subject: Re: [PATCH ] tools/obexctl: Add support for pull Vobjects
>
> Hi Gowtham,
>
> On Fri, Jun 12, 2015 at 2:20 PM, Gowtham Anandha Babu
> <gowtham.ab@samsung.com> wrote:
> > Ping.
> >
> >> -----Original Message-----
> >> From: linux-bluetooth-owner@vger.kernel.org [mailto:linux-bluetooth-
> >> owner@vger.kernel.org] On Behalf Of Gowtham Anandha Babu
> >> Sent: Wednesday, June 10, 2015 12:07 PM
> >> To: linux-bluetooth@vger.kernel.org
> >> Cc: bharat.panda@samsung.com; Gowtham Anandha Babu
> >> Subject: [PATCH ] tools/obexctl: Add support for pull Vobjects
> >>
> >> PullBusinessCard from remote push server.
> >>
> >> [obex]# connect 00:1B:DC:07:33:4E
> >> 00001105-0000-1000-8000-00805f9b34fb
> >> Attempting to connect to 00:1B:DC:07:33:4E [NEW] Session
> >> /org/bluez/obex/client/session0 [default] [NEW] ObjectPush
> >> /org/bluez/obex/client/session0 Connection successful
> >> [00:1B:DC:07:33:4E]# pull /home/vcard.vcf Attempting to pull
> >> /home/vcard.vcf from
> >> /org/bluez/obex/client/session0 [NEW] Transfer
> >> /org/bluez/obex/client/session0/transfer0
> >> Transfer /org/bluez/obex/client/session0/transfer0
> >> Status: queued
> >> Size: 0
> >> Filename: /home/vcard.vcf
> >> Session: /org/bluez/obex/client/session0 [CHG] Transfer
> >> /org/bluez/obex/client/session0/transfer0 Status: complete [DEL]
> >> Transfer
> >> /org/bluez/obex/client/session0/transfer0
> >> [DEL] Session /org/bluez/obex/client/session0 [default] [DEL]
> >> ObjectPush
> >> /org/bluez/obex/client/session0
> >> ---
> >> tools/obexctl.c | 36 +++++++++++++++++++++++++++++++++++-
> >> 1 file changed, 35 insertions(+), 1 deletion(-)
> >>
> >> diff --git a/tools/obexctl.c b/tools/obexctl.c index 4faff6b..79c0821
> > 100644
> >> --- a/tools/obexctl.c
> >> +++ b/tools/obexctl.c
> >> @@ -758,7 +758,7 @@ static void send_reply(DBusMessage *message,
> void
> >> *user_data)
> >> dbus_error_init(&error);
> >>
> >> if (dbus_set_error_from_message(&error, message) == TRUE) {
> >> - rl_printf("Failed to send: %s\n", error.name);
> >> + rl_printf("Failed to send/pull: %s\n", error.name);
> >> dbus_error_free(&error);
> >> return;
> >> }
> >> @@ -792,6 +792,23 @@ static void opp_send(GDBusProxy *proxy, int
> >> argc, char *argv[])
> >>
> >> g_dbus_proxy_get_path(proxy));
> >> }
> >>
> >> +static void opp_pull(GDBusProxy *proxy, int argc, char *argv[]) {
> >> + if (argc < 2) {
> >> + rl_printf("Missing file argument\n");
> >> + return;
> >> + }
> >> +
> >> + if (g_dbus_proxy_method_call(proxy, "PullBusinessCard",
> >> send_setup, send_reply,
> >> + g_strdup(argv[1]), g_free) ==
> >> + FALSE)
> >> {
> >> + rl_printf("Failed to pull\n");
> >> + return;
> >> + }
> >> +
> >> + rl_printf("Attempting to pull %s from %s\n", argv[1],
> >> +
> >> g_dbus_proxy_get_path(proxy));
> >> +}
> >> +
> >> static void push_reply(DBusMessage *message, void *user_data) {
> >> DBusMessageIter iter;
> >> @@ -869,6 +886,22 @@ static void cmd_send(int argc, char *argv[])
> >> rl_printf("Command not supported\n"); }
> >>
> >> +static void cmd_pull(int argc, char *argv[]) {
> >> + GDBusProxy *proxy;
> >> +
> >> + if (!check_default_session())
> >> + return;
> >> +
> >> + proxy = find_opp(g_dbus_proxy_get_path(default_session));
> >> + if (proxy) {
> >> + opp_pull(proxy, argc, argv);
> >> + return;
> >> + }
> >> +
> >> + rl_printf("Command not supported\n"); }
> >> +
> >> static void change_folder_reply(DBusMessage *message, void
> >> *user_data) {
> >> DBusError error;
> >> @@ -1979,6 +2012,7 @@ static const struct {
> >> { "suspend", "<transfer>", cmd_suspend, "Suspend transfer" },
> >> { "resume", "<transfer>", cmd_resume, "Resume transfer" },
> >> { "send", "<file>", cmd_send, "Send file" },
> >> + { "pull", "<file>", cmd_pull, "Pull Vobject & store in
> > file" },
> >> { "cd", "<path>", cmd_cd, "Change current folder" },
> >> { "ls", "<options>", cmd_ls, "List current folder" },
> >> { "cp", "<source file> <destination file>", cmd_cp,
> >> --
> >> 1.9.1
> >>
> >> --
> >> To unsubscribe from this list: send the line "unsubscribe linux-bluetooth"
> > in
> >> the body of a message to majordomo@vger.kernel.org More majordomo
> >> info at http://vger.kernel.org/majordomo-info.html
> >
> > --
> > To unsubscribe from this list: send the line "unsubscribe
> > linux-bluetooth" in the body of a message to majordomo@vger.kernel.org
> > More majordomo info at http://vger.kernel.org/majordomo-info.html
>
> Applying: tools/obexctl: Add support for pull Vobjects
> WARNING:LONG_LINE: line over 80 characters
> #25: FILE: tools/obexctl.c:802:
> + if (g_dbus_proxy_method_call(proxy, "PullBusinessCard", send_setup,
> send_reply,
>
> WARNING:LONG_LINE: line over 80 characters
> #65: FILE: tools/obexctl.c:2015:
> + { "pull", "<file>", cmd_pull, "Pull Vobject & store in file" },
>
> total: 0 errors, 2 warnings, 60 lines checked
>
> Please fix these.
>
I have raised a v2 after removing the above warnings.
> --
> Luiz Augusto von Dentz
> --
Regards,
Gowtham Anandha Babu
prev parent reply other threads:[~2015-06-15 12:20 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-06-10 6:36 [PATCH ] tools/obexctl: Add support for pull Vobjects Gowtham Anandha Babu
2015-06-12 11:20 ` Gowtham Anandha Babu
2015-06-15 10:34 ` Luiz Augusto von Dentz
2015-06-15 12:20 ` Gowtham Anandha Babu [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='000901d0a765$bdbf49f0$393dddd0$@samsung.com' \
--to=gowtham.ab@samsung.com \
--cc=bharat.panda@samsung.com \
--cc=linux-bluetooth@vger.kernel.org \
--cc=luiz.dentz@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.