ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/BOSS/BossPython/BossSession_wrap.cxx
(Generate patch)

Comparing COMP/BOSS/BossPython/BossSession_wrap.cxx (file contents):
Revision 1.7 by gcodispo, Fri Oct 27 13:36:09 2006 UTC vs.
Revision 1.16 by gcodispo, Thu Nov 30 15:29:48 2006 UTC

# Line 654 | Line 654 | SWIG_InstallConstants(PyObject *d, swig_
654  
655   /* -------- TYPES TABLE (BEGIN) -------- */
656  
657 < #define  SWIGTYPE_p_XMLDoc swig_types[0]
658 < #define  SWIGTYPE_p_std__vectorTstd__pairTBossProgram_BossProgramExec_t_t swig_types[1]
659 < #define  SWIGTYPE_p_std__vectorTstd__pairTBossProgram_BossProgramExec_t_t__const_iterator swig_types[2]
660 < #define  SWIGTYPE_p_std__mapTstd__string_std__mapTstd__string_std__string_t_t swig_types[3]
661 < #define  SWIGTYPE_p_BossTask swig_types[4]
662 < #define  SWIGTYPE_p_BossTaskException swig_types[5]
663 < #define  SWIGTYPE_p_std__ostream swig_types[6]
664 < #define  SWIGTYPE_p_BossAttributeContainer swig_types[7]
665 < #define  SWIGTYPE_p_printOption swig_types[8]
666 < #define  SWIGTYPE_p_BossJob swig_types[9]
667 < #define  SWIGTYPE_p_BossDatabase swig_types[10]
668 < #define  SWIGTYPE_p_BossSession swig_types[11]
669 < #define  SWIGTYPE_p_std__vectorTstd__string_t swig_types[12]
670 < #define  SWIGTYPE_p_std__mapTstd__string_std__string_t swig_types[13]
671 < #define  SWIGTYPE_p_BossAdministratorSession swig_types[14]
672 < #define  SWIGTYPE_p_BossTask__job_iterator swig_types[15]
673 < #define  SWIGTYPE_p_std__vectorTBossJob_p_t__const_iterator swig_types[16]
674 < #define  SWIGTYPE_p_jobStates swig_types[17]
675 < static swig_type_info *swig_types[19];
657 > #define  SWIGTYPE_p_std__vectorTstd__pairTBossProgram_BossProgramExec_t_t swig_types[0]
658 > #define  SWIGTYPE_p_std__vectorTstd__pairTBossProgram_BossProgramExec_t_t__const_iterator swig_types[1]
659 > #define  SWIGTYPE_p_XMLDoc swig_types[2]
660 > #define  SWIGTYPE_p_std__vectorTBossTask_p_t swig_types[3]
661 > #define  SWIGTYPE_p_std__mapTstd__string_std__mapTstd__string_std__string_t_t swig_types[4]
662 > #define  SWIGTYPE_p_BossTask swig_types[5]
663 > #define  SWIGTYPE_p_BossTaskException swig_types[6]
664 > #define  SWIGTYPE_p_std__ostream swig_types[7]
665 > #define  SWIGTYPE_p_BossAttributeContainer swig_types[8]
666 > #define  SWIGTYPE_p_printOption swig_types[9]
667 > #define  SWIGTYPE_p_BossJob swig_types[10]
668 > #define  SWIGTYPE_p_BossDatabase swig_types[11]
669 > #define  SWIGTYPE_p_BossSession swig_types[12]
670 > #define  SWIGTYPE_p_std__vectorTstd__string_t swig_types[13]
671 > #define  SWIGTYPE_p_std__mapTstd__string_std__string_t swig_types[14]
672 > #define  SWIGTYPE_p_BossAdministratorSession swig_types[15]
673 > #define  SWIGTYPE_p_BossTask__job_iterator swig_types[16]
674 > #define  SWIGTYPE_p_std__vectorTBossJob_p_t__const_iterator swig_types[17]
675 > #define  SWIGTYPE_p_jobStates swig_types[18]
676 > static swig_type_info *swig_types[20];
677  
678   /* -------- TYPES TABLE (END) -------- */
679  
# Line 850 | Line 851 | PyObject *std_maplstd_stringcstd_string_
851                                           " for iterator support");
852                  #endif
853              }
854 + std::string std_vectorlstd_string_g_pop___(std::vector<std::string > *self){
855 +                if (self->size() == 0)
856 +                    throw std::out_of_range("pop from empty vector");
857 +                std::string x = self->back();
858 +                self->pop_back();
859 +                return x;
860 +            }
861 + std::string std_vectorlstd_string_g___getitem_____(std::vector<std::string > *self,int i){
862 +                int size = int(self->size());
863 +                if (i<0) i += size;
864 +                if (i>=0 && i<size)
865 +                    return (*self)[i];
866 +                else
867 +                    throw std::out_of_range("vector index out of range");
868 +            }
869 + std::vector<std::string > std_vectorlstd_string_g___getslice_____(std::vector<std::string > *self,int i,int j){
870 +                int size = int(self->size());
871 +                if (i<0) i = size+i;
872 +                if (j<0) j = size+j;
873 +                if (i<0) i = 0;
874 +                if (j>size) j = size;
875 +                std::vector<std::string > tmp(j-i);
876 +                std::copy(self->begin()+i,self->begin()+j,tmp.begin());
877 +                return tmp;
878 +            }
879 + void std_vectorlstd_string_g___setitem_____(std::vector<std::string > *self,int i,std::string x){
880 +                int size = int(self->size());
881 +                if (i<0) i+= size;
882 +                if (i>=0 && i<size)
883 +                    (*self)[i] = x;
884 +                else
885 +                    throw std::out_of_range("vector index out of range");
886 +            }
887 + void std_vectorlstd_string_g___setslice_____(std::vector<std::string > *self,int i,int j,std::vector<std::string > const &v){
888 +                int size = int(self->size());
889 +                if (i<0) i = size+i;
890 +                if (j<0) j = size+j;
891 +                if (i<0) i = 0;
892 +                if (j>size) j = size;
893 +                if (int(v.size()) == j-i) {
894 +                    std::copy(v.begin(),v.end(),self->begin()+i);
895 +                } else {
896 +                    self->erase(self->begin()+i,self->begin()+j);
897 +                    if (i+1 <= int(self->size()))
898 +                        self->insert(self->begin()+i,v.begin(),v.end());
899 +                    else
900 +                        self->insert(self->end(),v.begin(),v.end());
901 +                }
902 +            }
903 + void std_vectorlstd_string_g___delitem_____(std::vector<std::string > *self,int i){
904 +                int size = int(self->size());
905 +                if (i<0) i+= size;
906 +                if (i>=0 && i<size)
907 +                    self->erase(self->begin()+i);
908 +                else
909 +                    throw std::out_of_range("vector index out of range");
910 +            }
911 + void std_vectorlstd_string_g___delslice_____(std::vector<std::string > *self,int i,int j){
912 +                int size = int(self->size());
913 +                if (i<0) i = size+i;
914 +                if (j<0) j = size+j;
915 +                if (i<0) i = 0;
916 +                if (j>size) j = size;
917 +                self->erase(self->begin()+i,self->begin()+j);
918 +            }
919  
920   #include "BossSession.h"
921   #include "BossAdministratorSession.h"
# Line 871 | Line 937 | PyObject *BossSession_show(BossSession *
937      }
938      return my_list;
939    }
940 < PyObject *BossSession_showCHTools__SWIG_1(BossSession *self){
940 > PyObject *BossSession_CHTools(BossSession *self){
941      std::vector<std::string> my_vec = self->showCHTools();
942      return BossSession_show( self, my_vec );
943    }
944 < PyObject *BossSession_showProgramTypes__SWIG_1(BossSession *self){
944 > PyObject *BossSession_ProgramTypes(BossSession *self){
945      std::vector<std::string> my_vec = self->showProgramTypes();
946      return BossSession_show( self, my_vec );
947    }
948 < PyObject *BossSession_showRTMon__SWIG_1(BossSession *self){
948 > PyObject *BossSession_RTMons(BossSession *self){
949      std::vector<std::string> my_vec = self->showRTMon();
950      return BossSession_show( self, my_vec );
951    }
952 < PyObject *BossSession_showSchedulers__SWIG_1(BossSession *self){
952 > PyObject *BossSession_schedulers(BossSession *self){
953      std::vector<std::string> my_vec = self->showSchedulers();
954      return BossSession_show( self, my_vec );
955    }
956 + PyObject *BossSession_schedListMatch(BossSession *self,std::string const &scheduler,std::string const &schclassad,std::string const &taskid,std::string const &jobid,bool keepfile){
957 +    std::vector<std::string> my_vec = self->listMatch( scheduler,
958 +                                                       schclassad,
959 +                                                       keepfile,
960 +                                                       taskid,
961 +                                                       jobid);
962 +    return BossSession_show( self, my_vec );
963 +  }
964   PyObject *BossSession_queryTasks(BossSession *self,int filter_opt,std::string const &taskRange,std::string const &jobRange,std::string const &subn,std::string type,std::string user,std::string after,std::string before,bool avoidCheck){
965         if ( !avoidCheck ) {
966           self->schedulerQuery ( filter_opt, taskRange, jobRange, subn,
# Line 899 | Line 973 | PyObject *BossSession_queryTasks(BossSes
973              it!= taskList.end(); ++it ) {
974           PyList_Append( job_dict,  PyString_FromString(it->c_str() ) );
975        }
902      
903 //       int size = taskList.size();
904 //       PyObject * job_dict = PyList_New(0);
905 //       for ( unsigned int i = 0; i < size; ++i ) {
906 //      PyList_SetItem(job_dict,i, );
907 //      self->makeBossTask( *it );
908 //       }
976         return  job_dict;
977       }
978   PyObject *BossTask_appendToPyDict(BossTask const *self,PyObject *dict,BossAttributeContainer const &obj){
# Line 945 | Line 1012 | PyObject *BossTask_jobDict(BossTask cons
1012      }
1013      return job_dict;
1014    }
1015 < PyObject *BossTask_jobsMap__SWIG_1(BossTask const *self){
1015 > PyObject *BossTask_jobsDict(BossTask *self){
1016    
1017      PyObject * job_dict = PyDict_New();
1018 +    if ( self->job_begin () == self->job_end ()) self->load(ALL);
1019      for (BossTask::job_iterator jit = self->job_begin ();
1020           jit != self->job_end (); ++jit) {
1021        std::string id = (*jit)->chainId();
# Line 1533 | Line 1601 | static PyObject * objectMap_swigregister
1601      Py_INCREF(obj);
1602      return Py_BuildValue((char *)"");
1603   }
1604 < static PyObject *_wrap_BossSession_show(PyObject *self, PyObject *args) {
1604 > static PyObject *_wrap_new_vector_string__SWIG_0(PyObject *self, PyObject *args) {
1605      PyObject *resultobj;
1606 <    BossSession *arg1 = (BossSession *) 0 ;
1607 <    std::vector<std::string > *arg2 = 0 ;
1608 <    PyObject *result;
1606 >    unsigned int arg1 = (unsigned int) 0 ;
1607 >    std::vector<std::string > *result;
1608 >    PyObject * obj0 = 0 ;
1609 >    
1610 >    if(!PyArg_ParseTuple(args,(char *)"|O:new_vector_string",&obj0)) goto fail;
1611 >    if (obj0) {
1612 >        arg1 = (unsigned int) PyInt_AsLong(obj0);
1613 >        if (PyErr_Occurred()) SWIG_fail;
1614 >    }
1615 >    {
1616 >        try {
1617 >            result = (std::vector<std::string > *)new std::vector<std::string >(arg1);
1618 >            
1619 >        }catch (const std::exception& e) {
1620 >            SWIG_exception(SWIG_RuntimeError, e.what());
1621 >        }
1622 >    }
1623 >    resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_std__vectorTstd__string_t, 1);
1624 >    return resultobj;
1625 >    fail:
1626 >    return NULL;
1627 > }
1628 >
1629 >
1630 > static PyObject *_wrap_new_vector_string__SWIG_1(PyObject *self, PyObject *args) {
1631 >    PyObject *resultobj;
1632 >    unsigned int arg1 ;
1633 >    std::string *arg2 = 0 ;
1634 >    std::vector<std::string > *result;
1635 >    std::string temp2 ;
1636      PyObject * obj0 = 0 ;
1637      PyObject * obj1 = 0 ;
1638      
1639 <    if(!PyArg_ParseTuple(args,(char *)"OO:BossSession_show",&obj0,&obj1)) goto fail;
1640 <    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossSession,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1641 <    if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_std__vectorTstd__string_t,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1642 <    if (arg2 == NULL) {
1643 <        PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
1639 >    if(!PyArg_ParseTuple(args,(char *)"OO:new_vector_string",&obj0,&obj1)) goto fail;
1640 >    arg1 = (unsigned int) PyInt_AsLong(obj0);
1641 >    if (PyErr_Occurred()) SWIG_fail;
1642 >    {
1643 >        if (PyString_Check(obj1)) {
1644 >            temp2 = std::string(PyString_AsString(obj1));
1645 >            arg2 = &temp2;
1646 >        }else {
1647 >            SWIG_exception(SWIG_TypeError, "string expected");
1648 >        }
1649      }
1650      {
1651          try {
1652 <            result = (PyObject *)BossSession_show(arg1,*arg2);
1652 >            result = (std::vector<std::string > *)new std::vector<std::string >(arg1,(std::string const &)*arg2);
1653              
1654          }catch (const std::exception& e) {
1655              SWIG_exception(SWIG_RuntimeError, e.what());
1656          }
1657      }
1658 <    resultobj = result;
1658 >    resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_std__vectorTstd__string_t, 1);
1659      return resultobj;
1660      fail:
1661      return NULL;
1662   }
1663  
1664  
1665 < static PyObject *_wrap_BossSession_showCHTools__SWIG_1(PyObject *self, PyObject *args) {
1665 > static PyObject *_wrap_new_vector_string__SWIG_2(PyObject *self, PyObject *args) {
1666      PyObject *resultobj;
1667 <    BossSession *arg1 = (BossSession *) 0 ;
1668 <    PyObject *result;
1667 >    std::vector<std::string > *arg1 = 0 ;
1668 >    std::vector<std::string > *result;
1669 >    std::vector<std::string > temp1 ;
1670 >    std::vector<std::string > *v1 ;
1671      PyObject * obj0 = 0 ;
1672      
1673 <    if(!PyArg_ParseTuple(args,(char *)"O:BossSession_showCHTools",&obj0)) goto fail;
1674 <    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossSession,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1673 >    if(!PyArg_ParseTuple(args,(char *)"O:new_vector_string",&obj0)) goto fail;
1674 >    {
1675 >        if (PyTuple_Check(obj0) || PyList_Check(obj0)) {
1676 >            unsigned int size = (PyTuple_Check(obj0) ?
1677 >            PyTuple_Size(obj0) :
1678 >            PyList_Size(obj0));
1679 >            temp1 = std::vector<std::string >(size);
1680 >            arg1 = &temp1;
1681 >            for (unsigned int i=0; i<size; i++) {
1682 >                PyObject* o = PySequence_GetItem(obj0,i);
1683 >                if (PyString_Check(o)) {
1684 >                    temp1[i] = (std::string)(\
1685 >                    SwigString_AsString(o));
1686 >                    Py_DECREF(o);
1687 >                }else {
1688 >                    Py_DECREF(o);
1689 >                    PyErr_SetString(PyExc_TypeError,
1690 >                    "vector<""std::string""> expected");
1691 >                    SWIG_fail;
1692 >                }
1693 >            }
1694 >        }else if (SWIG_ConvertPtr(obj0,(void **) &v1,
1695 >        SWIGTYPE_p_std__vectorTstd__string_t,1) != -1){
1696 >            arg1 = v1;
1697 >        }else {
1698 >            PyErr_SetString(PyExc_TypeError,"vector<""std::string" "> expected");
1699 >            SWIG_fail;
1700 >        }
1701 >    }
1702      {
1703          try {
1704 <            result = (PyObject *)BossSession_showCHTools__SWIG_1(arg1);
1704 >            result = (std::vector<std::string > *)new std::vector<std::string >((std::vector<std::string > const &)*arg1);
1705              
1706          }catch (const std::exception& e) {
1707              SWIG_exception(SWIG_RuntimeError, e.what());
1708          }
1709      }
1710 <    resultobj = result;
1710 >    resultobj = SWIG_NewPointerObj((void *) result, SWIGTYPE_p_std__vectorTstd__string_t, 1);
1711      return resultobj;
1712      fail:
1713      return NULL;
1714   }
1715  
1716  
1717 < static PyObject *_wrap_BossSession_showCHTools(PyObject *self, PyObject *args) {
1717 > static PyObject *_wrap_new_vector_string(PyObject *self, PyObject *args) {
1718      int argc;
1719 <    PyObject *argv[2];
1719 >    PyObject *argv[3];
1720      int ii;
1721      
1722      argc = PyObject_Length(args);
1723 <    for (ii = 0; (ii < argc) && (ii < 1); ii++) {
1723 >    for (ii = 0; (ii < argc) && (ii < 2); ii++) {
1724          argv[ii] = PyTuple_GetItem(args,ii);
1725      }
1726 +    if ((argc >= 0) && (argc <= 1)) {
1727 +        int _v;
1728 +        if (argc <= 0) {
1729 +            return _wrap_new_vector_string__SWIG_0(self,args);
1730 +        }
1731 +        {
1732 +            _v = (PyInt_Check(argv[0]) || PyLong_Check(argv[0])) ? 1 : 0;
1733 +        }
1734 +        if (_v) {
1735 +            return _wrap_new_vector_string__SWIG_0(self,args);
1736 +        }
1737 +    }
1738      if (argc == 1) {
1739          int _v;
1740          {
1741 <            void *ptr;
1742 <            if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_BossSession, 0) == -1) {
1743 <                _v = 0;
1744 <                PyErr_Clear();
1741 >            /* native sequence? */
1742 >            if (PyTuple_Check(argv[0]) || PyList_Check(argv[0])) {
1743 >                unsigned int size = (PyTuple_Check(argv[0]) ?
1744 >                PyTuple_Size(argv[0]) :
1745 >                PyList_Size(argv[0]));
1746 >                if (size == 0) {
1747 >                    /* an empty sequence can be of any type */
1748 >                    _v = 1;
1749 >                }else {
1750 >                    /* check the first element only */
1751 >                    PyObject* o = PySequence_GetItem(argv[0],0);
1752 >                    if (PyString_Check(o))
1753 >                    _v = 1;
1754 >                    else
1755 >                    _v = 0;
1756 >                    Py_DECREF(o);
1757 >                }
1758              }else {
1759 +                /* wrapped vector? */
1760 +                std::vector<std::string >* v;
1761 +                if (SWIG_ConvertPtr(argv[0],(void **) &v,
1762 +                SWIGTYPE_p_std__vectorTstd__string_t,0) != -1)
1763                  _v = 1;
1764 +                else
1765 +                _v = 0;
1766              }
1767          }
1768          if (_v) {
1769 <            return _wrap_BossSession_showCHTools__SWIG_1(self,args);
1769 >            return _wrap_new_vector_string__SWIG_2(self,args);
1770 >        }
1771 >    }
1772 >    if (argc == 2) {
1773 >        int _v;
1774 >        {
1775 >            _v = (PyInt_Check(argv[0]) || PyLong_Check(argv[0])) ? 1 : 0;
1776 >        }
1777 >        if (_v) {
1778 >            {
1779 >                _v = PyString_Check(argv[1]) ? 1 : 0;
1780 >            }
1781 >            if (_v) {
1782 >                return _wrap_new_vector_string__SWIG_1(self,args);
1783 >            }
1784          }
1785      }
1786      
1787 <    PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'BossSession_showCHTools'");
1787 >    PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'new_vector_string'");
1788      return NULL;
1789   }
1790  
1791  
1792 < static PyObject *_wrap_BossSession_showProgramTypes__SWIG_1(PyObject *self, PyObject *args) {
1792 > static PyObject *_wrap_vector_string___len__(PyObject *self, PyObject *args) {
1793      PyObject *resultobj;
1794 <    BossSession *arg1 = (BossSession *) 0 ;
1795 <    PyObject *result;
1794 >    std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ;
1795 >    unsigned int result;
1796 >    std::vector<std::string > temp1 ;
1797 >    std::vector<std::string > *v1 ;
1798      PyObject * obj0 = 0 ;
1799      
1800 <    if(!PyArg_ParseTuple(args,(char *)"O:BossSession_showProgramTypes",&obj0)) goto fail;
1801 <    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossSession,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1800 >    if(!PyArg_ParseTuple(args,(char *)"O:vector_string___len__",&obj0)) goto fail;
1801 >    {
1802 >        if (PyTuple_Check(obj0) || PyList_Check(obj0)) {
1803 >            unsigned int size = (PyTuple_Check(obj0) ?
1804 >            PyTuple_Size(obj0) :
1805 >            PyList_Size(obj0));
1806 >            temp1 = std::vector<std::string >(size);
1807 >            arg1 = &temp1;
1808 >            for (unsigned int i=0; i<size; i++) {
1809 >                PyObject* o = PySequence_GetItem(obj0,i);
1810 >                if (PyString_Check(o)) {
1811 >                    temp1[i] = (std::string)(\
1812 >                    SwigString_AsString(o));
1813 >                    Py_DECREF(o);
1814 >                }else {
1815 >                    Py_DECREF(o);
1816 >                    PyErr_SetString(PyExc_TypeError,
1817 >                    "vector<""std::string""> expected");
1818 >                    SWIG_fail;
1819 >                }
1820 >            }
1821 >        }else if (SWIG_ConvertPtr(obj0,(void **) &v1,
1822 >        SWIGTYPE_p_std__vectorTstd__string_t,1) != -1){
1823 >            arg1 = v1;
1824 >        }else {
1825 >            PyErr_SetString(PyExc_TypeError,"vector<""std::string" "> expected");
1826 >            SWIG_fail;
1827 >        }
1828 >    }
1829      {
1830          try {
1831 <            result = (PyObject *)BossSession_showProgramTypes__SWIG_1(arg1);
1831 >            result = (unsigned int)((std::vector<std::string > const *)arg1)->size();
1832              
1833          }catch (const std::exception& e) {
1834              SWIG_exception(SWIG_RuntimeError, e.what());
1835          }
1836      }
1837 <    resultobj = result;
1837 >    resultobj = PyInt_FromLong((long)result);
1838      return resultobj;
1839      fail:
1840      return NULL;
1841   }
1842  
1843  
1844 < static PyObject *_wrap_BossSession_showProgramTypes(PyObject *self, PyObject *args) {
1845 <    int argc;
1846 <    PyObject *argv[2];
1847 <    int ii;
1844 > static PyObject *_wrap_vector_string___nonzero__(PyObject *self, PyObject *args) {
1845 >    PyObject *resultobj;
1846 >    std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ;
1847 >    bool result;
1848 >    std::vector<std::string > temp1 ;
1849 >    std::vector<std::string > *v1 ;
1850 >    PyObject * obj0 = 0 ;
1851      
1852 <    argc = PyObject_Length(args);
1853 <    for (ii = 0; (ii < argc) && (ii < 1); ii++) {
1854 <        argv[ii] = PyTuple_GetItem(args,ii);
1852 >    if(!PyArg_ParseTuple(args,(char *)"O:vector_string___nonzero__",&obj0)) goto fail;
1853 >    {
1854 >        if (PyTuple_Check(obj0) || PyList_Check(obj0)) {
1855 >            unsigned int size = (PyTuple_Check(obj0) ?
1856 >            PyTuple_Size(obj0) :
1857 >            PyList_Size(obj0));
1858 >            temp1 = std::vector<std::string >(size);
1859 >            arg1 = &temp1;
1860 >            for (unsigned int i=0; i<size; i++) {
1861 >                PyObject* o = PySequence_GetItem(obj0,i);
1862 >                if (PyString_Check(o)) {
1863 >                    temp1[i] = (std::string)(\
1864 >                    SwigString_AsString(o));
1865 >                    Py_DECREF(o);
1866 >                }else {
1867 >                    Py_DECREF(o);
1868 >                    PyErr_SetString(PyExc_TypeError,
1869 >                    "vector<""std::string""> expected");
1870 >                    SWIG_fail;
1871 >                }
1872 >            }
1873 >        }else if (SWIG_ConvertPtr(obj0,(void **) &v1,
1874 >        SWIGTYPE_p_std__vectorTstd__string_t,1) != -1){
1875 >            arg1 = v1;
1876 >        }else {
1877 >            PyErr_SetString(PyExc_TypeError,"vector<""std::string" "> expected");
1878 >            SWIG_fail;
1879 >        }
1880      }
1881 <    if (argc == 1) {
1882 <        int _v;
1883 <        {
1884 <            void *ptr;
1885 <            if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_BossSession, 0) == -1) {
1886 <                _v = 0;
1887 <                PyErr_Clear();
1888 <            }else {
1889 <                _v = 1;
1881 >    {
1882 >        try {
1883 >            result = (bool)((std::vector<std::string > const *)arg1)->empty();
1884 >            
1885 >        }catch (const std::exception& e) {
1886 >            SWIG_exception(SWIG_RuntimeError, e.what());
1887 >        }
1888 >    }
1889 >    resultobj = PyInt_FromLong((long)result);
1890 >    return resultobj;
1891 >    fail:
1892 >    return NULL;
1893 > }
1894 >
1895 >
1896 > static PyObject *_wrap_vector_string_clear(PyObject *self, PyObject *args) {
1897 >    PyObject *resultobj;
1898 >    std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ;
1899 >    PyObject * obj0 = 0 ;
1900 >    
1901 >    if(!PyArg_ParseTuple(args,(char *)"O:vector_string_clear",&obj0)) goto fail;
1902 >    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_std__vectorTstd__string_t,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1903 >    {
1904 >        try {
1905 >            (arg1)->clear();
1906 >            
1907 >        }catch (const std::exception& e) {
1908 >            SWIG_exception(SWIG_RuntimeError, e.what());
1909 >        }
1910 >    }
1911 >    Py_INCREF(Py_None); resultobj = Py_None;
1912 >    return resultobj;
1913 >    fail:
1914 >    return NULL;
1915 > }
1916 >
1917 >
1918 > static PyObject *_wrap_vector_string_append(PyObject *self, PyObject *args) {
1919 >    PyObject *resultobj;
1920 >    std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ;
1921 >    std::string arg2 ;
1922 >    PyObject * obj0 = 0 ;
1923 >    PyObject * obj1 = 0 ;
1924 >    
1925 >    if(!PyArg_ParseTuple(args,(char *)"OO:vector_string_append",&obj0,&obj1)) goto fail;
1926 >    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_std__vectorTstd__string_t,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1927 >    {
1928 >        if (PyString_Check(obj1))
1929 >        arg2 = std::string(PyString_AsString(obj1));
1930 >        else
1931 >        SWIG_exception(SWIG_TypeError, "string expected");
1932 >    }
1933 >    {
1934 >        try {
1935 >            (arg1)->push_back(arg2);
1936 >            
1937 >        }catch (const std::exception& e) {
1938 >            SWIG_exception(SWIG_RuntimeError, e.what());
1939 >        }
1940 >    }
1941 >    Py_INCREF(Py_None); resultobj = Py_None;
1942 >    return resultobj;
1943 >    fail:
1944 >    return NULL;
1945 > }
1946 >
1947 >
1948 > static PyObject *_wrap_vector_string_pop(PyObject *self, PyObject *args) {
1949 >    PyObject *resultobj;
1950 >    std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ;
1951 >    std::string result;
1952 >    PyObject * obj0 = 0 ;
1953 >    
1954 >    if(!PyArg_ParseTuple(args,(char *)"O:vector_string_pop",&obj0)) goto fail;
1955 >    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_std__vectorTstd__string_t,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1956 >    {
1957 >        try {
1958 >            result = std_vectorlstd_string_g_pop___(arg1);
1959 >            
1960 >        }catch (std::out_of_range& e) {
1961 >            SWIG_exception(SWIG_IndexError,const_cast<char*>(e.what()));
1962 >        }
1963 >    }
1964 >    {
1965 >        resultobj = PyString_FromStringAndSize((&result)->data(),(&result)->size());
1966 >    }
1967 >    return resultobj;
1968 >    fail:
1969 >    return NULL;
1970 > }
1971 >
1972 >
1973 > static PyObject *_wrap_vector_string___getitem__(PyObject *self, PyObject *args) {
1974 >    PyObject *resultobj;
1975 >    std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ;
1976 >    int arg2 ;
1977 >    std::string result;
1978 >    PyObject * obj0 = 0 ;
1979 >    
1980 >    if(!PyArg_ParseTuple(args,(char *)"Oi:vector_string___getitem__",&obj0,&arg2)) goto fail;
1981 >    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_std__vectorTstd__string_t,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
1982 >    {
1983 >        try {
1984 >            result = std_vectorlstd_string_g___getitem_____(arg1,arg2);
1985 >            
1986 >        }catch (std::out_of_range& e) {
1987 >            SWIG_exception(SWIG_IndexError,const_cast<char*>(e.what()));
1988 >        }
1989 >    }
1990 >    {
1991 >        resultobj = PyString_FromStringAndSize((&result)->data(),(&result)->size());
1992 >    }
1993 >    return resultobj;
1994 >    fail:
1995 >    return NULL;
1996 > }
1997 >
1998 >
1999 > static PyObject *_wrap_vector_string___getslice__(PyObject *self, PyObject *args) {
2000 >    PyObject *resultobj;
2001 >    std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ;
2002 >    int arg2 ;
2003 >    int arg3 ;
2004 >    std::vector<std::string > result;
2005 >    PyObject * obj0 = 0 ;
2006 >    
2007 >    if(!PyArg_ParseTuple(args,(char *)"Oii:vector_string___getslice__",&obj0,&arg2,&arg3)) goto fail;
2008 >    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_std__vectorTstd__string_t,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2009 >    {
2010 >        try {
2011 >            result = std_vectorlstd_string_g___getslice_____(arg1,arg2,arg3);
2012 >            
2013 >        }catch (const std::exception& e) {
2014 >            SWIG_exception(SWIG_RuntimeError, e.what());
2015 >        }
2016 >    }
2017 >    {
2018 >        resultobj = PyTuple_New((&result)->size());
2019 >        for (unsigned int i=0; i<(&result)->size(); i++)
2020 >        PyTuple_SetItem(resultobj,i,
2021 >        SwigString_FromString(((std::vector<std::string > &)result)[i]));
2022 >    }
2023 >    return resultobj;
2024 >    fail:
2025 >    return NULL;
2026 > }
2027 >
2028 >
2029 > static PyObject *_wrap_vector_string___setitem__(PyObject *self, PyObject *args) {
2030 >    PyObject *resultobj;
2031 >    std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ;
2032 >    int arg2 ;
2033 >    std::string arg3 ;
2034 >    PyObject * obj0 = 0 ;
2035 >    PyObject * obj2 = 0 ;
2036 >    
2037 >    if(!PyArg_ParseTuple(args,(char *)"OiO:vector_string___setitem__",&obj0,&arg2,&obj2)) goto fail;
2038 >    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_std__vectorTstd__string_t,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2039 >    {
2040 >        if (PyString_Check(obj2))
2041 >        arg3 = std::string(PyString_AsString(obj2));
2042 >        else
2043 >        SWIG_exception(SWIG_TypeError, "string expected");
2044 >    }
2045 >    {
2046 >        try {
2047 >            std_vectorlstd_string_g___setitem_____(arg1,arg2,arg3);
2048 >            
2049 >        }catch (std::out_of_range& e) {
2050 >            SWIG_exception(SWIG_IndexError,const_cast<char*>(e.what()));
2051 >        }
2052 >    }
2053 >    Py_INCREF(Py_None); resultobj = Py_None;
2054 >    return resultobj;
2055 >    fail:
2056 >    return NULL;
2057 > }
2058 >
2059 >
2060 > static PyObject *_wrap_vector_string___setslice__(PyObject *self, PyObject *args) {
2061 >    PyObject *resultobj;
2062 >    std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ;
2063 >    int arg2 ;
2064 >    int arg3 ;
2065 >    std::vector<std::string > *arg4 = 0 ;
2066 >    std::vector<std::string > temp4 ;
2067 >    std::vector<std::string > *v4 ;
2068 >    PyObject * obj0 = 0 ;
2069 >    PyObject * obj3 = 0 ;
2070 >    
2071 >    if(!PyArg_ParseTuple(args,(char *)"OiiO:vector_string___setslice__",&obj0,&arg2,&arg3,&obj3)) goto fail;
2072 >    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_std__vectorTstd__string_t,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2073 >    {
2074 >        if (PyTuple_Check(obj3) || PyList_Check(obj3)) {
2075 >            unsigned int size = (PyTuple_Check(obj3) ?
2076 >            PyTuple_Size(obj3) :
2077 >            PyList_Size(obj3));
2078 >            temp4 = std::vector<std::string >(size);
2079 >            arg4 = &temp4;
2080 >            for (unsigned int i=0; i<size; i++) {
2081 >                PyObject* o = PySequence_GetItem(obj3,i);
2082 >                if (PyString_Check(o)) {
2083 >                    temp4[i] = (std::string)(\
2084 >                    SwigString_AsString(o));
2085 >                    Py_DECREF(o);
2086 >                }else {
2087 >                    Py_DECREF(o);
2088 >                    PyErr_SetString(PyExc_TypeError,
2089 >                    "vector<""std::string""> expected");
2090 >                    SWIG_fail;
2091 >                }
2092              }
2093 +        }else if (SWIG_ConvertPtr(obj3,(void **) &v4,
2094 +        SWIGTYPE_p_std__vectorTstd__string_t,1) != -1){
2095 +            arg4 = v4;
2096 +        }else {
2097 +            PyErr_SetString(PyExc_TypeError,"vector<""std::string" "> expected");
2098 +            SWIG_fail;
2099          }
2100 <        if (_v) {
2101 <            return _wrap_BossSession_showProgramTypes__SWIG_1(self,args);
2100 >    }
2101 >    {
2102 >        try {
2103 >            std_vectorlstd_string_g___setslice_____(arg1,arg2,arg3,(std::vector<std::string > const &)*arg4);
2104 >            
2105 >        }catch (const std::exception& e) {
2106 >            SWIG_exception(SWIG_RuntimeError, e.what());
2107 >        }
2108 >    }
2109 >    Py_INCREF(Py_None); resultobj = Py_None;
2110 >    return resultobj;
2111 >    fail:
2112 >    return NULL;
2113 > }
2114 >
2115 >
2116 > static PyObject *_wrap_vector_string___delitem__(PyObject *self, PyObject *args) {
2117 >    PyObject *resultobj;
2118 >    std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ;
2119 >    int arg2 ;
2120 >    PyObject * obj0 = 0 ;
2121 >    
2122 >    if(!PyArg_ParseTuple(args,(char *)"Oi:vector_string___delitem__",&obj0,&arg2)) goto fail;
2123 >    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_std__vectorTstd__string_t,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2124 >    {
2125 >        try {
2126 >            std_vectorlstd_string_g___delitem_____(arg1,arg2);
2127 >            
2128 >        }catch (std::out_of_range& e) {
2129 >            SWIG_exception(SWIG_IndexError,const_cast<char*>(e.what()));
2130 >        }
2131 >    }
2132 >    Py_INCREF(Py_None); resultobj = Py_None;
2133 >    return resultobj;
2134 >    fail:
2135 >    return NULL;
2136 > }
2137 >
2138 >
2139 > static PyObject *_wrap_vector_string___delslice__(PyObject *self, PyObject *args) {
2140 >    PyObject *resultobj;
2141 >    std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ;
2142 >    int arg2 ;
2143 >    int arg3 ;
2144 >    PyObject * obj0 = 0 ;
2145 >    
2146 >    if(!PyArg_ParseTuple(args,(char *)"Oii:vector_string___delslice__",&obj0,&arg2,&arg3)) goto fail;
2147 >    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_std__vectorTstd__string_t,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2148 >    {
2149 >        try {
2150 >            std_vectorlstd_string_g___delslice_____(arg1,arg2,arg3);
2151 >            
2152 >        }catch (const std::exception& e) {
2153 >            SWIG_exception(SWIG_RuntimeError, e.what());
2154          }
2155      }
2156 +    Py_INCREF(Py_None); resultobj = Py_None;
2157 +    return resultobj;
2158 +    fail:
2159 +    return NULL;
2160 + }
2161 +
2162 +
2163 + static PyObject *_wrap_delete_vector_string(PyObject *self, PyObject *args) {
2164 +    PyObject *resultobj;
2165 +    std::vector<std::string > *arg1 = (std::vector<std::string > *) 0 ;
2166 +    PyObject * obj0 = 0 ;
2167      
2168 <    PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'BossSession_showProgramTypes'");
2168 >    if(!PyArg_ParseTuple(args,(char *)"O:delete_vector_string",&obj0)) goto fail;
2169 >    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_std__vectorTstd__string_t,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2170 >    {
2171 >        try {
2172 >            delete arg1;
2173 >            
2174 >        }catch (const std::exception& e) {
2175 >            SWIG_exception(SWIG_RuntimeError, e.what());
2176 >        }
2177 >    }
2178 >    Py_INCREF(Py_None); resultobj = Py_None;
2179 >    return resultobj;
2180 >    fail:
2181      return NULL;
2182   }
2183  
2184  
2185 < static PyObject *_wrap_BossSession_showRTMon__SWIG_1(PyObject *self, PyObject *args) {
2185 > static PyObject * vector_string_swigregister(PyObject *self, PyObject *args) {
2186 >    PyObject *obj;
2187 >    if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
2188 >    SWIG_TypeClientData(SWIGTYPE_p_std__vectorTstd__string_t, obj);
2189 >    Py_INCREF(obj);
2190 >    return Py_BuildValue((char *)"");
2191 > }
2192 > static PyObject *_wrap_BossSession_show(PyObject *self, PyObject *args) {
2193      PyObject *resultobj;
2194      BossSession *arg1 = (BossSession *) 0 ;
2195 +    std::vector<std::string > *arg2 = 0 ;
2196      PyObject *result;
2197      PyObject * obj0 = 0 ;
2198 +    PyObject * obj1 = 0 ;
2199      
2200 <    if(!PyArg_ParseTuple(args,(char *)"O:BossSession_showRTMon",&obj0)) goto fail;
2200 >    if(!PyArg_ParseTuple(args,(char *)"OO:BossSession_show",&obj0,&obj1)) goto fail;
2201      if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossSession,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2202 +    if ((SWIG_ConvertPtr(obj1,(void **) &arg2, SWIGTYPE_p_std__vectorTstd__string_t,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2203 +    if (arg2 == NULL) {
2204 +        PyErr_SetString(PyExc_TypeError,"null reference"); SWIG_fail;
2205 +    }
2206      {
2207          try {
2208 <            result = (PyObject *)BossSession_showRTMon__SWIG_1(arg1);
2208 >            result = (PyObject *)BossSession_show(arg1,*arg2);
2209              
2210          }catch (const std::exception& e) {
2211              SWIG_exception(SWIG_RuntimeError, e.what());
# Line 1691 | Line 2218 | static PyObject *_wrap_BossSession_showR
2218   }
2219  
2220  
2221 < static PyObject *_wrap_BossSession_showRTMon(PyObject *self, PyObject *args) {
2222 <    int argc;
2223 <    PyObject *argv[2];
2224 <    int ii;
2221 > static PyObject *_wrap_BossSession_CHTools(PyObject *self, PyObject *args) {
2222 >    PyObject *resultobj;
2223 >    BossSession *arg1 = (BossSession *) 0 ;
2224 >    PyObject *result;
2225 >    PyObject * obj0 = 0 ;
2226      
2227 <    argc = PyObject_Length(args);
2228 <    for (ii = 0; (ii < argc) && (ii < 1); ii++) {
2229 <        argv[ii] = PyTuple_GetItem(args,ii);
2230 <    }
2231 <    if (argc == 1) {
2232 <        int _v;
2233 <        {
2234 <            void *ptr;
1707 <            if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_BossSession, 0) == -1) {
1708 <                _v = 0;
1709 <                PyErr_Clear();
1710 <            }else {
1711 <                _v = 1;
1712 <            }
2227 >    if(!PyArg_ParseTuple(args,(char *)"O:BossSession_CHTools",&obj0)) goto fail;
2228 >    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossSession,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2229 >    {
2230 >        try {
2231 >            result = (PyObject *)BossSession_CHTools(arg1);
2232 >            
2233 >        }catch (const std::exception& e) {
2234 >            SWIG_exception(SWIG_RuntimeError, e.what());
2235          }
2236 <        if (_v) {
2237 <            return _wrap_BossSession_showRTMon__SWIG_1(self,args);
2236 >    }
2237 >    resultobj = result;
2238 >    return resultobj;
2239 >    fail:
2240 >    return NULL;
2241 > }
2242 >
2243 >
2244 > static PyObject *_wrap_BossSession_ProgramTypes(PyObject *self, PyObject *args) {
2245 >    PyObject *resultobj;
2246 >    BossSession *arg1 = (BossSession *) 0 ;
2247 >    PyObject *result;
2248 >    PyObject * obj0 = 0 ;
2249 >    
2250 >    if(!PyArg_ParseTuple(args,(char *)"O:BossSession_ProgramTypes",&obj0)) goto fail;
2251 >    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossSession,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2252 >    {
2253 >        try {
2254 >            result = (PyObject *)BossSession_ProgramTypes(arg1);
2255 >            
2256 >        }catch (const std::exception& e) {
2257 >            SWIG_exception(SWIG_RuntimeError, e.what());
2258          }
2259      }
2260 +    resultobj = result;
2261 +    return resultobj;
2262 +    fail:
2263 +    return NULL;
2264 + }
2265 +
2266 +
2267 + static PyObject *_wrap_BossSession_RTMons(PyObject *self, PyObject *args) {
2268 +    PyObject *resultobj;
2269 +    BossSession *arg1 = (BossSession *) 0 ;
2270 +    PyObject *result;
2271 +    PyObject * obj0 = 0 ;
2272      
2273 <    PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'BossSession_showRTMon'");
2273 >    if(!PyArg_ParseTuple(args,(char *)"O:BossSession_RTMons",&obj0)) goto fail;
2274 >    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossSession,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2275 >    {
2276 >        try {
2277 >            result = (PyObject *)BossSession_RTMons(arg1);
2278 >            
2279 >        }catch (const std::exception& e) {
2280 >            SWIG_exception(SWIG_RuntimeError, e.what());
2281 >        }
2282 >    }
2283 >    resultobj = result;
2284 >    return resultobj;
2285 >    fail:
2286      return NULL;
2287   }
2288  
2289  
2290 < static PyObject *_wrap_BossSession_showSchedulers__SWIG_1(PyObject *self, PyObject *args) {
2290 > static PyObject *_wrap_BossSession_schedulers(PyObject *self, PyObject *args) {
2291      PyObject *resultobj;
2292      BossSession *arg1 = (BossSession *) 0 ;
2293      PyObject *result;
2294      PyObject * obj0 = 0 ;
2295      
2296 <    if(!PyArg_ParseTuple(args,(char *)"O:BossSession_showSchedulers",&obj0)) goto fail;
2296 >    if(!PyArg_ParseTuple(args,(char *)"O:BossSession_schedulers",&obj0)) goto fail;
2297      if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossSession,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2298      {
2299          try {
2300 <            result = (PyObject *)BossSession_showSchedulers__SWIG_1(arg1);
2300 >            result = (PyObject *)BossSession_schedulers(arg1);
2301              
2302          }catch (const std::exception& e) {
2303              SWIG_exception(SWIG_RuntimeError, e.what());
# Line 1744 | Line 2310 | static PyObject *_wrap_BossSession_showS
2310   }
2311  
2312  
2313 < static PyObject *_wrap_BossSession_showSchedulers(PyObject *self, PyObject *args) {
2314 <    int argc;
2315 <    PyObject *argv[2];
2316 <    int ii;
2313 > static PyObject *_wrap_BossSession_schedListMatch(PyObject *self, PyObject *args) {
2314 >    PyObject *resultobj;
2315 >    BossSession *arg1 = (BossSession *) 0 ;
2316 >    std::string *arg2 = 0 ;
2317 >    std::string *arg3 = 0 ;
2318 >    std::string const &arg4_defvalue = "" ;
2319 >    std::string *arg4 = (std::string *) &arg4_defvalue ;
2320 >    std::string const &arg5_defvalue = "" ;
2321 >    std::string *arg5 = (std::string *) &arg5_defvalue ;
2322 >    bool arg6 = (bool) false ;
2323 >    PyObject *result;
2324 >    std::string temp2 ;
2325 >    std::string temp3 ;
2326 >    std::string temp4 ;
2327 >    std::string temp5 ;
2328 >    PyObject * obj0 = 0 ;
2329 >    PyObject * obj1 = 0 ;
2330 >    PyObject * obj2 = 0 ;
2331 >    PyObject * obj3 = 0 ;
2332 >    PyObject * obj4 = 0 ;
2333 >    PyObject * obj5 = 0 ;
2334      
2335 <    argc = PyObject_Length(args);
2336 <    for (ii = 0; (ii < argc) && (ii < 1); ii++) {
2337 <        argv[ii] = PyTuple_GetItem(args,ii);
2335 >    if(!PyArg_ParseTuple(args,(char *)"OOO|OOO:BossSession_schedListMatch",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5)) goto fail;
2336 >    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossSession,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2337 >    {
2338 >        if (PyString_Check(obj1)) {
2339 >            temp2 = std::string(PyString_AsString(obj1));
2340 >            arg2 = &temp2;
2341 >        }else {
2342 >            SWIG_exception(SWIG_TypeError, "string expected");
2343 >        }
2344      }
2345 <    if (argc == 1) {
2346 <        int _v;
2345 >    {
2346 >        if (PyString_Check(obj2)) {
2347 >            temp3 = std::string(PyString_AsString(obj2));
2348 >            arg3 = &temp3;
2349 >        }else {
2350 >            SWIG_exception(SWIG_TypeError, "string expected");
2351 >        }
2352 >    }
2353 >    if (obj3) {
2354          {
2355 <            void *ptr;
2356 <            if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_BossSession, 0) == -1) {
2357 <                _v = 0;
1762 <                PyErr_Clear();
2355 >            if (PyString_Check(obj3)) {
2356 >                temp4 = std::string(PyString_AsString(obj3));
2357 >                arg4 = &temp4;
2358              }else {
2359 <                _v = 1;
2359 >                SWIG_exception(SWIG_TypeError, "string expected");
2360              }
2361          }
2362 <        if (_v) {
2363 <            return _wrap_BossSession_showSchedulers__SWIG_1(self,args);
2362 >    }
2363 >    if (obj4) {
2364 >        {
2365 >            if (PyString_Check(obj4)) {
2366 >                temp5 = std::string(PyString_AsString(obj4));
2367 >                arg5 = &temp5;
2368 >            }else {
2369 >                SWIG_exception(SWIG_TypeError, "string expected");
2370 >            }
2371          }
2372      }
2373 <    
2374 <    PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'BossSession_showSchedulers'");
2373 >    if (obj5) {
2374 >        arg6 = PyInt_AsLong(obj5) ? true : false;
2375 >        if (PyErr_Occurred()) SWIG_fail;
2376 >    }
2377 >    {
2378 >        try {
2379 >            result = (PyObject *)BossSession_schedListMatch(arg1,(std::string const &)*arg2,(std::string const &)*arg3,(std::string const &)*arg4,(std::string const &)*arg5,arg6);
2380 >            
2381 >        }catch (const std::exception& e) {
2382 >            SWIG_exception(SWIG_RuntimeError, e.what());
2383 >        }
2384 >    }
2385 >    resultobj = result;
2386 >    return resultobj;
2387 >    fail:
2388      return NULL;
2389   }
2390  
# Line 1889 | Line 2504 | static PyObject *_wrap_BossSession_query
2504   static PyObject *_wrap_new_BossSession(PyObject *self, PyObject *args) {
2505      PyObject *resultobj;
2506      std::string arg1 = (std::string) "" ;
2507 +    std::string arg2 = (std::string) "2" ;
2508 +    std::string arg3 = (std::string) "" ;
2509      BossSession *result;
2510      PyObject * obj0 = 0 ;
2511 +    PyObject * obj1 = 0 ;
2512 +    PyObject * obj2 = 0 ;
2513      
2514 <    if(!PyArg_ParseTuple(args,(char *)"|O:new_BossSession",&obj0)) goto fail;
2514 >    if(!PyArg_ParseTuple(args,(char *)"|OOO:new_BossSession",&obj0,&obj1,&obj2)) goto fail;
2515      if (obj0) {
2516          {
2517              if (PyString_Check(obj0))
# Line 1901 | Line 2520 | static PyObject *_wrap_new_BossSession(P
2520              SWIG_exception(SWIG_TypeError, "string expected");
2521          }
2522      }
2523 +    if (obj1) {
2524 +        {
2525 +            if (PyString_Check(obj1))
2526 +            arg2 = std::string(PyString_AsString(obj1));
2527 +            else
2528 +            SWIG_exception(SWIG_TypeError, "string expected");
2529 +        }
2530 +    }
2531 +    if (obj2) {
2532 +        {
2533 +            if (PyString_Check(obj2))
2534 +            arg3 = std::string(PyString_AsString(obj2));
2535 +            else
2536 +            SWIG_exception(SWIG_TypeError, "string expected");
2537 +        }
2538 +    }
2539      {
2540          try {
2541 <            result = (BossSession *)new BossSession(arg1);
2541 >            result = (BossSession *)new BossSession(arg1,arg2,arg3);
2542              
2543          }catch (const std::exception& e) {
2544              SWIG_exception(SWIG_RuntimeError, e.what());
# Line 1938 | Line 2573 | static PyObject *_wrap_delete_BossSessio
2573   }
2574  
2575  
2576 + static PyObject *_wrap_BossSession_resetDB(PyObject *self, PyObject *args) {
2577 +    PyObject *resultobj;
2578 +    BossSession *arg1 = (BossSession *) 0 ;
2579 +    PyObject * obj0 = 0 ;
2580 +    
2581 +    if(!PyArg_ParseTuple(args,(char *)"O:BossSession_resetDB",&obj0)) goto fail;
2582 +    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossSession,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2583 +    {
2584 +        try {
2585 +            (arg1)->resetDB();
2586 +            
2587 +        }catch (const std::exception& e) {
2588 +            SWIG_exception(SWIG_RuntimeError, e.what());
2589 +        }
2590 +    }
2591 +    Py_INCREF(Py_None); resultobj = Py_None;
2592 +    return resultobj;
2593 +    fail:
2594 +    return NULL;
2595 + }
2596 +
2597 +
2598   static PyObject *_wrap_BossSession_clear(PyObject *self, PyObject *args) {
2599      PyObject *resultobj;
2600      BossSession *arg1 = (BossSession *) 0 ;
# Line 2022 | Line 2679 | static PyObject *_wrap_BossSession_destr
2679   }
2680  
2681  
2025 static PyObject *_wrap_BossSession_showCHTools__SWIG_0(PyObject *self, PyObject *args) {
2026    PyObject *resultobj;
2027    BossSession *arg1 = (BossSession *) 0 ;
2028    SwigValueWrapper< std::vector<std::string > > result;
2029    PyObject * obj0 = 0 ;
2030    
2031    if(!PyArg_ParseTuple(args,(char *)"O:BossSession_showCHTools",&obj0)) goto fail;
2032    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossSession,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2033    {
2034        try {
2035            result = (arg1)->showCHTools();
2036            
2037        }catch (const std::exception& e) {
2038            SWIG_exception(SWIG_RuntimeError, e.what());
2039        }
2040    }
2041    {
2042        std::vector<std::string > * resultptr;
2043        resultptr = new std::vector<std::string >((std::vector<std::string > &) result);
2044        resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_std__vectorTstd__string_t, 1);
2045    }
2046    return resultobj;
2047    fail:
2048    return NULL;
2049 }
2050
2051
2052 static PyObject *_wrap_BossSession_showProgramTypes__SWIG_0(PyObject *self, PyObject *args) {
2053    PyObject *resultobj;
2054    BossSession *arg1 = (BossSession *) 0 ;
2055    SwigValueWrapper< std::vector<std::string > > result;
2056    PyObject * obj0 = 0 ;
2057    
2058    if(!PyArg_ParseTuple(args,(char *)"O:BossSession_showProgramTypes",&obj0)) goto fail;
2059    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossSession,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2060    {
2061        try {
2062            result = (arg1)->showProgramTypes();
2063            
2064        }catch (const std::exception& e) {
2065            SWIG_exception(SWIG_RuntimeError, e.what());
2066        }
2067    }
2068    {
2069        std::vector<std::string > * resultptr;
2070        resultptr = new std::vector<std::string >((std::vector<std::string > &) result);
2071        resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_std__vectorTstd__string_t, 1);
2072    }
2073    return resultobj;
2074    fail:
2075    return NULL;
2076 }
2077
2078
2079 static PyObject *_wrap_BossSession_showRTMon__SWIG_0(PyObject *self, PyObject *args) {
2080    PyObject *resultobj;
2081    BossSession *arg1 = (BossSession *) 0 ;
2082    SwigValueWrapper< std::vector<std::string > > result;
2083    PyObject * obj0 = 0 ;
2084    
2085    if(!PyArg_ParseTuple(args,(char *)"O:BossSession_showRTMon",&obj0)) goto fail;
2086    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossSession,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2087    {
2088        try {
2089            result = (arg1)->showRTMon();
2090            
2091        }catch (const std::exception& e) {
2092            SWIG_exception(SWIG_RuntimeError, e.what());
2093        }
2094    }
2095    {
2096        std::vector<std::string > * resultptr;
2097        resultptr = new std::vector<std::string >((std::vector<std::string > &) result);
2098        resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_std__vectorTstd__string_t, 1);
2099    }
2100    return resultobj;
2101    fail:
2102    return NULL;
2103 }
2104
2105
2106 static PyObject *_wrap_BossSession_showSchedulers__SWIG_0(PyObject *self, PyObject *args) {
2107    PyObject *resultobj;
2108    BossSession *arg1 = (BossSession *) 0 ;
2109    SwigValueWrapper< std::vector<std::string > > result;
2110    PyObject * obj0 = 0 ;
2111    
2112    if(!PyArg_ParseTuple(args,(char *)"O:BossSession_showSchedulers",&obj0)) goto fail;
2113    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossSession,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
2114    {
2115        try {
2116            result = (arg1)->showSchedulers();
2117            
2118        }catch (const std::exception& e) {
2119            SWIG_exception(SWIG_RuntimeError, e.what());
2120        }
2121    }
2122    {
2123        std::vector<std::string > * resultptr;
2124        resultptr = new std::vector<std::string >((std::vector<std::string > &) result);
2125        resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_std__vectorTstd__string_t, 1);
2126    }
2127    return resultobj;
2128    fail:
2129    return NULL;
2130 }
2131
2132
2682   static PyObject *_wrap_BossSession_defaultCHTool(PyObject *self, PyObject *args) {
2683      PyObject *resultobj;
2684      BossSession *arg1 = (BossSession *) 0 ;
# Line 2372 | Line 2921 | static PyObject *_wrap_BossSession_listM
2921      std::string *arg5 = (std::string *) &arg5_defvalue ;
2922      std::string const &arg6_defvalue = "" ;
2923      std::string *arg6 = (std::string *) &arg6_defvalue ;
2924 <    std::string result;
2924 >    std::vector<std::string > result;
2925      std::string temp2 ;
2926      std::string temp3 ;
2927      std::string temp5 ;
# Line 2435 | Line 2984 | static PyObject *_wrap_BossSession_listM
2984          }
2985      }
2986      {
2987 <        resultobj = PyString_FromStringAndSize((&result)->data(),(&result)->size());
2987 >        resultobj = PyTuple_New((&result)->size());
2988 >        for (unsigned int i=0; i<(&result)->size(); i++)
2989 >        PyTuple_SetItem(resultobj,i,
2990 >        SwigString_FromString(((std::vector<std::string > &)result)[i]));
2991      }
2992      return resultobj;
2993      fail:
# Line 2559 | Line 3111 | static PyObject *_wrap_BossSession_selec
3111      std::string *arg4 = (std::string *) &arg4_defvalue ;
3112      std::string const &arg5_defvalue = "" ;
3113      std::string *arg5 = (std::string *) &arg5_defvalue ;
3114 <    SwigValueWrapper< std::vector<std::string > > result;
3114 >    std::vector<std::string > result;
3115      std::string temp2 ;
3116      std::string temp3 ;
3117      std::string temp4 ;
# Line 2621 | Line 3173 | static PyObject *_wrap_BossSession_selec
3173          }
3174      }
3175      {
3176 <        std::vector<std::string > * resultptr;
3177 <        resultptr = new std::vector<std::string >((std::vector<std::string > &) result);
3178 <        resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_std__vectorTstd__string_t, 1);
3176 >        resultobj = PyTuple_New((&result)->size());
3177 >        for (unsigned int i=0; i<(&result)->size(); i++)
3178 >        PyTuple_SetItem(resultobj,i,
3179 >        SwigString_FromString(((std::vector<std::string > &)result)[i]));
3180 >    }
3181 >    return resultobj;
3182 >    fail:
3183 >    return NULL;
3184 > }
3185 >
3186 >
3187 > static PyObject *_wrap_BossSession_query(PyObject *self, PyObject *args) {
3188 >    PyObject *resultobj;
3189 >    BossSession *arg1 = (BossSession *) 0 ;
3190 >    int arg2 = (int) SCHEDULED ;
3191 >    std::string const &arg3_defvalue = "all" ;
3192 >    std::string *arg3 = (std::string *) &arg3_defvalue ;
3193 >    std::string const &arg4_defvalue = "all" ;
3194 >    std::string *arg4 = (std::string *) &arg4_defvalue ;
3195 >    std::string const &arg5_defvalue = "" ;
3196 >    std::string *arg5 = (std::string *) &arg5_defvalue ;
3197 >    std::string arg6 = (std::string) "" ;
3198 >    std::string arg7 = (std::string) "" ;
3199 >    std::string arg8 = (std::string) "" ;
3200 >    std::string arg9 = (std::string) "" ;
3201 >    bool arg10 = (bool) false ;
3202 >    SwigValueWrapper< std::vector<BossTask * > > result;
3203 >    std::string temp3 ;
3204 >    std::string temp4 ;
3205 >    std::string temp5 ;
3206 >    PyObject * obj0 = 0 ;
3207 >    PyObject * obj2 = 0 ;
3208 >    PyObject * obj3 = 0 ;
3209 >    PyObject * obj4 = 0 ;
3210 >    PyObject * obj5 = 0 ;
3211 >    PyObject * obj6 = 0 ;
3212 >    PyObject * obj7 = 0 ;
3213 >    PyObject * obj8 = 0 ;
3214 >    PyObject * obj9 = 0 ;
3215 >    
3216 >    if(!PyArg_ParseTuple(args,(char *)"O|iOOOOOOOO:BossSession_query",&obj0,&arg2,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9)) goto fail;
3217 >    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossSession,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3218 >    if (obj2) {
3219 >        {
3220 >            if (PyString_Check(obj2)) {
3221 >                temp3 = std::string(PyString_AsString(obj2));
3222 >                arg3 = &temp3;
3223 >            }else {
3224 >                SWIG_exception(SWIG_TypeError, "string expected");
3225 >            }
3226 >        }
3227 >    }
3228 >    if (obj3) {
3229 >        {
3230 >            if (PyString_Check(obj3)) {
3231 >                temp4 = std::string(PyString_AsString(obj3));
3232 >                arg4 = &temp4;
3233 >            }else {
3234 >                SWIG_exception(SWIG_TypeError, "string expected");
3235 >            }
3236 >        }
3237 >    }
3238 >    if (obj4) {
3239 >        {
3240 >            if (PyString_Check(obj4)) {
3241 >                temp5 = std::string(PyString_AsString(obj4));
3242 >                arg5 = &temp5;
3243 >            }else {
3244 >                SWIG_exception(SWIG_TypeError, "string expected");
3245 >            }
3246 >        }
3247 >    }
3248 >    if (obj5) {
3249 >        {
3250 >            if (PyString_Check(obj5))
3251 >            arg6 = std::string(PyString_AsString(obj5));
3252 >            else
3253 >            SWIG_exception(SWIG_TypeError, "string expected");
3254 >        }
3255 >    }
3256 >    if (obj6) {
3257 >        {
3258 >            if (PyString_Check(obj6))
3259 >            arg7 = std::string(PyString_AsString(obj6));
3260 >            else
3261 >            SWIG_exception(SWIG_TypeError, "string expected");
3262 >        }
3263 >    }
3264 >    if (obj7) {
3265 >        {
3266 >            if (PyString_Check(obj7))
3267 >            arg8 = std::string(PyString_AsString(obj7));
3268 >            else
3269 >            SWIG_exception(SWIG_TypeError, "string expected");
3270 >        }
3271 >    }
3272 >    if (obj8) {
3273 >        {
3274 >            if (PyString_Check(obj8))
3275 >            arg9 = std::string(PyString_AsString(obj8));
3276 >            else
3277 >            SWIG_exception(SWIG_TypeError, "string expected");
3278 >        }
3279 >    }
3280 >    if (obj9) {
3281 >        arg10 = PyInt_AsLong(obj9) ? true : false;
3282 >        if (PyErr_Occurred()) SWIG_fail;
3283 >    }
3284 >    {
3285 >        try {
3286 >            result = (arg1)->query(arg2,(std::string const &)*arg3,(std::string const &)*arg4,(std::string const &)*arg5,arg6,arg7,arg8,arg9,arg10);
3287 >            
3288 >        }catch (const std::exception& e) {
3289 >            SWIG_exception(SWIG_RuntimeError, e.what());
3290 >        }
3291 >    }
3292 >    {
3293 >        std::vector<BossTask * > * resultptr;
3294 >        resultptr = new std::vector<BossTask * >((std::vector<BossTask * > &) result);
3295 >        resultobj = SWIG_NewPointerObj((void *) resultptr, SWIGTYPE_p_std__vectorTBossTask_p_t, 1);
3296      }
3297      return resultobj;
3298      fail:
# Line 2812 | Line 3481 | static PyObject *_wrap_BossTask_jobDict(
3481   }
3482  
3483  
3484 < static PyObject *_wrap_BossTask_jobsMap__SWIG_1(PyObject *self, PyObject *args) {
3484 > static PyObject *_wrap_BossTask_jobsDict(PyObject *self, PyObject *args) {
3485      PyObject *resultobj;
3486      BossTask *arg1 = (BossTask *) 0 ;
3487      PyObject *result;
3488      PyObject * obj0 = 0 ;
3489      
3490 <    if(!PyArg_ParseTuple(args,(char *)"O:BossTask_jobsMap",&obj0)) goto fail;
3490 >    if(!PyArg_ParseTuple(args,(char *)"O:BossTask_jobsDict",&obj0)) goto fail;
3491      if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossTask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
3492      {
3493          try {
3494 <            result = (PyObject *)BossTask_jobsMap__SWIG_1((BossTask const *)arg1);
3494 >            result = (PyObject *)BossTask_jobsDict(arg1);
3495              
3496          }catch (const std::exception& e) {
3497              SWIG_exception(SWIG_RuntimeError, e.what());
# Line 2835 | Line 3504 | static PyObject *_wrap_BossTask_jobsMap_
3504   }
3505  
3506  
2838 static PyObject *_wrap_BossTask_jobsMap(PyObject *self, PyObject *args) {
2839    int argc;
2840    PyObject *argv[2];
2841    int ii;
2842    
2843    argc = PyObject_Length(args);
2844    for (ii = 0; (ii < argc) && (ii < 1); ii++) {
2845        argv[ii] = PyTuple_GetItem(args,ii);
2846    }
2847    if (argc == 1) {
2848        int _v;
2849        {
2850            void *ptr;
2851            if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_BossTask, 0) == -1) {
2852                _v = 0;
2853                PyErr_Clear();
2854            }else {
2855                _v = 1;
2856            }
2857        }
2858        if (_v) {
2859            return _wrap_BossTask_jobsMap__SWIG_1(self,args);
2860        }
2861    }
2862    
2863    PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'BossTask_jobsMap'");
2864    return NULL;
2865 }
2866
2867
3507   static PyObject *_wrap_BossTask_progDict(PyObject *self, PyObject *args) {
3508      PyObject *resultobj;
3509      BossTask *arg1 = (BossTask *) 0 ;
# Line 3238 | Line 3877 | static PyObject *_wrap_BossTask_job_end(
3877   }
3878  
3879  
3880 < static PyObject *_wrap_BossTask_jobsMap__SWIG_0(PyObject *self, PyObject *args) {
3880 > static PyObject *_wrap_BossTask_jobsMap(PyObject *self, PyObject *args) {
3881      PyObject *resultobj;
3882      BossTask *arg1 = (BossTask *) 0 ;
3883      SwigValueWrapper< std::map<std::string,std::map<std::string,std::string > > > result;
# Line 3867 | Line 4506 | static PyObject *_wrap_BossTask_kill(PyO
4506   }
4507  
4508  
4509 < static PyObject *_wrap_BossTask_getOutput__SWIG_0(PyObject *self, PyObject *args) {
4509 > static PyObject *_wrap_BossTask_getOutput(PyObject *self, PyObject *args) {
4510      PyObject *resultobj;
4511      BossTask *arg1 = (BossTask *) 0 ;
4512      std::string const &arg2_defvalue = "all" ;
# Line 3930 | Line 4569 | static PyObject *_wrap_BossTask_getOutpu
4569   }
4570  
4571  
4572 < static PyObject *_wrap_BossTask_getOutput__SWIG_1(PyObject *self, PyObject *args) {
4572 > static PyObject *_wrap_BossTask_getAllOutput(PyObject *self, PyObject *args) {
4573      PyObject *resultobj;
4574      BossTask *arg1 = (BossTask *) 0 ;
4575      std::string const &arg2_defvalue = "" ;
# Line 3944 | Line 4583 | static PyObject *_wrap_BossTask_getOutpu
4583      PyObject * obj2 = 0 ;
4584      PyObject * obj3 = 0 ;
4585      
4586 <    if(!PyArg_ParseTuple(args,(char *)"O|OOO:BossTask_getOutput",&obj0,&obj1,&obj2,&obj3)) goto fail;
4586 >    if(!PyArg_ParseTuple(args,(char *)"O|OOO:BossTask_getAllOutput",&obj0,&obj1,&obj2,&obj3)) goto fail;
4587      if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossTask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4588      if (obj1) {
4589          {
# Line 3966 | Line 4605 | static PyObject *_wrap_BossTask_getOutpu
4605      }
4606      {
4607          try {
4608 <            result = (int)(arg1)->getOutput((std::string const &)*arg2,arg3,arg4);
4608 >            result = (int)(arg1)->getAllOutput((std::string const &)*arg2,arg3,arg4);
4609              
4610          }catch (const std::exception& e) {
4611              SWIG_exception(SWIG_RuntimeError, e.what());
# Line 3979 | Line 4618 | static PyObject *_wrap_BossTask_getOutpu
4618   }
4619  
4620  
4621 < static PyObject *_wrap_BossTask_getOutput(PyObject *self, PyObject *args) {
4622 <    int argc;
4623 <    PyObject *argv[6];
4624 <    int ii;
4621 > static PyObject *_wrap_BossTask_load(PyObject *self, PyObject *args) {
4622 >    PyObject *resultobj;
4623 >    BossTask *arg1 = (BossTask *) 0 ;
4624 >    int arg2 = (int) SCHEDULED ;
4625 >    std::string const &arg3_defvalue = "all" ;
4626 >    std::string *arg3 = (std::string *) &arg3_defvalue ;
4627 >    std::string const &arg4_defvalue = "" ;
4628 >    std::string *arg4 = (std::string *) &arg4_defvalue ;
4629 >    std::string arg5 = (std::string) "" ;
4630 >    std::string arg6 = (std::string) "" ;
4631 >    std::string arg7 = (std::string) "" ;
4632 >    std::string arg8 = (std::string) "" ;
4633 >    int result;
4634 >    std::string temp3 ;
4635 >    std::string temp4 ;
4636 >    PyObject * obj0 = 0 ;
4637 >    PyObject * obj2 = 0 ;
4638 >    PyObject * obj3 = 0 ;
4639 >    PyObject * obj4 = 0 ;
4640 >    PyObject * obj5 = 0 ;
4641 >    PyObject * obj6 = 0 ;
4642 >    PyObject * obj7 = 0 ;
4643      
4644 <    argc = PyObject_Length(args);
4645 <    for (ii = 0; (ii < argc) && (ii < 5); ii++) {
4646 <        argv[ii] = PyTuple_GetItem(args,ii);
3990 <    }
3991 <    if ((argc >= 1) && (argc <= 5)) {
3992 <        int _v;
4644 >    if(!PyArg_ParseTuple(args,(char *)"O|iOOOOOO:BossTask_load",&obj0,&arg2,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7)) goto fail;
4645 >    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossTask,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
4646 >    if (obj2) {
4647          {
4648 <            void *ptr;
4649 <            if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_BossTask, 0) == -1) {
4650 <                _v = 0;
3997 <                PyErr_Clear();
4648 >            if (PyString_Check(obj2)) {
4649 >                temp3 = std::string(PyString_AsString(obj2));
4650 >                arg3 = &temp3;
4651              }else {
4652 <                _v = 1;
4000 <            }
4001 <        }
4002 <        if (_v) {
4003 <            if (argc <= 1) {
4004 <                return _wrap_BossTask_getOutput__SWIG_0(self,args);
4005 <            }
4006 <            {
4007 <                _v = PyString_Check(argv[1]) ? 1 : 0;
4008 <            }
4009 <            if (_v) {
4010 <                if (argc <= 2) {
4011 <                    return _wrap_BossTask_getOutput__SWIG_0(self,args);
4012 <                }
4013 <                {
4014 <                    _v = PyString_Check(argv[2]) ? 1 : 0;
4015 <                }
4016 <                if (_v) {
4017 <                    if (argc <= 3) {
4018 <                        return _wrap_BossTask_getOutput__SWIG_0(self,args);
4019 <                    }
4020 <                    {
4021 <                        _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
4022 <                    }
4023 <                    if (_v) {
4024 <                        if (argc <= 4) {
4025 <                            return _wrap_BossTask_getOutput__SWIG_0(self,args);
4026 <                        }
4027 <                        {
4028 <                            _v = (PyInt_Check(argv[4]) || PyLong_Check(argv[4])) ? 1 : 0;
4029 <                        }
4030 <                        if (_v) {
4031 <                            return _wrap_BossTask_getOutput__SWIG_0(self,args);
4032 <                        }
4033 <                    }
4034 <                }
4652 >                SWIG_exception(SWIG_TypeError, "string expected");
4653              }
4654          }
4655      }
4656 <    if ((argc >= 1) && (argc <= 4)) {
4039 <        int _v;
4656 >    if (obj3) {
4657          {
4658 <            void *ptr;
4659 <            if (SWIG_ConvertPtr(argv[0], (void **) &ptr, SWIGTYPE_p_BossTask, 0) == -1) {
4660 <                _v = 0;
4044 <                PyErr_Clear();
4658 >            if (PyString_Check(obj3)) {
4659 >                temp4 = std::string(PyString_AsString(obj3));
4660 >                arg4 = &temp4;
4661              }else {
4662 <                _v = 1;
4662 >                SWIG_exception(SWIG_TypeError, "string expected");
4663              }
4664          }
4665 <        if (_v) {
4666 <            if (argc <= 1) {
4667 <                return _wrap_BossTask_getOutput__SWIG_1(self,args);
4668 <            }
4669 <            {
4670 <                _v = PyString_Check(argv[1]) ? 1 : 0;
4671 <            }
4056 <            if (_v) {
4057 <                if (argc <= 2) {
4058 <                    return _wrap_BossTask_getOutput__SWIG_1(self,args);
4059 <                }
4060 <                {
4061 <                    _v = (PyInt_Check(argv[2]) || PyLong_Check(argv[2])) ? 1 : 0;
4062 <                }
4063 <                if (_v) {
4064 <                    if (argc <= 3) {
4065 <                        return _wrap_BossTask_getOutput__SWIG_1(self,args);
4066 <                    }
4067 <                    {
4068 <                        _v = (PyInt_Check(argv[3]) || PyLong_Check(argv[3])) ? 1 : 0;
4069 <                    }
4070 <                    if (_v) {
4071 <                        return _wrap_BossTask_getOutput__SWIG_1(self,args);
4072 <                    }
4073 <                }
4074 <            }
4665 >    }
4666 >    if (obj4) {
4667 >        {
4668 >            if (PyString_Check(obj4))
4669 >            arg5 = std::string(PyString_AsString(obj4));
4670 >            else
4671 >            SWIG_exception(SWIG_TypeError, "string expected");
4672          }
4673      }
4674 <    
4675 <    PyErr_SetString(PyExc_TypeError,"No matching function for overloaded 'BossTask_getOutput'");
4674 >    if (obj5) {
4675 >        {
4676 >            if (PyString_Check(obj5))
4677 >            arg6 = std::string(PyString_AsString(obj5));
4678 >            else
4679 >            SWIG_exception(SWIG_TypeError, "string expected");
4680 >        }
4681 >    }
4682 >    if (obj6) {
4683 >        {
4684 >            if (PyString_Check(obj6))
4685 >            arg7 = std::string(PyString_AsString(obj6));
4686 >            else
4687 >            SWIG_exception(SWIG_TypeError, "string expected");
4688 >        }
4689 >    }
4690 >    if (obj7) {
4691 >        {
4692 >            if (PyString_Check(obj7))
4693 >            arg8 = std::string(PyString_AsString(obj7));
4694 >            else
4695 >            SWIG_exception(SWIG_TypeError, "string expected");
4696 >        }
4697 >    }
4698 >    {
4699 >        try {
4700 >            result = (int)(arg1)->load(arg2,(std::string const &)*arg3,(std::string const &)*arg4,arg5,arg6,arg7,arg8);
4701 >            
4702 >        }catch (const std::exception& e) {
4703 >            SWIG_exception(SWIG_RuntimeError, e.what());
4704 >        }
4705 >    }
4706 >    resultobj = PyInt_FromLong((long)result);
4707 >    return resultobj;
4708 >    fail:
4709      return NULL;
4710   }
4711  
# Line 4266 | Line 4896 | static PyObject * BossTask_swigregister(
4896      Py_INCREF(obj);
4897      return Py_BuildValue((char *)"");
4898   }
4269 static PyObject *_wrap_prompt(PyObject *self, PyObject *args) {
4270    PyObject *resultobj;
4271    std::string *arg1 = 0 ;
4272    bool result;
4273    std::string temp1 ;
4274    PyObject * obj0 = 0 ;
4275    
4276    if(!PyArg_ParseTuple(args,(char *)"O:prompt",&obj0)) goto fail;
4277    {
4278        if (PyString_Check(obj0)) {
4279            temp1 = std::string(PyString_AsString(obj0));
4280            arg1 = &temp1;
4281        }else {
4282            SWIG_exception(SWIG_TypeError, "string expected");
4283        }
4284    }
4285    {
4286        try {
4287            result = (bool)prompt((std::string const &)*arg1);
4288            
4289        }catch (const std::exception& e) {
4290            SWIG_exception(SWIG_RuntimeError, e.what());
4291        }
4292    }
4293    resultobj = PyInt_FromLong((long)result);
4294    return resultobj;
4295    fail:
4296    return NULL;
4297 }
4298
4299
4899   static PyObject *_wrap_new_BossAdministratorSession(PyObject *self, PyObject *args) {
4900      PyObject *resultobj;
4901      std::string arg1 = (std::string) "" ;
4902 <    bool arg2 = (bool) false ;
4902 >    std::string arg2 = (std::string) "2" ;
4903 >    std::string arg3 = (std::string) "" ;
4904 >    bool arg4 = (bool) false ;
4905      BossAdministratorSession *result;
4906      PyObject * obj0 = 0 ;
4907      PyObject * obj1 = 0 ;
4908 +    PyObject * obj2 = 0 ;
4909 +    PyObject * obj3 = 0 ;
4910      
4911 <    if(!PyArg_ParseTuple(args,(char *)"|OO:new_BossAdministratorSession",&obj0,&obj1)) goto fail;
4911 >    if(!PyArg_ParseTuple(args,(char *)"|OOOO:new_BossAdministratorSession",&obj0,&obj1,&obj2,&obj3)) goto fail;
4912      if (obj0) {
4913          {
4914              if (PyString_Check(obj0))
# Line 4315 | Line 4918 | static PyObject *_wrap_new_BossAdministr
4918          }
4919      }
4920      if (obj1) {
4921 <        arg2 = PyInt_AsLong(obj1) ? true : false;
4921 >        {
4922 >            if (PyString_Check(obj1))
4923 >            arg2 = std::string(PyString_AsString(obj1));
4924 >            else
4925 >            SWIG_exception(SWIG_TypeError, "string expected");
4926 >        }
4927 >    }
4928 >    if (obj2) {
4929 >        {
4930 >            if (PyString_Check(obj2))
4931 >            arg3 = std::string(PyString_AsString(obj2));
4932 >            else
4933 >            SWIG_exception(SWIG_TypeError, "string expected");
4934 >        }
4935 >    }
4936 >    if (obj3) {
4937 >        arg4 = PyInt_AsLong(obj3) ? true : false;
4938          if (PyErr_Occurred()) SWIG_fail;
4939      }
4940      {
4941          try {
4942 <            result = (BossAdministratorSession *)new BossAdministratorSession(arg1,arg2);
4942 >            result = (BossAdministratorSession *)new BossAdministratorSession(arg1,arg2,arg3,arg4);
4943              
4944          }catch (const std::exception& e) {
4945              SWIG_exception(SWIG_RuntimeError, e.what());
# Line 4798 | Line 5417 | static PyObject *_wrap_BossAdministrator
5417      std::string arg13 = (std::string) "" ;
5418      bool arg14 = (bool) false ;
5419      bool arg15 = (bool) false ;
5420 +    bool arg16 = (bool) false ;
5421 +    bool arg17 = (bool) false ;
5422      int result;
5423      std::string temp2 ;
5424      std::string temp11 ;
# Line 4816 | Line 5437 | static PyObject *_wrap_BossAdministrator
5437      PyObject * obj12 = 0 ;
5438      PyObject * obj13 = 0 ;
5439      PyObject * obj14 = 0 ;
5440 +    PyObject * obj15 = 0 ;
5441 +    PyObject * obj16 = 0 ;
5442      
5443 <    if(!PyArg_ParseTuple(args,(char *)"OO|OOOOOOOOOOOOO:BossAdministratorSession_registerScheduler",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11,&obj12,&obj13,&obj14)) goto fail;
5443 >    if(!PyArg_ParseTuple(args,(char *)"OO|OOOOOOOOOOOOOOO:BossAdministratorSession_registerScheduler",&obj0,&obj1,&obj2,&obj3,&obj4,&obj5,&obj6,&obj7,&obj8,&obj9,&obj10,&obj11,&obj12,&obj13,&obj14,&obj15,&obj16)) goto fail;
5444      if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossAdministratorSession,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5445      {
5446          if (PyString_Check(obj1)) {
# Line 4925 | Line 5548 | static PyObject *_wrap_BossAdministrator
5548          arg15 = PyInt_AsLong(obj14) ? true : false;
5549          if (PyErr_Occurred()) SWIG_fail;
5550      }
5551 +    if (obj15) {
5552 +        arg16 = PyInt_AsLong(obj15) ? true : false;
5553 +        if (PyErr_Occurred()) SWIG_fail;
5554 +    }
5555 +    if (obj16) {
5556 +        arg17 = PyInt_AsLong(obj16) ? true : false;
5557 +        if (PyErr_Occurred()) SWIG_fail;
5558 +    }
5559      {
5560          try {
5561 <            result = (int)(arg1)->registerScheduler((std::string const &)*arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,(std::string const &)*arg11,arg12,arg13,arg14,arg15);
5561 >            result = (int)(arg1)->registerScheduler((std::string const &)*arg2,arg3,arg4,arg5,arg6,arg7,arg8,arg9,arg10,(std::string const &)*arg11,arg12,arg13,arg14,arg15,arg16,arg17);
5562              
5563          }catch (const std::exception& e) {
5564              SWIG_exception(SWIG_RuntimeError, e.what());
# Line 5074 | Line 5705 | static PyObject *_wrap_BossAdministrator
5705   }
5706  
5707  
5708 + static PyObject *_wrap_BossAdministratorSession_registerPlugins(PyObject *self, PyObject *args) {
5709 +    PyObject *resultobj;
5710 +    BossAdministratorSession *arg1 = (BossAdministratorSession *) 0 ;
5711 +    std::string arg2 ;
5712 +    int result;
5713 +    PyObject * obj0 = 0 ;
5714 +    PyObject * obj1 = 0 ;
5715 +    
5716 +    if(!PyArg_ParseTuple(args,(char *)"OO:BossAdministratorSession_registerPlugins",&obj0,&obj1)) goto fail;
5717 +    if ((SWIG_ConvertPtr(obj0,(void **) &arg1, SWIGTYPE_p_BossAdministratorSession,SWIG_POINTER_EXCEPTION | 0 )) == -1) SWIG_fail;
5718 +    {
5719 +        if (PyString_Check(obj1))
5720 +        arg2 = std::string(PyString_AsString(obj1));
5721 +        else
5722 +        SWIG_exception(SWIG_TypeError, "string expected");
5723 +    }
5724 +    {
5725 +        try {
5726 +            result = (int)(arg1)->registerPlugins(arg2);
5727 +            
5728 +        }catch (const std::exception& e) {
5729 +            SWIG_exception(SWIG_RuntimeError, e.what());
5730 +        }
5731 +    }
5732 +    resultobj = PyInt_FromLong((long)result);
5733 +    return resultobj;
5734 +    fail:
5735 +    return NULL;
5736 + }
5737 +
5738 +
5739   static PyObject * BossAdministratorSession_swigregister(PyObject *self, PyObject *args) {
5740      PyObject *obj;
5741      if (!PyArg_ParseTuple(args,(char*)"O", &obj)) return NULL;
# Line 5097 | Line 5759 | static PyMethodDef SwigMethods[] = {
5759           { (char *)"objectMap___iter__", _wrap_objectMap___iter__, METH_VARARGS },
5760           { (char *)"delete_objectMap", _wrap_delete_objectMap, METH_VARARGS },
5761           { (char *)"objectMap_swigregister", objectMap_swigregister, METH_VARARGS },
5762 +         { (char *)"new_vector_string", _wrap_new_vector_string, METH_VARARGS },
5763 +         { (char *)"vector_string___len__", _wrap_vector_string___len__, METH_VARARGS },
5764 +         { (char *)"vector_string___nonzero__", _wrap_vector_string___nonzero__, METH_VARARGS },
5765 +         { (char *)"vector_string_clear", _wrap_vector_string_clear, METH_VARARGS },
5766 +         { (char *)"vector_string_append", _wrap_vector_string_append, METH_VARARGS },
5767 +         { (char *)"vector_string_pop", _wrap_vector_string_pop, METH_VARARGS },
5768 +         { (char *)"vector_string___getitem__", _wrap_vector_string___getitem__, METH_VARARGS },
5769 +         { (char *)"vector_string___getslice__", _wrap_vector_string___getslice__, METH_VARARGS },
5770 +         { (char *)"vector_string___setitem__", _wrap_vector_string___setitem__, METH_VARARGS },
5771 +         { (char *)"vector_string___setslice__", _wrap_vector_string___setslice__, METH_VARARGS },
5772 +         { (char *)"vector_string___delitem__", _wrap_vector_string___delitem__, METH_VARARGS },
5773 +         { (char *)"vector_string___delslice__", _wrap_vector_string___delslice__, METH_VARARGS },
5774 +         { (char *)"delete_vector_string", _wrap_delete_vector_string, METH_VARARGS },
5775 +         { (char *)"vector_string_swigregister", vector_string_swigregister, METH_VARARGS },
5776           { (char *)"BossSession_show", _wrap_BossSession_show, METH_VARARGS },
5777 <         { (char *)"BossSession_showCHTools", _wrap_BossSession_showCHTools, METH_VARARGS },
5778 <         { (char *)"BossSession_showProgramTypes", _wrap_BossSession_showProgramTypes, METH_VARARGS },
5779 <         { (char *)"BossSession_showRTMon", _wrap_BossSession_showRTMon, METH_VARARGS },
5780 <         { (char *)"BossSession_showSchedulers", _wrap_BossSession_showSchedulers, METH_VARARGS },
5777 >         { (char *)"BossSession_CHTools", _wrap_BossSession_CHTools, METH_VARARGS },
5778 >         { (char *)"BossSession_ProgramTypes", _wrap_BossSession_ProgramTypes, METH_VARARGS },
5779 >         { (char *)"BossSession_RTMons", _wrap_BossSession_RTMons, METH_VARARGS },
5780 >         { (char *)"BossSession_schedulers", _wrap_BossSession_schedulers, METH_VARARGS },
5781 >         { (char *)"BossSession_schedListMatch", _wrap_BossSession_schedListMatch, METH_VARARGS },
5782           { (char *)"BossSession_queryTasks", _wrap_BossSession_queryTasks, METH_VARARGS },
5783           { (char *)"new_BossSession", _wrap_new_BossSession, METH_VARARGS },
5784           { (char *)"delete_BossSession", _wrap_delete_BossSession, METH_VARARGS },
5785 +         { (char *)"BossSession_resetDB", _wrap_BossSession_resetDB, METH_VARARGS },
5786           { (char *)"BossSession_clear", _wrap_BossSession_clear, METH_VARARGS },
5787           { (char *)"BossSession_makeBossTask", _wrap_BossSession_makeBossTask, METH_VARARGS },
5788           { (char *)"BossSession_destroyBossTask", _wrap_BossSession_destroyBossTask, METH_VARARGS },
# Line 5119 | Line 5797 | static PyMethodDef SwigMethods[] = {
5797           { (char *)"BossSession_listMatch", _wrap_BossSession_listMatch, METH_VARARGS },
5798           { (char *)"BossSession_schedulerQuery", _wrap_BossSession_schedulerQuery, METH_VARARGS },
5799           { (char *)"BossSession_selectTasks", _wrap_BossSession_selectTasks, METH_VARARGS },
5800 +         { (char *)"BossSession_query", _wrap_BossSession_query, METH_VARARGS },
5801           { (char *)"BossSession_swigregister", BossSession_swigregister, METH_VARARGS },
5802           { (char *)"BossTaskException_key_set", _wrap_BossTaskException_key_set, METH_VARARGS },
5803           { (char *)"BossTaskException_key_get", _wrap_BossTaskException_key_get, METH_VARARGS },
# Line 5128 | Line 5807 | static PyMethodDef SwigMethods[] = {
5807           { (char *)"BossTaskException_swigregister", BossTaskException_swigregister, METH_VARARGS },
5808           { (char *)"BossTask_appendToPyDict", _wrap_BossTask_appendToPyDict, METH_VARARGS },
5809           { (char *)"BossTask_jobDict", _wrap_BossTask_jobDict, METH_VARARGS },
5810 <         { (char *)"BossTask_jobsMap", _wrap_BossTask_jobsMap, METH_VARARGS },
5810 >         { (char *)"BossTask_jobsDict", _wrap_BossTask_jobsDict, METH_VARARGS },
5811           { (char *)"BossTask_progDict", _wrap_BossTask_progDict, METH_VARARGS },
5812           { (char *)"BossTask_jobPrograms", _wrap_BossTask_jobPrograms, METH_VARARGS },
5813           { (char *)"delete_BossTask", _wrap_delete_BossTask, METH_VARARGS },
# Line 5138 | Line 5817 | static PyMethodDef SwigMethods[] = {
5817           { (char *)"BossTask_taskMap", _wrap_BossTask_taskMap, METH_VARARGS },
5818           { (char *)"BossTask_job_begin", _wrap_BossTask_job_begin, METH_VARARGS },
5819           { (char *)"BossTask_job_end", _wrap_BossTask_job_end, METH_VARARGS },
5820 +         { (char *)"BossTask_jobsMap", _wrap_BossTask_jobsMap, METH_VARARGS },
5821           { (char *)"BossTask_jobMap", _wrap_BossTask_jobMap, METH_VARARGS },
5822           { (char *)"BossTask_programsMap", _wrap_BossTask_programsMap, METH_VARARGS },
5823           { (char *)"BossTask_queryJobPrograms", _wrap_BossTask_queryJobPrograms, METH_VARARGS },
# Line 5148 | Line 5828 | static PyMethodDef SwigMethods[] = {
5828           { (char *)"BossTask_reSubmit", _wrap_BossTask_reSubmit, METH_VARARGS },
5829           { (char *)"BossTask_kill", _wrap_BossTask_kill, METH_VARARGS },
5830           { (char *)"BossTask_getOutput", _wrap_BossTask_getOutput, METH_VARARGS },
5831 +         { (char *)"BossTask_getAllOutput", _wrap_BossTask_getAllOutput, METH_VARARGS },
5832 +         { (char *)"BossTask_load", _wrap_BossTask_load, METH_VARARGS },
5833           { (char *)"BossTask_query", _wrap_BossTask_query, METH_VARARGS },
5834           { (char *)"BossTask_query_out", _wrap_BossTask_query_out, METH_VARARGS },
5835           { (char *)"BossTask_clear", _wrap_BossTask_clear, METH_VARARGS },
5836           { (char *)"BossTask_swigregister", BossTask_swigregister, METH_VARARGS },
5155         { (char *)"prompt", _wrap_prompt, METH_VARARGS },
5837           { (char *)"new_BossAdministratorSession", _wrap_new_BossAdministratorSession, METH_VARARGS },
5838           { (char *)"delete_BossAdministratorSession", _wrap_delete_BossAdministratorSession, METH_VARARGS },
5839           { (char *)"BossAdministratorSession_configureDB", _wrap_BossAdministratorSession_configureDB, METH_VARARGS },
# Line 5168 | Line 5849 | static PyMethodDef SwigMethods[] = {
5849           { (char *)"BossAdministratorSession_help", _wrap_BossAdministratorSession_help, METH_VARARGS },
5850           { (char *)"BossAdministratorSession_SQL", _wrap_BossAdministratorSession_SQL, METH_VARARGS },
5851           { (char *)"BossAdministratorSession_purge", _wrap_BossAdministratorSession_purge, METH_VARARGS },
5852 +         { (char *)"BossAdministratorSession_registerPlugins", _wrap_BossAdministratorSession_registerPlugins, METH_VARARGS },
5853           { (char *)"BossAdministratorSession_swigregister", BossAdministratorSession_swigregister, METH_VARARGS },
5854           { NULL, NULL }
5855   };
# Line 5175 | Line 5857 | static PyMethodDef SwigMethods[] = {
5857  
5858   /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
5859  
5178 static swig_type_info _swigt__p_XMLDoc[] = {{"_p_XMLDoc", 0, "XMLDoc *", 0},{"_p_XMLDoc"},{0}};
5860   static swig_type_info _swigt__p_std__vectorTstd__pairTBossProgram_BossProgramExec_t_t[] = {{"_p_std__vectorTstd__pairTBossProgram_BossProgramExec_t_t", 0, "std::vector<std::pair<BossProgram,BossProgramExec > > *", 0},{"_p_std__vectorTstd__pairTBossProgram_BossProgramExec_t_t"},{0}};
5861   static swig_type_info _swigt__p_std__vectorTstd__pairTBossProgram_BossProgramExec_t_t__const_iterator[] = {{"_p_std__vectorTstd__pairTBossProgram_BossProgramExec_t_t__const_iterator", 0, "std::vector<std::pair<BossProgram,BossProgramExec > >::const_iterator *", 0},{"_p_std__vectorTstd__pairTBossProgram_BossProgramExec_t_t__const_iterator"},{0}};
5862 + static swig_type_info _swigt__p_XMLDoc[] = {{"_p_XMLDoc", 0, "XMLDoc *", 0},{"_p_XMLDoc"},{0}};
5863 + static swig_type_info _swigt__p_std__vectorTBossTask_p_t[] = {{"_p_std__vectorTBossTask_p_t", 0, "std::vector<BossTask * > *", 0},{"_p_std__vectorTBossTask_p_t"},{0}};
5864   static swig_type_info _swigt__p_std__mapTstd__string_std__mapTstd__string_std__string_t_t[] = {{"_p_std__mapTstd__string_std__mapTstd__string_std__string_t_t", 0, "std::map<std::string,std::map<std::string,std::string > > *", 0},{"_p_std__mapTstd__string_std__mapTstd__string_std__string_t_t"},{0}};
5865   static swig_type_info _swigt__p_BossTask[] = {{"_p_BossTask", 0, "BossTask *", 0},{"_p_BossTask"},{0}};
5866   static swig_type_info _swigt__p_BossTaskException[] = {{"_p_BossTaskException", 0, "BossTaskException *", 0},{"_p_BossTaskException"},{0}};
# Line 5195 | Line 5878 | static swig_type_info _swigt__p_std__vec
5878   static swig_type_info _swigt__p_jobStates[] = {{"_p_jobStates", 0, "jobStates const &", 0},{"_p_jobStates"},{0}};
5879  
5880   static swig_type_info *swig_types_initial[] = {
5198 _swigt__p_XMLDoc,
5881   _swigt__p_std__vectorTstd__pairTBossProgram_BossProgramExec_t_t,
5882   _swigt__p_std__vectorTstd__pairTBossProgram_BossProgramExec_t_t__const_iterator,
5883 + _swigt__p_XMLDoc,
5884 + _swigt__p_std__vectorTBossTask_p_t,
5885   _swigt__p_std__mapTstd__string_std__mapTstd__string_std__string_t_t,
5886   _swigt__p_BossTask,
5887   _swigt__p_BossTaskException,

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines