295022ac9aca01b19b2501e7db1bab9d9fa42d77
[ardour.git] / gtk2_ardour / nsm.cc
1
2 /*******************************************************************************/
3 /* Copyright (C) 2012 Jonathan Moore Liles                                     */
4 /*                                                                             */
5 /* This program is free software; you can redistribute it and/or modify it     */
6 /* under the terms of the GNU General Public License as published by the       */
7 /* Free Software Foundation; either version 2 of the License, or (at your      */
8 /* option) any later version.                                                  */
9 /*                                                                             */
10 /* This program is distributed in the hope that it will be useful, but WITHOUT */
11 /* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or       */
12 /* FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for   */
13 /* more details.                                                               */
14 /*                                                                             */
15 /* You should have received a copy of the GNU General Public License along     */
16 /* with This program; see the file COPYING.  If not,write to the Free Software */
17 /* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
18 /*******************************************************************************/
19
20
21 #include "nsm.h"
22 #include "opts.h"
23 #include "ardour_ui.h"
24
25 #include <stdio.h>
26 #include <sys/stat.h>
27 #include <sys/types.h>
28 #include <unistd.h>
29
30
31 NSM_Client::NSM_Client()
32 {
33 }
34
35 int
36 NSM_Client::command_save(char **out_msg)
37 {
38     (void) out_msg;
39
40     ARDOUR_UI::instance()->save_state();
41     int r = ERR_OK;
42
43     return r;
44 }
45
46 int
47 NSM_Client::command_open(const char *name,
48                          const char *display_name,
49                          const char *client_id,
50                          char **out_msg)
51 {
52     int r = ERR_OK;
53     struct stat buffer;
54
55     ARDOUR_COMMAND_LINE::new_session = true;
56     ARDOUR_COMMAND_LINE::session_name = name;
57     ARDOUR_COMMAND_LINE::jack_client_name = client_id;
58
59     int f = stat(name, &buffer);
60
61     if (f == 0 && S_ISDIR(buffer.st_mode))
62     {
63         ARDOUR_COMMAND_LINE::new_session = false;
64     }
65
66     return r;
67 }