Пример #1
0
void SubscribeDB::getUnexpiredSubscriptionsAndIncrementCSeq (
  const UtlString& component,
  const UtlString& key,
  const UtlString& eventTypeKey,
  const int& timeNow,
  Subscriptions& subscriptions)
{
  removeExpired(component, timeNow);
  //query="key=",key,"and eventtypekey=",eventTypeKey;
   mongo::BSONObj query = BSON("$findAndModify" 
           << BSON("query"
           << BSON(
              Subscription::key_fld() << key.str() <<
              Subscription::eventTypeKey_fld() << eventTypeKey.str())) << "," <<
              BSON("update" << BSON_INC(Subscription::notifyCseq_fld() << "1")  )  );

  mongo::ScopedDbConnection conn(_info.getConnectionString());
  mongo::BSONObj result;
  if (conn->runCommand(_info.getNS(), query, result))
  {
    for (mongo::BSONObjIterator iter = result.begin(); iter.more();)
    {
      subscriptions.push_back(Subscription(iter.next().embeddedObject()));
    }
  }

  //while (pCursor.get() && pCursor->more())
  //{
  //    subscriptions.push_back(Subscription(pCursor->next()));
  //}
  conn.done();
}
Пример #2
0
void SubscribeDB::getAll(Subscriptions& subscriptions)
{
	mongo::BSONObj query;
	mongo::ScopedDbConnection conn(_info.getConnectionString());
	auto_ptr<mongo::DBClientCursor> pCursor = conn->query(_info.getNS(), query);
	while (pCursor.get() && pCursor->more()) {
		subscriptions.push_back(Subscription(pCursor->next()));
	}
	conn.done();
}
Пример #3
0
void SubscribeDB::getUnexpiredSubscriptions (
    const UtlString& component,
    const UtlString& key,
    const UtlString& eventTypeKey,
    const int& timeNow,
    Subscriptions& subscriptions)
{
    removeExpired(component, timeNow);
    //query="key=",key,"and eventtypekey=",eventTypeKey;
     mongo::BSONObj query = BSON(
        Subscription::key_fld() << key.str() <<
        Subscription::eventTypeKey_fld() << eventTypeKey.str());

    mongo::ScopedDbConnection conn(_info.getConnectionString());
    auto_ptr<mongo::DBClientCursor> pCursor = conn->query(_info.getNS(), query);
    while (pCursor.get() && pCursor->more())
    {
        subscriptions.push_back(Subscription(pCursor->next()));
    }
    conn.done();
}